-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtool.py
32 lines (23 loc) · 990 Bytes
/
tool.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
import sys
from columnar import columnar
print("The tools that you want are listed below in the terminal according to the categories.....")
# the tools are listed below
headers = ['Tools1','2','3','4']
data = [
['Autorecon', 'meg', 'httprobe', 'assetfinder'],
['waybackurls', 'lazyrecon', 'JSParser', 'lazys3'],
['SecLists', 'Sublist3r', 'domain', 'massdns'],
['dnscan', 'knock', 'masscan', 'EyeWitness'],
['httpscreenshot', 'gobuster', 'dirsearch', 'parameth'],
['XSStrike', 'xsser', 'oxml_xxe', 'XXEinjector'],
['ssrfDetector', 'ground-control', 'tplmap', 'LFISuite'],
['GitTools', 'dvcs-ripper', 'HostileSubBruteforcer', 'second-order'],
['CORStest','retire.js','getsploit','Findsploit'],
['CMSmap','joomscan','patator','whatweb'],
['wafw00f','S3Scanner','Striker','Arjun'],
['Photon','Bolt','JShell','regxy'],
['AwesomeXSS','ReconDog','nmap','Burpsuite'],
]
table = columnar(data, headers,justify='c')
print(table)