windows-php-reverse-shell
windows-php-reverse-shell copied to clipboard
Simple php reverse shell implemented using binary .
There is a warning when you run this php script:  In line 11, you can't use `$res .=` because there is not a `$res` variable before. 
Hey there this is great, im studying my OSCP - just wondering, how did you generate the $payload? I would like to understand in more detail how this works? thanks
If you get the above error, change ```$output = system($cmd);``` to ```$output = exec($cmd);``` or ```$output = passthru($cmd);``` Whilst ```exec``` and ```pasthru``` may also be disabled, they are less likely...