Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rix4uni/email-inventory
Email OSINT for public bug bounty programs, Email list updated regularly.
https://github.com/rix4uni/email-inventory
email email-finder osint
Last synced: about 3 hours ago
JSON representation
Email OSINT for public bug bounty programs, Email list updated regularly.
- Host: GitHub
- URL: https://github.com/rix4uni/email-inventory
- Owner: rix4uni
- Created: 2022-08-18T21:54:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T03:22:33.000Z (3 months ago)
- Last Synced: 2024-11-19T04:24:41.339Z (3 months ago)
- Topics: email, email-finder, osint
- Language: Shell
- Homepage:
- Size: 51.8 MB
- Stars: 24
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EmailFinder
## Install
```
git clone https://github.com/rix4uni/EmailFinder.git
cd EmailFinder
chmod +x email_finder.sh
```## Usage
**Get Your Targets Email** change a `dell.com` with your target
```
curl -s https://raw.githubusercontent.com/rix4uni/EmailFinder/main/Emails/dell.com.txt
```**Showing Emails**
```
bash email_finder.sh example.com
```**Showing Keys**
```
bash email_finder.sh example.com | cut -f1 -d"@"
```## Another website to collect Emails
```
for target in $(cat wildcards.txt | tr -d '\r');do curl -s "https://api.webscout.io/lookup/$target" | jq -r '.emails[].email' 2>/dev/null | anew $target.txt;done
```