PHP

OCO

#setup listener
root@oco:~$ nc -lvnp {listeningPort}
 listening on [any] {listeningPort} ...

 * the -l represents listening mode; it waits for a connection from the target.
   the -v represents verbose mode
   the -n disables DNS resolution; this speeds up the connection.
   the -p {listeningPort} represents the port number to listen on

PHP SHELL SCRIPT

tailor the shell script with specific IP and port

UPLOAD METHODS

SITE UPLOAD METHOD

once the shell script has been tailored with specific IPs and Port, etc it must be uploaded to the target's web directory (webroot) to execute the script through the web browser

RCE METHOD

ACCESS

BROWSER METHOD

CLI METHOD

Last updated