PyMemoryEditor icon indicating copy to clipboard operation
PyMemoryEditor copied to clipboard

Pattern Scan?

Open Apprisco opened this issue 1 year ago • 1 comments

I was currently using pymem, but completely stuck on getting this stupid pattern scan working.

For an unknown reason b"\xA1....\x8B\x40.\x85\xC0\x74.\x0F\x28..\xEB\x07\x0F\x28\x05....\x80" is causing regex issues.

As such, I'm trying to figure out if there's other libraries that'll let me perform pattern scans, such as pymemedit. Is this possible?

Apprisco avatar Aug 27 '24 14:08 Apprisco

I was currently using pymem, but completely stuck on getting this stupid pattern scan working.

For an unknown reason b"\xA1....\x8B\x40.\x85\xC0\x74.\x0F\x28..\xEB\x07\x0F\x28\x05....\x80" is causing regex issues.

As such, I'm trying to figure out if there's other libraries that'll let me perform pattern scans, such as pymemedit. Is this possible?

You need to preprocess \x28, replace it to the other character .\x28 represents a left parenthesis, it caused a recognition error here.

QuoVadis86 avatar Mar 25 '25 12:03 QuoVadis86