Skip to content

Commit 400990d

Browse files
author
İSMAİL TAŞDELEN
committed
Add files via upload
1 parent 4650013 commit 400990d

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

nikto_vulnerability_report_tool.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/env python
2+
# -*- coding=utf-8 -*-
3+
4+
import os
5+
6+
nikto_vulnerability_report = """
7+
#############################################################
8+
# PYTHON - Nikto Vulnerability Report Tool - GH0ST S0FTWARE #
9+
#############################################################
10+
# CONTACT #
11+
#############################################################
12+
# DEVELOPER : İSMAİL TAŞDELEN #
13+
# Mail Address : pentestdatabase@gmail.com #
14+
# LINKEDIN : https://www.linkedin.com/in/ismailtasdelen #
15+
# Whatsapp : + 90 534 295 94 31 #
16+
#############################################################
17+
"""
18+
star = "############################################################"
19+
20+
print nikto_vulnerability_report
21+
22+
taranan_url = str(raw_input("Taranacak url adresini giriniz : "))
23+
dosya_dizini_adi = str(raw_input("Oluşturulacak dosya dizinini veya adini giriniz : "))
24+
25+
print star
26+
27+
os.system("nikto" + " " + "-h" + " " + taranan_url + " " + "-o" + " " + dosya_dizini_adi)
28+
29+
print start

0 commit comments

Comments
 (0)