Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TheMMMdev/addSome
Simple Go script to check if found domains in a file are already saved in your Findomain database
https://github.com/TheMMMdev/addSome
Last synced: 21 days ago
JSON representation
Simple Go script to check if found domains in a file are already saved in your Findomain database
- Host: GitHub
- URL: https://github.com/TheMMMdev/addSome
- Owner: TheMMMdev
- Created: 2020-04-28T10:42:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-04-28T14:18:21.000Z (over 4 years ago)
- Last Synced: 2024-04-12T19:42:55.474Z (8 months ago)
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - TheMMMdev/addSome - Simple Go script to check if found domains in a file are already saved in your Findomain database (Go)
README
# addSome
Simple go script to add found subdomains (from Amass, bruteforced with Massdns, etc) to your Postgres database one uses for Findomain (credits to https://github.com/Edu4rdSHL/findomain for that great tool).
Download:
```git clone https://github.com/TheMMMdev/addSome```
Setup:
```
- Update the const object in the Go file to your specific setup. The constant object is necessary to be able to connect to your Postgres instance. This object is line 12 to 18 in addSome.go.
- Install the golang Postgres package with go get github.com/lib/pq
```To use it either use ```go run addSome.go [filename]``` or use ```go build addSome.go``` to be able to use it as ```./addSome [filename]```.
This tool is made to read a text file and thus expects a file which has one domain per line.
For any issues, please open one. Always welcome to open a pull request, if something can be done better!