Pattern Scan?
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?
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.