Jump to content
  • 0

How search value false or true?


kando

Question

7 answers to this question

Recommended Posts

On 7/1/2020 at 11:52 AM, Emarkx said:

Sometimes true and false is stored as

1 or 0

And

True or false

 

You just have to figure out how its stored.

thanks for your reply

I know that the data is stored as

True

And

False

Just what I do not know how to replace

False 

With 

True

Via gg

 

Link to comment
Share on other sites

If you are talking about a boolean in a lib then

ARM8 64bit search

        true = 20008052r
        false = 00008052r

ARM7 32bit search
        true = 0100A0E3r
        false = 0000A0E3r

but there will most likely be thousands of results, best to attempt to debug it with Termux/gdb if your looking in the lib, if the value is not in a lib but in a normal range they really could use anything for a bool, if you are lucky 0 for false 1 for true and often located near related values or pointed to from the same list of pointers
    

Link to comment
Share on other sites

On 7/5/2020 at 1:38 AM, BadCase said:

If you are talking about a boolean in a lib then

ARM8 64bit search

        true = 20008052r
        false = 00008052r

ARM7 32bit search
        true = 0100A0E3r
        false = 0000A0E3r

but there will most likely be thousands of results, best to attempt to debug it with Termux/gdb if your looking in the lib, if the value is not in a lib but in a normal range they really could use anything for a bool, if you are lucky 0 for false 1 for true and often located near related values or pointed to from the same list of pointers
    

Hey mate I sent you multiple messages, could you please check? Thanks!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.