Can anyone make a quick tool to check the ActionScript version of a SWF. I read it was like the first four bytes:
flash - How can the actionscript version of a swf file be determined in C#? - Stack Overflow
Also, if you know how, perhaps a tool to check if the swf file is encrypted (more like obfuscated, rename variables and all that, etc), but it's not really necessary at the moment, just need a version checker without manually looking at the code.
-----------------------
Nevermind, the swf version is in hexadecimal in the 4th byte. The actionscript version is in the file attributes tag.
Last edited by arunforce; 01-03-2011 at 01:34 PM.
BRING BACK BT, BRING BACK SAGA, BRING BACK VF, BRING BACK MPGHCRAFT, BRING BACK HABAMON
Yes, we know, but I think he wants it written in VB.
C# is pretty much the same as VB.
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
[php]Dim ASVersion() as Byte
ASVersion = IO.File.ReadAllBytes("C:\test.swf")
Dim final as String
For i as Integer = 0 to 3
final = final & CharW(ASVersion(i))
Next
MsgBox(final)
[/php]
All that returns is CWS and a dot when I tried..
![]()
Last edited by master131; 01-03-2011 at 07:35 PM.
Donate:
BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9
Handy Tools/Hacks:
Extreme Injector v3.7.3
A powerful and advanced injector in a simple GUI.
Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!
Minion Since: 13th January 2011
Moderator Since: 6th May 2011
Global Moderator Since: 29th April 2012
Super User/Unknown Since: 23rd July 2013
'Game Hacking' Team Since: 30th July 2013
--My Art--
[Roxas - Pixel Art, WIP]
[Natsu - Drawn]
[Natsu - Coloured]
All drawings are coloured using Photoshop.
--Gifts--
[Kyle]
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
Yeah, I realised involves decompression and crap to determine the final AS version. Not sure how to convert that to VB.NET since alot of it is pseudo code and I don't know any C#.
Oh and here is the modified version:
[php]Dim ASVersion() as Byte
ASVersion = IO.File.ReadAllBytes("C:\test.swf")
Dim final as String
For i as Integer = 0 to 2
final = final & CharW(ASVersion(i))
Next
final = final & CStr(ASVersion(3))
MsgBox(final) [/php]
Returns CWS or FWS followed by the SWF version. At least its some kind of a start.
Last edited by master131; 01-03-2011 at 08:00 PM.
Donate:
BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9
Handy Tools/Hacks:
Extreme Injector v3.7.3
A powerful and advanced injector in a simple GUI.
Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!
Minion Since: 13th January 2011
Moderator Since: 6th May 2011
Global Moderator Since: 29th April 2012
Super User/Unknown Since: 23rd July 2013
'Game Hacking' Team Since: 30th July 2013
--My Art--
[Roxas - Pixel Art, WIP]
[Natsu - Drawn]
[Natsu - Coloured]
All drawings are coloured using Photoshop.
--Gifts--
[Kyle]
Nevermind, it's pretty complicated.
Posted in VB because it'd be easier to make an app then C#. And VB is more popular.
BRING BACK BT, BRING BACK SAGA, BRING BACK VF, BRING BACK MPGHCRAFT, BRING BACK HABAMON
Well if you still need it, I'll see what I can do.
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
I got this, Give me an hour![]()
yeah I know, I talked to him, I may need to use some java but I should be able to pull it off in PHP. Just have to figure it out, though proficient, PHP is not one of my languages, I may write it in VB or C# and convert it the best I can with JSC and figure out where it breaks and fix it, unless you want to do the conversion, just use JSC , it's pretty accurate.