Guest User

Untitled

a guest
Feb 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <html>
  2. <meta name="apple-mobile-web-app-capable" content="yes" />
  3. <body>
  4. <form method="POST">
  5. <input type="text" name="url"/>
  6. <input type="submit"/>
  7. </form>
  8. </body>
  9. </html>
  10. <?php
  11. if($_POST['url'])
  12. {
  13. system("curl " .  $_POST['url'] . " > saved.html");
  14. }
  15. system("cat saved.html");
  16. ?>
Add Comment
Please, Sign In to add comment