From 7e46466b3080d4d6a531804fed38d736dd2c37ec Mon Sep 17 00:00:00 2001 From: syed abuthahir Date: Sun, 16 Jun 2019 12:15:16 +0530 Subject: [PATCH] Update readme --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 7b40881..02fec7c 100644 --- a/README.md +++ b/README.md @@ -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') + \ No newline at end of file