This commit is contained in:
TheGeneralist 2026-01-14 23:34:13 +01:00
commit 35057d7957
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
7 changed files with 1599 additions and 0 deletions

13
isolate_cookies Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python
cookie_str = input("Input your cookies in the Header String format: ")
cookie_dict = dict(item.split("=", 1) for item in cookie_str.split(";"))
output_cookies = {}
auth_token = cookie_dict['auth_token']
ct0 = cookie_dict['ct0']
login_string = f"auth_token={auth_token};ct0={ct0}"
with open("creds.txt", "w") as file:
file.write(login_string)