Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
abuvanth committed Jun 16, 2019
1 parent 7388df9 commit 7e46466
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,29 @@
# kickdomain
Kickdomain is a subdomain takeover checker tool

# Usage

pip install kickdomain

Enumerate Subdomains only

kickdomain.py -u target.com

Enable Takeover check

kickdomain.py -u target.com -t 1

# Use kickdomain as a module

import kickdomain

subdomains=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')

0 comments on commit 7e46466

Please sign in to comment.