forked from 0xInfection/TIDoS-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfootprint.py
More file actions
56 lines (44 loc) · 1.6 KB
/
Copy pathfootprint.py
File metadata and controls
56 lines (44 loc) · 1.6 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#-:-:-:-:-:-:-:-:-:-:-:-:#
# TIDoS Framework #
#-:-:-:-:-:-:-:-:-:-:-:-:#
#This module requires TIDoS Framework
#https://github.com/0xInfection/TIDoS-Framework
from __future__ import print_function
import os
import time
# Get module imports
from core.Core.colors import *
from core.Footprinting.footprintban import *
from core.Footprinting.Info_Disc.infodisc import *
from core.Footprinting.Active_Recon.activeo import *
from core.Footprinting.Passive_Recon.passiveo import *
def footprint(web):
print(B+' [+] Module Selected : '+C+'Footprinting')
footprintban() # banner
m = raw_input(O+' [#] \033[1;4mTID\033[0m'+GR+' :> ' + color.END)
print('')
if m.strip() == '1':
passiveo(web) # passive recon module
print('\n')
raw_input(O+' [#] Press '+GR+'Enter'+O+' to continue...')
footprint(web)
elif m.strip() == '2':
activeo(web) # active recon module
print('\n')
raw_input(O+' [#] Press '+GR+'Enter'+O+' to continue...')
footprint(web)
elif m.strip() == '3':
infodisc(web) # information disclosure modules
print('\n')
raw_input(O+' [#] Press '+GR+'Enter'+O+' to continue...')
footprint(web)
elif m.strip() == '99': # get back to main module
print(' [+] Back!')
else:
print('')
dope = [' [*] You high dude?',' [*] Hey there! Enter a valid option',' [*] Whoops! Thats not an option',' [*] Sorry fam! You just typed shit'] # troll stuff :p
print(dope[randint(0,3)])
time.sleep(0.5)
footprint(web)