Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-pesar/domain-detective
domain-detective is for a list of your domains that checks them hourly, and if a domain was open, it will inform you.
https://github.com/the-pesar/domain-detective
bash domain scanner whois
Last synced: 17 days ago
JSON representation
domain-detective is for a list of your domains that checks them hourly, and if a domain was open, it will inform you.
- Host: GitHub
- URL: https://github.com/the-pesar/domain-detective
- Owner: the-pesar
- License: mit
- Created: 2023-08-02T21:20:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-12T18:36:51.000Z (over 1 year ago)
- Last Synced: 2024-10-11T03:19:51.498Z (about 1 month ago)
- Topics: bash, domain, scanner, whois
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 27
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# domain-detective
domain-detective is for a list of your domains that checks them hourly, and if a domain was open, it will inform you.
## installation
#### 1. Clone this repository on your system:
```bash
$ git clone [email protected]:the-pesar/domain-detective.git
# git clone https://github.com/the-pesar/domain-detective.git
```
#### 2. Install `whois` and `crontab`:
`whois`:
```bash
$ sudo apt install whois
```
`crontab`:
```bash
$ sudo apt install cron && sudo systemctl enable cron
```
Go to the cloned repository
#### 3. Set execution permission and run `setup.sh`
```bash
$ chmod +x setup.sh script.sh && ./setup.sh
```
#### 4. Add your domains into domain list:
```bash
$ echo "your-rand0m-domain.com" >> ~/domain-detective/domain_list.txt
```
#### 5. Run the script for first time:
```bash
$ ./script.sh
```
#### 6. Reload your terminal:
```bash
$ source ~/.bashrc
```