Advertisement
Guest User

Untitled

a guest
May 12th, 2013
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. class EjemploDePHPObjectInyection {
  4.  
  5.     public $comando=null;
  6.  
  7.     public function __destruct() {
  8.  
  9.         system($this->comando);
  10.     }
  11.  
  12.  
  13. }
  14.  
  15. $ejemplo = unserialize($_GET['cod']);
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement