-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexploit.py
More file actions
36 lines (28 loc) · 711 Bytes
/
exploit.py
File metadata and controls
36 lines (28 loc) · 711 Bytes
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
import argparse
import requests
from urllib.parse import urlparse, urlunparse, quote
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
class Exploit:
def __init__(self, host, targets, interactsh_host, proxy):
self.host = host
self.targets = targets
self.proxy = proxy
self.interactsh_host = interactsh_host
def run(self):
pass
'''TODO'''
def check(self):
pass
'''TODO'''
if __name__=="__main__":
parser = argparse.ArgumentParser()
""""TODO"""