-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathintervention.py
More file actions
137 lines (126 loc) · 3.88 KB
/
Copy pathintervention.py
File metadata and controls
137 lines (126 loc) · 3.88 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import webbrowser, os, time, sys
import colorama
from colorama import init, Fore, Style
import ctypes
def logo():
if os.name == "nt":
ctypes.windll.kernel32.SetConsoleTitleW('Intervention | Coded by: Kill All Snitches | github.com/killallsnitches')
os.system('cls')
else:
os.system('clear')
print(Fore.CYAN + """
_____ _ _ _______ ______ _______ ________ _ _ _______ _____ ____ _ _
|_ _| \ | |__ __| ____| __ \ \ / / ____| \ | |__ __|_ _/ __ \| \ | |
| | | \| | | | | |__ | |__) \ \ / /| |__ | \| | | | | || | | | \| |
| | | . ` | | | | __| | _ / \ \/ / | __| | . ` | | | | || | | | . ` |
_| |_| |\ | | | | |____| | \ \ \ / | |____| |\ | | | _| || |__| | |\ |
|_____|_| \_| |_| |______|_| \_\ \/ |______|_| \_| |_| |_____\____/|_| \_|
""")
print(Fore.WHITE + " File Sniping Helper by:" + Fore.RED + " Kill All Snitches")
print(Style.RESET_ALL)
def engine():
logo()
print("""
[1] Bing
[2] Google
""")
x = input('Engine: ')
if x == '1':
bing()
elif x == '2':
google()
else:
engine()
def google():
anon = 'anonfile.com+'
driv = 'drive.google.com+'
medi = 'mediafire.com+'
zipp = 'zippyshare.com+'
past = 'pastebin.com+'
site = 'site:'
logo()
print("""
[1] Anonfile
[2] Google Drive
[3] Mediafire
[4] Zippyshare
[5] Pastebin
[<] Back
""")
mode = input('Service: ')
if mode == '1':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://google.com/search?q='+site+anon+key)
google()
elif mode == '2':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://google.com/search?q='+site+driv+key)
google()
elif mode == '3':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://google.com/search?q='+site+medi+key)
google()
elif mode == '4':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://google.com/search?q='+site+zipp+key)
google()
elif mode == '5':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://google.com/search?q='+site+past+key)
google()
elif mode == '<':
engine()
else:
google()
def bing():
anon = 'anonfile.com+'
driv = 'drive.google.com+'
medi = 'mediafire.com+'
zipp = 'zippyshare.com+'
past = 'pastebin.com+'
site = 'site:'
logo()
print("""
[1] Anonfile
[2] Google Drive
[3] Mediafire
[4] Zippyshare
[5] Pastebin
[<] Back
""")
mode = input('Service: ')
if mode == '1':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://bing.com/search?q='+site+anon+key)
bing()
elif mode == '2':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://bing.com/search?q='+site+driv+key)
bing()
elif mode == '3':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://bing.com/search?q='+site+medi+key)
bing()
elif mode == '4':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://bing.com/search?q='+site+zipp+key)
bing()
elif mode == '5':
logo()
key = input('Enter your keyword: ')
webbrowser.open('https://bing.com/search?q='+site+past+key)
bing()
elif mode == '<':
engine()
else:
bing()
engine()