https://github.com/neox41/e-crawler
Web crawler to spider and extract e-mails from website
https://github.com/neox41/e-crawler
crowler emails go golang web
Last synced: 4 months ago
JSON representation
Web crawler to spider and extract e-mails from website
- Host: GitHub
- URL: https://github.com/neox41/e-crawler
- Owner: neox41
- Created: 2019-03-30T15:14:28.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-26T20:19:46.000Z (over 3 years ago)
- Last Synced: 2026-01-14T13:44:36.172Z (5 months ago)
- Topics: crowler, emails, go, golang, web
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# e-crawler
Web crawler to extract e-mails from website
## Usage
```
./e-crawler -h
-domain value
Domain(s) in scope for crawling
-insecure
Skip TLS certificate verification
-output string
Output file
-proxy string
Web Proxy (e.g. http://127.0.0.1:8080)
-target string
Target website
-threats int
Number of threats (default 10)
-user-agent string
User-Agent (default "https://github.com/mattiareggiani/e-crawler")
-verbose
Display more information
```
## Example
```
./e-crawler -target https://evilcorp.local -proxy http://127.0.0.1:8080 -insecure true
2019/03/30 15:27:44 Spidering the target
2019/03/30 15:27:45 Spidering the web pages
2019/03/30 15:27:56 Done in 11.5839335s
2019/03/30 15:27:56 Emails Found:
elliot@evilcorp.local (2)
support@evilcorp.local (2)
angela@evilcorp.local (1)
phillip@evilcorp.local (1)
```