/[cvs]/nfo/perl/scripts/fluscate/doc/fluscate.html
ViewVC logotype

Diff of /nfo/perl/scripts/fluscate/doc/fluscate.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by joko, Fri Jul 23 12:25:11 2004 UTC revision 1.4 by joko, Mon Jul 26 13:51:54 2004 UTC
# Line 21  Line 21 
21          <li><a href="#features">Features</a></li>          <li><a href="#features">Features</a></li>
22          <ul>          <ul>
23    
24                    <li><a href="#obfuscation">Obfuscation</a></li>
25                  <li><a href="#functions">Functions</a></li>                  <li><a href="#functions">Functions</a></li>
26          </ul>          </ul>
27    
28            <li><a href="#dependencies">Dependencies</a></li>
29          <li><a href="#usage">Usage</a></li>          <li><a href="#usage">Usage</a></li>
30          <ul>          <ul>
31    
# Line 39  Line 41 
41                  <li><a href="#notes">Notes</a></li>                  <li><a href="#notes">Notes</a></li>
42          </ul>          </ul>
43    
44            <li><a href="#links">Links</a></li>
45            <ul>
46    
47                    <li><a href="#actionscript_decompilers___disassemblers">ActionScript Decompilers / Disassemblers</a></li>
48                    <li><a href="#actionscript_editors___co_">ActionScript Editors &amp; Co.</a></li>
49                    <li><a href="#obfuscators">Obfuscators</a></li>
50                    <li><a href="#misc">Misc</a></li>
51                    <li><a href="#offtopic">Off-Topic</a></li>
52            </ul>
53    
54  </ul>  </ul>
55  <!-- INDEX END -->  <!-- INDEX END -->
56    
# Line 67  Line 79 
79  <h1><a name="features">Features</a></h1>  <h1><a name="features">Features</a></h1>
80  <p>  <p>
81  </p>  </p>
82    <h2><a name="obfuscation">Obfuscation</a></h2>
83    <pre>
84      See ASO Pro: <a href="http://www.genable.com/aso/preview.html">http://www.genable.com/aso/preview.html</a></pre>
85    <p>
86    </p>
87  <h2><a name="functions">Functions</a></h2>  <h2><a name="functions">Functions</a></h2>
88  <pre>  <pre>
89    fluscate handles two different styles of function declarations:</pre>    fluscate handles two different styles of function declarations:</pre>
# Line 81  Line 98 
98  <a href="#__index__"><small>back to top</small></a>  <a href="#__index__"><small>back to top</small></a>
99  </p>  </p>
100  <hr />  <hr />
101    <h1><a name="dependencies">Dependencies</a></h1>
102    <pre>
103      &quot;flasm&quot; is required to disassemble swf files, see <a href="http://www.nowrap.de/flasm.html">http://www.nowrap.de/flasm.html</a>
104      ACKs go to Igor Kogan.</pre>
105    <p>
106    <a href="#__index__"><small>back to top</small></a>
107    </p>
108    <hr />
109  <h1><a name="usage">Usage</a></h1>  <h1><a name="usage">Usage</a></h1>
110  <p>  <p>
111  </p>  </p>
# Line 93  Line 118 
118  </p>  </p>
119  <h2><a name="_nix">*nix</a></h2>  <h2><a name="_nix">*nix</a></h2>
120  <pre>  <pre>
121    #&gt; flasm -d puzzle.swf &gt; puzzle.flm    #&gt; ./flasm -d puzzle.swf &gt; puzzle.flm
122    #&gt; cat puzzle.flm | fluscate.pl &gt; puzzle_fusc.flm    #&gt; cat puzzle.flm | ./fluscate.pl &gt; puzzle_fusc.flm
123    #&gt; flasm -a puzzle_fusc.flm</pre>    #&gt; ./flasm -a puzzle_fusc.flm</pre>
124  <p>  <p>
125  <a href="#__index__"><small>back to top</small></a>  <a href="#__index__"><small>back to top</small></a>
126  </p>  </p>
# Line 133  Line 158 
158    - there are multiple caller lines: callFunction, callMethod; do we have to take special care to methods?    - there are multiple caller lines: callFunction, callMethod; do we have to take special care to methods?
159    - &quot;getMember&quot; and &quot;getVariable&quot; also do function calls!    - &quot;getMember&quot; and &quot;getVariable&quot; also do function calls!
160    - there are reserved function names which must not be replaced! (-&gt; event handlers, e.g. &quot;onPress&quot;)</pre>    - there are reserved function names which must not be replaced! (-&gt; event handlers, e.g. &quot;onPress&quot;)</pre>
161    <p>
162    <a href="#__index__"><small>back to top</small></a>
163    </p>
164    <hr />
165    <h1><a name="links">Links</a></h1>
166    <p>
167    </p>
168    <h2><a name="actionscript_decompilers___disassemblers">ActionScript Decompilers / Disassemblers</a></h2>
169    <pre>
170      flasm: <a href="http://www.nowrap.de/flasm.html">http://www.nowrap.de/flasm.html</a></pre>
171    <p>
172    </p>
173    <h2><a name="actionscript_editors___co_">ActionScript Editors &amp; Co.</a></h2>
174    <pre>
175      URL Action Editor and Actionscript Viewer:
176        <a href="http://www.buraks.com/">http://www.buraks.com/</a>
177        <a href="http://voisen.org/archives/2003/02/uae_303_and_asv_309.php">http://voisen.org/archives/2003/02/uae_303_and_asv_309.php</a>
178      SE|PY ActionScript Editor: <a href="http://www.sephiroth.it/python/sepy.php">http://www.sephiroth.it/python/sepy.php</a></pre>
179    <p>
180    </p>
181    <h2><a name="obfuscators">Obfuscators</a></h2>
182    <pre>
183      ASO Pro (ActionScript Obfuscator Pro): <a href="http://www.genable.com/aso/preview.html">http://www.genable.com/aso/preview.html</a>
184      SWOB (swf obfuscator): <a href="http://home.byu.net/jtb64/Swob.htm">http://home.byu.net/jtb64/Swob.htm</a>
185      OBFU - A Flash Actionscript obfuscator: <a href="http://opaque.net/~dave/obfu/">http://opaque.net/~dave/obfu/</a></pre>
186    <p>
187    </p>
188    <h2><a name="misc">Misc</a></h2>
189    <pre>
190      ActionScript Protection:
191        <a href="http://www.as-protect.com/">http://www.as-protect.com/</a>
192        <a href="http://www.quasimondo.com/archives/000377.php">http://www.quasimondo.com/archives/000377.php</a>
193      Developer's SWF Guardian: <a href="http://anyrd.anyorganization.com/">http://anyrd.anyorganization.com/</a>
194      Password Busting / SWF Protections: <a href="http://www.searchlores.org/cinix_fla.htm">http://www.searchlores.org/cinix_fla.htm</a></pre>
195    <p>
196    </p>
197    <h2><a name="offtopic">Off-Topic</a></h2>
198    <pre>
199    
200      XPath for Actionscript and other stuff: <a href="http://www.xfactorstudio.com/Actionscript/">http://www.xfactorstudio.com/Actionscript/</a>
201      SerializerClass: <a href="http://sourceforge.net/projects/serializerclass/">http://sourceforge.net/projects/serializerclass/</a>
202      AMF::Perl - Flash Remoting in Perl and Python - using Flash Remoting protocol (AMF):
203        <a href="http://simonf.com/amfperl/">http://simonf.com/amfperl/</a>
204      PEAR::SWF - Read and write SWF head tag: <a href="http://www.sephiroth.it/test/php/SWF/">http://www.sephiroth.it/test/php/SWF/</a>
205      AMFPHP - Flash Remoting for PHP: <a href="http://www.amfphp.org/">http://www.amfphp.org/</a></pre>
206  <p><a href="#__index__"><small>back to top</small></a></p>  <p><a href="#__index__"><small>back to top</small></a></p>
207  <table border="0" width="100%" cellspacing="0" cellpadding="3">  <table border="0" width="100%" cellspacing="0" cellpadding="3">
208  <tr><td class="block" valign="middle">  <tr><td class="block" valign="middle">

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed