I am trying to get packets from a website hosted locally on remote computer(Test purpose) using pyshark.
Here is my code:
import pyshark
def print_live_dns():
capture = pyshark.LiveCapture("wlan0")
for packet in capture:
# print(packet)
with open('packets.txt', 'a') as f:
f.write(str(packet))
if "DNS" in packet and not packet.dns.flags_response.int_value:
print(packet.dns.qry_name)
if __name__ == "__main__":
print_live_dns()
With this code I only get packets from the internet. which is not what I need.
How do I achieve this? using either pyshark, scapy, nmap
etc