Ahmy
Ahmy

Reputation: 5480

Reading SWF file code from C#

I have a site that accepts flash files to be uploaded in my site and i need to check the SWF file uploaded to check for certain code if it exists or not to put it in the SWF file so i need to read or deassembly the SWF file and read its code from C#.Net is there any way to do that ?

Upvotes: 1

Views: 3123

Answers (2)

George E. Litinas
George E. Litinas

Reputation: 31

If your flash version is not greater than 7 then you could use this one http://www.codeproject.com/Articles/16834/How-to-create-a-simple-SWF-decompiler-with-the-Swf

Upvotes: 1

driis
driis

Reputation: 164291

Perhaps you could utilize http://flasm.sourceforge.net/.

Upvotes: 2

Related Questions