networking:dns:dns_response_crafter
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
networking:dns:dns_response_crafter [2021/02/01 13:54] – created peter | networking:dns:dns_response_crafter [2022/10/08 09:52] (current) – [Make lots of DNS requests in quick succession:] peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Networking - DNS - DNS Response Crafter ====== | ====== Networking - DNS - DNS Response Crafter ====== | ||
+ | |||
+ | ===== Make lots of DNS requests in quick succession: ===== | ||
+ | |||
+ | <code python> | ||
+ | import dns.resolver | ||
+ | |||
+ | resolver = dns.resolver.Resolver()for x in range(2, 10): | ||
+ | for i in range(85, 200): | ||
+ | try: | ||
+ | print resolver.query(chr(i) * x + ' | ||
+ | except: | ||
+ | pass | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** | ||
+ | |||
+ | See: https:// | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Craft Specific DNS requests ===== | ||
<code python> | <code python> | ||
Line 7: | Line 31: | ||
UDP_IP_ADDRESS | UDP_IP_ADDRESS | ||
RESPONSE_IP = ' | RESPONSE_IP = ' | ||
- | UDP_PORT_NO = 53 # Bind to DNS port | + | UDP_PORT_NO = 53 # Bind to DNS port. |
- | TTL = 86400 # Time to live in cache | + | TTL = 86400 # Time to live in cache. |
- | NAME_POINTER = " | + | NAME_POINTER = " |
def CraftResponse(addr, | def CraftResponse(addr, | ||
dns = DNS(data) | dns = DNS(data) | ||
dnsrr = DNSRR(rrname=NAMEPOINTER, | dnsrr = DNSRR(rrname=NAMEPOINTER, | ||
- | opt = DNSRROPT(rrname= '.’ ,type= ' | + | opt = DNSRROPT(rrname= '.' |
extrcode=0, version=0, z=0, rdlen=0) | extrcode=0, version=0, z=0, rdlen=0) | ||
| | ||
- | return \ # Assemble and return packet | + | return \ # Assemble and return packet. |
IP(dst=addr[0])/ | IP(dst=addr[0])/ | ||
UDP(dport=addr[1], | UDP(dport=addr[1], | ||
Line 26: | Line 50: | ||
| | ||
def main(): | def main(): | ||
- | # Set up and bind socket for UDP packets | + | # Set up and bind socket for UDP packets. |
s = socket.socket(socket.AFINET, | s = socket.socket(socket.AFINET, | ||
s.bind(UDPIPADDRESS, | s.bind(UDPIPADDRESS, |
networking/dns/dns_response_crafter.1612187663.txt.gz · Last modified: 2021/02/01 13:54 by peter