Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
उपकरण/GitHubGitHub/woj-ciech/pepe
OSINT (खुला स्रोत खुफिया)पासवर्ड क्रैकिंगडेटा निष्कासनजानकारी एकत्र करनापोस्ट-शोषणखतरा खुफियाईमेल संग्रहलर्निंग और शिक्षाArchived
GitHubwoj-ciech/pepe

pepe

Pastebin से ईमेल पतों के बारे में जानकारी एकत्र करें

रिपॉजिटरी देखें
39125 साल पहलेKitploit द्वारा समीक्षित

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें

PEPE - Post Exploitation Pastebin Emails

Pastebin से लीक हुए ईमेल पतों के बारे में जानकारी एकत्र करें

परिचय

स्क्रिप्ट Pastebin के email:password डंप को पार्स करती है और प्रत्येक ईमेल पते के बारे में जानकारी एकत्र करती है। यह Google, Trumail, Pipl, FullContact और HaveIBeenPwned को सपोर्ट करता है। इसके अलावा, यह आपको उस व्यक्ति को उसके लीक हुए पासवर्ड के बारे में सूचनात्मक ईमेल भेजने की अनुमति देता है, अंत में सारी जानकारी आगे की खोज के लिए Elasticsearch में जमा हो जाती है।

यह केवल एक फ़ॉर्मेट को सपोर्ट करता है - email:password.

बाकी सब कुछ काम नहीं करेगा!

अभी के लिए, नोटिफिकेशन तब काम करता है जब यह FullContact पर मैच पाता है और फिर आपको ईमेल पता और संबंधित सोशल मीडिया अकाउंट भेजता है।

आवश्यकताएँ:

  • Python 3
  • FullContact API https://www.fullcontact.com/developer/
  • Google
  • Pipl API https://pipl.com/api/
  • HaveIBeenPwned
  • SafePush (नोटिफिकेशन के लिए - वैकल्पिक - प्रगति पर) https://www.pushsafer.com/
  • Trumail https://trumail.io/
  • Gmail अकाउंट (ईमेल भेजने के लिए)
  • Elasticsearch (वैकल्पिक)
root@kitploit:~
pip install -r requirements

कॉन्फ़िगरेशन

root@kitploit:~
{"domains": 
	{ #व्हाइटलिस्ट या ब्लैकलिस्ट करने के लिए डोमेन
	"whitelist": [""],
	"blacklist": ["yahoo.com"]
},
"keys": 
	{ #API कुंजियाँ
	"pushsafer": "API_KEY",
	"fullcontact": "API_KEY",
	"pipl": "API_KEY"
},
"gmail": 
	{ #Gmail क्रेडेंशियल्स और सूचनात्मक संदेश जो भेजा जाएगा
	"username": "[email protected]",
	"password": "password",
	"message": "Hey,\n\nI am a security researcher and I want to inform you that your password !PASSWORD! has been leaked and you should change it immediately.\nThis email is part of the research, you can find more about it on https://medium.com/@wojciech\n\nStay safe!"},
"elasticsearch":
	{ #ElasticSearch कनेक्शन जानकारी
	"host": "127.0.0.1",
	"port": 9200}
}

उपयोग

root@kitploit:~
root@kali:~/PycharmProjects/pepe# python pepe.py -h
usage: pepe.py [-h] [--file FILE] [--stream] [--interactive]
                 [--modules MODULES [MODULES ...]] [--elasticsearch]
                 [--whitelist] [--blacklist]

                            ,=.
              ,=''''==.__.="  o".___
        ,=.=="                  ___/
  ,==.,"    ,          , \,===""
 <     ,==)  "'"=._.==)    `==''    `"           `

  clover/snark^
  http://ascii.co.uk/art/platypus
  
  Post Exploitation Pastebin Emails
  github.com/woj-ciech
  medium.com/@woj_ciech
  
  Example:
  python pepe.py --file <dump.txt> --interactive --whitelist
  python pepe.py --file <dump.txt> --modules hibp google trumail --elasticsearch --blacklist

optional arguments:
  -h, --help            show this help message and exit
  --file FILE           Load file
  --stream              Stream Pastebin
  --interactive         Interactive mode
  --modules MODULES [MODULES ...]
                        Modules to check in non-interactive mode
  --elasticsearch       Output to ElasticSearch
  --whitelist           Whitelist
  --blacklist           Blacklist

उदाहरण

इंटरैक्टिव मोड, प्रत्येक ईमेल की अलग-अलग जाँच की जाती है और विशिष्ट मॉड्यूल निष्पादित किया जाता है।

root@kitploit:~
root@kali:~/PycharmProjects/pepe# python pepe.py --file paste.txt --interactive --blacklist

-----------------------Found email [REDACTED]@hotmail.com with password [REDACTED]-----------------------
[A] Add domain hotmail.com to blacklist
[T] Test
[G] Google search
[H] HaveIBeenPwned
[P] Pipl
[F] FullContact
[I] Inform
[N] Next
> G
---Google Search---
http://[REDACTED]
http://[REDACTED]
http://[REDACTED]

[A] Add domain gmail.com to blacklist
[T] Test
[G] Google search
[H] HaveIBeenPwned
[P] Pipl
[F] FullContact
[I] Inform
[N] Next
> N
-----------------------Found email [REDACTED].[REDACTED]@gmail.com with password [REDACTED]-----------------------
[A] Add domain gmail.com to blacklist
[T] Test
[G] Google search
[H] HaveIBeenPwned
[P] Pipl
[F] FullContact
[I] Inform
[N] Next
> F
---FullContact---
[REDACTED] [REDACTED]
https://twitter.com/[REDACTED]
https://facebook.com/[REDACTED]
https:/linkedin.com/[REDACTED]
[A] Add domain gmail.com to blacklist
[T] Test
[G] Google search
[H] HaveIBeenPwned
[P] Pipl
[F] FullContact
[I] Inform
[N] Next
> P
---Pipl---
Name: [REDACTED]
[REDACTED] years old
Jobs:
Quality Control [REDACTED] (since 2018)
[REDACTED] Review [REDACTED] (2017-2018)
[REDACTED] Attorney [REDACTED] (2017-2018)
[REDACTED] Attorney at [REDACTED] (2017-2017)
...
[REDACTED] (2012-2012)
[REDACTED] Assistant at [REDACTED] (2012-2012)
Author/Founder at [REDACTED] (2009-2011)
https://www.linkedin.com/in/[REDACTED]
http://www.facebook.com/people/[REDACTED]
http://twitter.com/[REDACTED]
http://pinterest.com/[REDACTED]
https://plus.google.com/[REDACTED]

...
[REDACTED]

गैर-इंटरैक्टिव मोड, जब केवल चुने गए मॉड्यूल ईमेल पतों के विरुद्ध निष्पादित किए जाते हैं।

root@kitploit:~
root@kali:~/PycharmProjects/# python pepe.py --file pastetest.txt --blacklist --modules hibp google fullcontact trumail --elasticsearch
-----------------------Found email [REDACTED]@hotmail.com with password [REDACTED]-----------------------
---Google Search---
https://pastebin.com/[REDACTED]
---Have I Been Pwned---
LinkedIn
---FullContact---
No results
---Trumail---
Email test passed
-----------------------Found email charlie.[REDACTED]@live.com with password [REDACTED]-----------------------
---Google Search---
https://justpaste.it/[REDACTED]
https://pastebin.com/[REDACTED]
---Have I Been Pwned---
MyHeritage
RiverCityMedia
Tumblr
YouveBeenScraped
---FullContact---
Charlie [REDACTED]
https://twitter.com/[REDACTED]
[REDACTED]
---Trumail---
Email test passed
-----------------------Found email [REDACTED].[REDACTED]@gmail.com with password [REDACTED]-----------------------
---Google Search---
http://[REDACTED]
http://[REDACTED]
http://[REDACTED]
https://pastebin.com/[REDACTED]
---Have I Been Pwned---
BTSec
Exactis
HauteLook
Houzz
LinkedIn
---FullContact---
[REDACTED] [REDACTED]
https://www.facebook.com/[REDACTED]
[REDACTED]
---Trumail---
Email test passed
-----------------------Found email [REDACTED].[REDACTED]@gmail.com with password [REDACTED]-----------------------
---Google Search---
https://[REDACTED]
https://[REDACTED]
https://[REDACTED]
https://pastebin.com/[REDACTED]
---Have I Been Pwned---
Lastfm
LinkedIn
MySpace
Trillian
Tumblr
---FullContact---
[REDACTED] [REDACTED] [REDACTED].
https://www.facebook.com/[REDACTED]
https://plus.google.com/[REDACTED]
https://www.linkedin.com/in/[REDACTED]
http://www.pinterest.com/[REDACTED]
https://twitter.com/[REDACTED]
https://youtube.com/user/[REDACTED]
[REDACTED]

स्क्रीनशॉट

अन्य

मैं किसी भी क्षति के लिए जिम्मेदार नहीं हूँ। आप जानते हैं, यह शैक्षिक उद्देश्यों के लिए बनाया गया था।

टूल डाउनलोड करें