-
-
Notifications
You must be signed in to change notification settings - Fork 408
Open
Description
Their main website still responds with results. So it should still be possible to get to them.
It appears they now want you to use a particular cookie "test=1".
diff --git a/Core/ispwned.py b/Core/ispwned.py
index 44af319..12ad603 100644
--- a/Core/ispwned.py
+++ b/Core/ispwned.py
@@ -21,7 +21,9 @@ def grab_password(email):
# No docs(Because no API), just found it by analyzing the network and told the admin :D
url = "https://ghostproject.fr/search.php"
data = {"param":email}
- req = requests.post(url,headers=UserAgent,data=data)
+ jar = requests.cookies.RequestsCookieJar()
+ jar.set('test', '1', domain='ghostproject.fr')
+ req = requests.post(url,headers=UserAgent,data=data,cookies=jar)
result = req.text.split("\\n")
if "Error" in req.text or len(result)==2:
return FalseMetadata
Metadata
Assignees
Labels
No labels