VincentEmmanuel Posted February 29 Posted February 29 Hi all, I know the values of 2 consecutive address eg BXXXXXXXX 2D BXXXXXXXX 0D How can i search for 2D and 0D and return only results where they occur on top of each other?
0 Wembbu Posted February 29 Posted February 29 9 hours ago, VincentEmmanuel said: Hi all, I know the values of 2 consecutive address eg BXXXXXXXX 2D BXXXXXXXX 0D How can i search for 2D and 0D and return only results where they occur on top of each other? What you'd need is: 2D;0D::5 2D;0D is the group search of two values : means grouped within certain distance from each other and the second ":" means it's ordered i.g. they go one after another in the specified order 5 is the group size i.g. how far away they are from one another 1
0 kiynox Posted February 29 Posted February 29 [ @VincentEmmanuel ] --- @Wembbu is correct but relying on just 2 value might have alot of result. You might want to add other value (it can be anything) if this happen. Or if it's static (meaning the value always in BXXXX range) you can also limit the search using memory range. --- 1
0 VincentEmmanuel Posted March 1 Author Posted March 1 4 hours ago, Wembbu said: What you'd need is: 2D;0D::5 2D;0D is the group search of two values : means grouped within certain distance from each other and the second ":" means it's ordered i.g. they go one after another in the specified order 5 is the group size i.g. how far away they are from one another Thanks! So to search for values in ordered value back to back I can do 2D;0D:1: Is that the correct syntax ?
0 Wembbu Posted March 1 Posted March 1 16 hours ago, VincentEmmanuel said: Thanks! So to search for values in ordered value back to back I can do 2D;0D:1: Is that the correct syntax ? No. If you want it to search in the reverse order you'd need to type in 0D;2D::5 because it searches in THE ORDER you type it in Also that 1 doesn't make sense as that group range is only used for byte searches
Question
VincentEmmanuel
Hi all,
I know the values of 2 consecutive address
eg
BXXXXXXXX 2D
BXXXXXXXX 0D
How can i search for 2D and 0D and return only results where they occur on top of each other?
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now