Skip to content

Instantly share code, notes, and snippets.

@CaptainFreak
Created November 7, 2018 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CaptainFreak/d0ec5ee174b69347f4fdb12943305e9c to your computer and use it in GitHub Desktop.
Save CaptainFreak/d0ec5ee174b69347f4fdb12943305e9c to your computer and use it in GitHub Desktop.
import requests
base = "http://104.254.204."
path = "/reporting/"
print "Django DEBUG=true Checker\n\n"
for i in range(255) :
print "Testing : "+base+str(1)+"/"
r = requests.get(base+str(1)+path)
if "ImportError" in r.text :
print ": Vulnerable"
else :
print ": not Vulnerable"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment