From e9188c214b40ef66f2fc04c42ad0b5166d4de40e Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 13 Dec 2021 23:27:36 -0600 Subject: finish ho2 for real for real Signed-off-by: Matt Strapp --- csci5271/ho2/crack6.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'csci5271/ho2/crack6.py') 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) -- cgit v1.2.3