gpt4 book ai didi

python - 从 DNS 接收应答是否需要 root/更高权限

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:02:57 24 4
gpt4 key购买 nike

你好,

我不确定我应该把这个问题放在哪里,我正在学习 DNS 及其工作原理,据我所知,我在 UDP 端口 53 上向服务器发送了一个请求,主机应该在该端口上正确地响应我?

这是我正在使用的脚本,它可以正常工作并准确描述 DNS 消息查询和用法,甚至可以为我返回 DNS 答案。

如果系统没有 root 就无法监听端口 53,这怎么可能?

DNS 数据包详细信息

;DNS HEADER;
; AA AA - ID
; 01 00 - Query parameters
; 00 01 - Number of questions
; 00 00 - Number of answers
; 00 00 - Number of authority records
; 00 00 - Number of additional records
; DNS QUESTION --
; 07 - 'example' has length 7, ;so change this to be the length of domain ; keep in ming there are not '.' in the question.
; 65 - e
; 78 - x
; 61 - a
; 6D - m
; 70 - p
; 6C - l
; 65 - e

; 03 - subdomain '.com' length 03 ; change this to be the length of type.

; 63 - c
; 6F - o
; 6D - m

代码:

import binascii
import socket


def send_udp_message(message, address, port):
"""send_udp_message sends a message to UDP server

message should be a hexadecimal encoded string
"""
message = message.replace(" ", "").replace("\n", "")
server_address = (address, port)

sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
try:
sock.sendto(binascii.unhexlify(message), server_address)
data, _ = sock.recvfrom(4096)
finally:
sock.close()
return binascii.hexlify(data).decode("utf-8")


def format_hex(hex):
"""format_hex returns a pretty version of a hex string"""
octets = [hex[i:i+2] for i in range(0, len(hex), 2)]
pairs = [" ".join(octets[i:i+2]) for i in range(0, len(octets), 2)]
return "\n".join(pairs)


message = "AA AA 01 00 00 01 00 00 00 00 00 00 " \
"07 65 78 61 6d 70 6c 65 03 63 6f 6d 00 00 01 00 01"

response = send_udp_message(message, "8.8.8.8", 53)
print(format_hex(response))

响应:

aa aa
81 80
00 01
00 01
00 00
00 00
07 65
78 61
6d 70
6c 65
03 63
6f 6d
00 00
01 00
01 c0
0c 00
01 00
01 00
00 32
98 00
04 5d
b8 d8
22

如果您查看最后四个字节,您会发现这是 example.com 的十六进制 IP 5db8d822

你可以去这里看看。 HEX to IP converter Online

最佳答案

不是,你的源端口不是53端口,用户进程分配的出站端口号在1023以上,是非特权的。

一个简单的同步 Python DNS 客户端基本上会阻止并保持相同的端口打开,直到服务器响应。您发送的 IP 数据包包含服务器需要的信息以便知道在哪里回复(这是在 IP 数据包本身的 header 中,在 DNS 查询负载之前)。

关于python - 从 DNS 接收应答是否需要 root/更高权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55323785/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com