Okey, So I decided to hack firefox.

There is some annoying javascript counting down & I constantly miss the time frame Im given after the countdown. So I thought why not give me msbox after countdown is finished.

So I read this nice guide about memory.

After some struggle I even found a script that can read memory.

PHP Code:
$Mem_Read     _MemoryRead('07F3CE0D''Firefox.exe') ; Results 785 
Problem1: The address is changing every time I reload the page or open new tab. But this script only gets value from 1 address. This means I need to scan whole memory.

Problem 2:



How will the memory address look like if I want to read data from first cluster? Then second one? then 45 clusters ahead? Do I just take hex value of 0,1,2,3,45 & vuala I have a memory address of first 4 Bytes?