Source Code Online Home Categories Top Code New Code Submit Code
Search
Subject Directory
 ASP
 ASP.NET
 C/C++
 CFML
 CGI/PERL
 Delphi
 Flash
 HTML
 Java
 JavaScript
 Pascal
 PHP
 Python
 SQL
 Visual Basic & VB.NET
 XML
New Code
Groupon clone 1.1
AllWebMenus Pro 5.3.892
Easy Query Builder 2.0
Odin Secure FTP Expert 7.7.3
jQuery Accordion Gallery 1.0
PCL to TIFF Converter Shell for Mac 2.0
Fax Server Plus 5.3.0522
Fax Server Pro 5.6.0522
Advanced RSS2Web Professional 3.11.104
Group Mail Manager Premier 2.32.36
RSS Content Generator Premier 3.11.86
Get Remote IP Address in PHP 1.0.0
Elite News Pro2 PHP RSS Reader 2.0
RTF-to-HTML DLL COM, Win32 1.0
Java Download Manager 1.0
Top Code
ICPennyBid - Penny auction software 3.9
Elite News Pro2 PHP RSS Reader 2.0
ASP.NET Event Calendar in MVC3 Razor 1.0
ICHolidayLettings - Holiday Lettings Site Script 1.2
WebTreeView 1.0
BP-T-Shirt - Custom T-Shirt WebStore Script 1.0
CloudOsys File Upload 2.4b2
X360 Multi-page Tiff Viewer ActiveX OCX 2.69
Metadraw3-OCX
AceDRM 1.0
MetaTags For Websites, Documents & Articles
idCGIRunner 1.5
a-Mac Address Change
TmdMailSlot, TmdWinPopup & TmdSecureMail 1.14
WindowHTML 1.1
AS3Obfuscator 1.1.1 Screenshot
AS3Obfuscator 1.1.1 Screenshot


Back to details page



Flash AS3 protection - ActionScript 3 obfuscator, protect Flash ActionScript source code, the .AS and .FLA files, making them very hard to understand, when viewed with decompiler. Protects/encrypts/obfuscates flash projects on source level.


It's the only utility that can protect .FLA files (frame actionscript, instances, classes), along with .AS files - it can work together with Flash, as flash extension. Without Flash, working as standalone program-obfuscates only .AS files.


The actionscript identifiers are mangled-renamed irreversibly. Options say which type of identifiers should be mangled (classes,vars,functions,etc.). You can exclude from mangling a list of specific identifiers. Also-if a type of identifiers should not be mangled-you can include a list.
In the exclude/include lists you can provide a group of identifiers with wildcard character ("*" character).


Optionally the strings can be encrypted in the source files. In runtime they are decrypted.


Optionally the comments can be removed from the actionscript code.


A problem with obfuscators in general is that they can change a program's semantic. That is, it could break - could happen if the program computes names of variables/functions at runtime.
Imagine you obfuscate, and the program stops working.
Any idea how to find a problem in obfuscated .swf?
With obfuscated source it could be possible to locate the problem.
AS3Obfuscators permits finding original identifiers from(and to) obfuscated.
Also, the source can be easy obfuscated again after changing some of the options or ignoring some identifiers.
AS3Obfuscators also tries to detect some simple possible uses of computing identifier names at runtime, so you do not need to add them in the ignore list.
It can search for declared identifier names used in a string
- Example: var myVariable; this["myVariable"]
String concatenation
- Example: this["my"+"Variable"]
Adding a number at the end
- Example: var i:int=0; this["myVar"+i]