Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s0md3v/zen
Find emails of Github users
https://github.com/s0md3v/zen
github github-recon information-gathering osint recon
Last synced: 16 days ago
JSON representation
Find emails of Github users
- Host: GitHub
- URL: https://github.com/s0md3v/zen
- Owner: s0md3v
- License: apache-2.0
- Created: 2018-10-15T09:12:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-05T15:49:59.000Z (over 5 years ago)
- Last Synced: 2024-08-02T13:22:59.354Z (3 months ago)
- Topics: github, github-recon, information-gathering, osint, recon
- Language: Python
- Size: 20.5 KB
- Stars: 551
- Watchers: 14
- Forks: 100
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Find email addresses of Github users
![demo](https://image.ibb.co/nenkff/Screenshot-2018-10-17-21-41-53.png)
#### Find email address of a user
`python zen.py username`or
`python zen.py https://github.com/username`
#### Find email addressess of contributors of a repository
`python zen.py https://github.com/username/repository`#### Find email addresses of members of an organization
`python zen.py organization --org`or
`python zen.py https://github.com/orgs/organzation`
#### Save JSON output to a file
`python zen.py https://github.com/username/repository -o /path/to/file`#### Rate limiting
Github allows 60 unauthenticated requests per hour but limit for authenticated requests is 6000 per hour.
You don't need to generate any kind of authenticated token, just supply your username via `-u` option as follows:`python zen.py username -u yourUsername`
#### Threading
Zen supports multi-threading for faster data retrieval.`python zen.py IBM --org -t 20`
#### Check if email has appeared in a breach
Zen uses haveibeenpwned.com API to check if an email has been breached or not. This feature is turned off by default and can be used with `--breach` option as follows`python zen.py s0md3v --breach`