https://github.com/abuvanth/kickdomain
Kickdomain is a subdomain enumeration and takeover checker tool
https://github.com/abuvanth/kickdomain
python subdomain-enumeration subdomain-scanner subdomain-takeover takeover-checker
Last synced: 7 months ago
JSON representation
Kickdomain is a subdomain enumeration and takeover checker tool
- Host: GitHub
- URL: https://github.com/abuvanth/kickdomain
- Owner: abuvanth
- License: gpl-3.0
- Created: 2019-05-24T07:13:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-11T13:11:52.000Z (over 5 years ago)
- Last Synced: 2025-02-20T19:42:37.040Z (8 months ago)
- Topics: python, subdomain-enumeration, subdomain-scanner, subdomain-takeover, takeover-checker
- Language: Python
- Homepage:
- Size: 78.1 KB
- Stars: 4
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kickdomain
Kickdomain is a subdomain takeover checker tool# Usage
pip install kickdomain
add fb access token into config.py
# or
export FB_ACCESS_TOKEN=your_access_token (get your access token here - https://developers.facebook.com/tools/explorer/)
or
add FB_ACCESS_TOKEN into .bashrc file
source .bashrc
Enumerate Subdomains only
kickdomain.py -u target.com
Enable Takeover check
kickdomain.py -u target.com -t 1
Enable Port scan for each subdomain
kickdomain.py -u target.com -p 1
# Use kickdomain as a module
```
import kickdomainsubdomains=kickdomain.getSubdomains('target.com')
results=kickdomain.takeover_check(subdomains)
for i in results:
if i[1]:print(i[0]+' vulnerable to Takeover')
else:
print(i[0]+' not vulnerable to Takeover')
```
**Sources to be implemented**
https://spyse.com/ API
https://riddler.io/ API