| View previous topic :: View next topic |
| Author |
Message |
oOoNyquiloOo Grandmaster Cheater Supreme
Reputation: 0
Joined: 18 Jun 2006 Posts: 1420
|
Posted: Sun Sep 16, 2007 3:47 pm Post subject: [Question] Bruteforce a flash variable using vb6 |
|
|
Could you possibly run a bruteforcer using a list of frequently used variable names such as points, score, etc.. by running a while loop that concatenates the list words using the getVariable function and saving the results for later to check if it matches the value or string you are looking for?
Or is this idea stupid, or inefficient.
|
|
| Back to top |
|
 |
Trow Grandmaster Cheater
Reputation: 2
Joined: 17 Aug 2006 Posts: 957
|
Posted: Mon Sep 17, 2007 4:08 am Post subject: |
|
|
inefficient, but you can still do it...
what you need is an array of probably a billion indices e.g.
dim myVarName(100000000000000000000) as something
dim myVarVal(100000000000000000000) as something
dim I as long
for i=0 to 1000000000000000000000000000.... step 1
'generate a variable name using the bruteforce method. do this yourself
myVarName(i)=bruteforceval(i)
myVarVal(i)=ShockwaveFlash1.GetVariable(myVarName(i))
if len(myVarVal(i))>0 then
'do stuff
end if
doevents
next
this is a gay way... bruteforceval is like how you bruteforceval(0)=A, bruteforceval(26)=Z and bruteforceval(27)=AA, etc.
_________________
Get kidnapped often. |
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Mon Sep 17, 2007 4:13 am Post subject: |
|
|
get sothink swf decompiler and find them yourself
i found almost every aspect of samurai sam, its like the matrix in there
i can get a highscore in <2 seconds
_________________
|
|
| Back to top |
|
 |
AngelSl Cheater
Reputation: 0
Joined: 13 Jul 2007 Posts: 34
|
Posted: Mon Sep 17, 2007 7:17 am Post subject: |
|
|
I'd do one like..
Search for
a
b
c
...
aa
ab
ac
...
aaa
aab
aac...
_________________
|
|
| Back to top |
|
 |
|