File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments