https://github.com/haccer/xmail
Go tool that detects which email addresses have domains which are able to be registered
https://github.com/haccer/xmail
account-takeover bug-bounty bugbounty cyber email go golang infosec osint pentesting redteam redteam-tools security
Last synced: 3 months ago
JSON representation
Go tool that detects which email addresses have domains which are able to be registered
- Host: GitHub
- URL: https://github.com/haccer/xmail
- Owner: haccer
- License: mit
- Created: 2024-05-15T01:11:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-15T18:08:08.000Z (about 2 years ago)
- Last Synced: 2025-04-05T07:41:41.333Z (about 1 year ago)
- Topics: account-takeover, bug-bounty, bugbounty, cyber, email, go, golang, infosec, osint, pentesting, redteam, redteam-tools, security
- Language: Go
- Homepage:
- Size: 405 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xmail
xmail is a Go tool that uses [haccer/available](https://github.com/haccer/available) to detect which email addresses have domains which are able to be registered.
## Install:
```
go install github.com/haccer/xmail@latest
```
or
```
git clone https://github.com/haccer/xmail
cd xmail
go install
```
## Usage:
```
cat emails.txt | xmail
```
or
```
xmail -w emails.txt
```
With JSON:
```
% cat emails.txt| xmail --json
[
{
"domain": "doalkdjfaklsjdfk.com"
},
{
"domain": "doesntexisthahshhsh.com"
}
]
```
