From 9ae8a7baf8fad60885376f68d8966b2abedb9ca6 Mon Sep 17 00:00:00 2001 From: Max000110 <153953374+Max000110@users.noreply.github.com> Date: Sun, 21 Dec 2025 03:21:14 +0530 Subject: [PATCH 1/4] Create Reddit.py --- holehe/modules/Reddit.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 holehe/modules/Reddit.py diff --git a/holehe/modules/Reddit.py b/holehe/modules/Reddit.py new file mode 100644 index 00000000..82f68cbb --- /dev/null +++ b/holehe/modules/Reddit.py @@ -0,0 +1,10 @@ +import requests + +def reddit(email, client, out): + r = client.post( + "https://www.reddit.com/account/recovery", + data={"email": email}, + headers={"User-Agent": "Mozilla/5.0"} + ) + if "sent an email" in r.text.lower(): + out["exists"] = True From b02a365b5ab2bc5b38bebfc0da1246cca430dc0c Mon Sep 17 00:00:00 2001 From: Max000110 <153953374+Max000110@users.noreply.github.com> Date: Sun, 21 Dec 2025 03:22:00 +0530 Subject: [PATCH 2/4] Create pinterest.py --- holehe/modules/pinterest.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 holehe/modules/pinterest.py diff --git a/holehe/modules/pinterest.py b/holehe/modules/pinterest.py new file mode 100644 index 00000000..14ca3d7a --- /dev/null +++ b/holehe/modules/pinterest.py @@ -0,0 +1,7 @@ +def pinterest(email, client, out): + r = client.post( + "https://www.pinterest.com/password/reset/", + data={"email": email} + ) + if "email has been sent" in r.text.lower(): + out["exists"] = True From 2b6ebd3b2648f62204654c70c85b080dd0f6519e Mon Sep 17 00:00:00 2001 From: Max000110 <153953374+Max000110@users.noreply.github.com> Date: Sun, 21 Dec 2025 03:22:38 +0530 Subject: [PATCH 3/4] Create github.py --- holehe/modules/github.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 holehe/modules/github.py diff --git a/holehe/modules/github.py b/holehe/modules/github.py new file mode 100644 index 00000000..93c2e89e --- /dev/null +++ b/holehe/modules/github.py @@ -0,0 +1,7 @@ +def github(email, client, out): + r = client.post( + "https://github.com/password_reset", + data={"email": email} + ) + if r.status_code == 200: + out["exists"] = True From 59ce1f00debfedb9f802e06ad285497853d2494e Mon Sep 17 00:00:00 2001 From: Max000110 <153953374+Max000110@users.noreply.github.com> Date: Sun, 21 Dec 2025 03:35:14 +0530 Subject: [PATCH 4/4] Create github.py --- holehe/modules/social_media/github.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 holehe/modules/social_media/github.py diff --git a/holehe/modules/social_media/github.py b/holehe/modules/social_media/github.py new file mode 100644 index 00000000..93c2e89e --- /dev/null +++ b/holehe/modules/social_media/github.py @@ -0,0 +1,7 @@ +def github(email, client, out): + r = client.post( + "https://github.com/password_reset", + data={"email": email} + ) + if r.status_code == 200: + out["exists"] = True