aboutsummaryrefslogtreecommitdiffstats
path: root/csci5271/ho2/crack6.py
diff options
context:
space:
mode:
Diffstat (limited to 'csci5271/ho2/crack6.py')
-rw-r--r--csci5271/ho2/crack6.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/csci5271/ho2/crack6.py b/csci5271/ho2/crack6.py
index 55a9263..e17aca2 100644
--- a/csci5271/ho2/crack6.py
+++ b/csci5271/ho2/crack6.py
@@ -5,18 +5,17 @@ import string
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
actual = ""
-key = "Z"*19
for n in range(19, -1, -1):
- res2 = requests.get("https://192.168.14.1/mac-cookie?username="+key,
+ C = "Z" * n
+ res2 = requests.get("https://192.168.14.1/mac-cookie?username="+C,
verify=False).text.replace(".", "").split(" ")[-1].split('\n')[0]
for c in string.printable:
- test = key[:n] + c
+ test = C + c + actual
res1 = requests.get("https://192.168.14.1/mac-cookie?username="+test,
verify=False).text.replace(".", "").split(" ")[-1].split('\n')[0]
- print(test, res1, res2)
+ print(test, res1, C, res2)
if res1 == res2:
actual = c + actual
break
- key = key[:-1]
print("Key is", actual)