Created
November 7, 2018 05:46
-
-
Save p14y3r1337/d0ec5ee174b69347f4fdb12943305e9c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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