Skip to content

Commit

Permalink
Disable name resolution (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
vlvkobal authored Feb 10, 2025
1 parent 52a30d8 commit c563297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ja4.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def main():
if args.pcap.endswith('.ek'):
ps = Popen(["cat", args.pcap], stdout=PIPE, encoding='utf-8')
else:
ps = Popen(["tshark", "-r", args.pcap, "-T", "ek"], stdout=PIPE, encoding='utf-8')
ps = Popen(["tshark", "-r", args.pcap, "-T", "ek", "-n"], stdout=PIPE, encoding='utf-8')

for idx, line in enumerate(iter(ps.stdout.readline, '')): # enumerate(sys.stdin):
if "layers" in line:
Expand Down

0 comments on commit c563297

Please sign in to comment.