Python Forum
Search for multiple unknown 3 (2) Byte combinations in a file.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Search for multiple unknown 3 (2) Byte combinations in a file.
#5
Q?: Can the 8b/8c/8d appear anywhere, or only at multiple of 3 byte offsets?

Here's a way to convert an array of bytes into 24bit ints.

https://stackoverflow.com/questions/1208...1#34128171

Depending on the answer to my question you might need to do this 3 times to get all possible 24 bit integers. Once you have that, look for numbers int he range 0x8C0000 to 0x8F0000. This can be done quickly using numpy. Like this:

https://stackoverflow.com/questions/4503...nge-python

And you can use numpy.unique() to get a count of each unique value.

https://numpy.org/doc/stable/reference/g...nique.html
Reply


Messages In This Thread
RE: Search for multiple unknown 3 (2) Byte combinations in a file. - by deanhystad - Aug-12-2023, 08:15 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Search Excel File with a list of values huzzug 4 1,337 Nov-03-2023, 05:35 PM
Last Post: huzzug
  search file by regex SamLiu 1 963 Feb-23-2023, 01:19 PM
Last Post: deanhystad
  Finding combinations of list of items (30 or so) LynnS 1 923 Jan-25-2023, 02:57 PM
Last Post: deanhystad
  If function is false search next file mattbatt84 2 1,212 Sep-04-2022, 01:56 PM
Last Post: deanhystad
  Python: re.findall to find multiple instances don't work but search worked Secret 1 1,268 Aug-30-2022, 08:40 PM
Last Post: deanhystad
  Search multiple CSV files for a string or strings cubangt 7 8,300 Feb-23-2022, 12:53 AM
Last Post: Pedroski55
  fuzzywuzzy search string in text file marfer 9 4,747 Aug-03-2021, 02:41 AM
Last Post: deanhystad
  How can I find all combinations with a regular expression? AlekseyPython 0 1,716 Jun-23-2021, 04:48 PM
Last Post: AlekseyPython
  Cloning a directory and using a .CSV file as a reference to search and replace bg25lam 2 2,199 May-31-2021, 07:00 AM
Last Post: bowlofred
  All possible combinations CODEP 2 1,910 Dec-01-2020, 06:10 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020