Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php
  2. if(isset($_POST['url']) && isset($_POST['amount'])){
  3. exec("python bot.py ".$_POST['url']." ".$_POST['amount']);
  4. }else{}
  5. ?>
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <title>Botify Web</title>
  10. </head>
  11. <body>
  12. <center>
  13. <fieldset style="width:175px;max-width:175px;">
  14. <legend>Botify Web</legend>
  15. <form method="post" action>
  16. <input type="text" name="url" placeholder="URL"><br><br>
  17. <input type="number" name="amount" placeholder="Amount"><br><br>
  18. <input type="submit" value="Execute">
  19. </form>
  20. </fieldset>
  21. </center>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement