lint fixes

This commit is contained in:
Chris Talib 2024-07-11 10:31:11 +02:00
parent 76d513935f
commit 691cded981

View file

@ -1,8 +1,7 @@
#! /usr/bin/env python3
import sys
import pefile
import re
import sys
"""
Usage: cat <file> | python3 decoder_jaska_go.py
@ -20,6 +19,7 @@ matches = port_regex.search(binary_data)
print("PORT", matches.group("PORT"))
id_regex = re.compile(r"\x00\x00\x00\x00(?P<ID>[a-zA-Z0-9]{25})\x00\x00", re.DOTALL)
#
#matches = id_regex.search(binary_data)
#if matches:
# print(matches.group("ID"))