active questions tagged obfuscation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:43:01Z http://stackoverflow.com/feeds/tag/obfuscation http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/820261/obfuscating-jar-files-with-other-jar-files-embedded 0 Obfuscating Jar files with other Jar files embedded Saiyine 2009-05-04T14:05:58Z 2009-12-03T08:00:06Z <p>So figure we have a Jar file with our Java application, and it has inside of it the Jar files for the libraries it depends of, a the jdbc or any other third party jar.</p> <p>How do you proceed to obfuscate it with free software? I mean, obfuscate your code and leave the Jars untouched.</p> <p>I tried with <a href="http://proguard.sourceforge.net/" rel="nofollow">Proguard</a>, to no avail. Even the author told me at the sourceforge forums it wasn't possible.</p> <p>But you can do it manually with an ugly hack involving the renaming of the jar to zip and mangling with the inner data, so, why wouldn't a software be able to do it?</p> http://stackoverflow.com/questions/1830181/how-can-i-obfuscate-a-symfony-php-web-app 0 How can I obfuscate a Symfony PHP Web App? JB Lesage 2009-12-02T01:47:37Z 2009-12-02T07:53:00Z <p>Hello, </p> <p>I am looking to distribute a symfony web app, but don't want to reveal its source code.</p> <p>I know it is tough to obfuscate PHP, but I was wondering if there are any closed or open source solutions to obfuscate and/or encode the backend code so that someone receiving the app can run it but wouldn't be able to view the source code?</p> http://stackoverflow.com/questions/1830316/what-does-this-obfuscated-perl-code-do 2 What does this obfuscated Perl code do? [closed] yarv 2009-12-02T02:35:08Z 2009-12-02T06:07:26Z <p>What does this do?</p> <pre><code>`$=`;$_=\%!;($_)=/(.)/;$==++$|;($.,$/,$,,$\,$",$;,$^,$#,$~,$*,$:,@%)=($!=~/(.)(.).(.)(.)(.)(.)..(.)(.)(.)..(.)......(.)/,$"),$=++;$.++;$.++;$_++;$_++;($_,$\,$,)=($~.$"."$;$/$%[$?]$_$\$,$:$%[$?]",$"&amp;$~,$#,);$,++;$,++;$^|=$";`$_$\$,$/$:$;$~$*$%[$?]$.$~$*${#}$%[$?]$;$\$"$^$~$*.&gt;&amp;$=` </code></pre> <p>Line by Line</p> <pre><code>`$=`; $_=\%!; ($_)=/(.)/; $==++$|; ($.,$/,$,,$\,$",$;,$^,$#,$~,$*,$:,@%)=($!=~/(.)(.).(.)(.)(.)(.)..(.)(.)(.)..(.)......(.)/,$"),$=++; $.++; $.++; $_++; $_++; ($_,$\,$,)=($~.$"."$;$/$%[$?]$_$\$,$:$%[$?]",$"&amp;$~,$#,); $,++; $,++; $^|=$"; `$_$\$,$/$:$;$~$*$%[$?]$.$~$*${#}$%[$?]$;$\$"$^$~$*.&gt;&amp;$=` </code></pre> <p>CR<b>EDIT</b>: This was written by <a href="http://search.cpan.org/~roode/" rel="nofollow">Eric Roode</a></p> http://stackoverflow.com/questions/908678/is-there-any-good-php-obfuscator 0 Is there any good PHP obfuscator? Shore 2009-05-26T02:25:28Z 2009-12-01T08:29:20Z <p>It should be free,easy to use,</p> <p>and that's all!</p> http://stackoverflow.com/questions/1534888/cf-net-app-protection-antidebug-obfuscate 3 cf.net app protection (antidebug, obfuscate) FrenkR 2009-10-08T00:00:57Z 2009-11-30T21:35:16Z <p>Is there any out-of-the box solution that protects cf.net (3.5) software against reverse engineering and unlicensed redistribution (<em>average</em> hacker protection)? Any option of packer/native wrapper?</p> http://stackoverflow.com/questions/964304/net-separate-assembly-obfuscation 0 .NET separate assembly obfuscation? al_miro 2009-06-08T10:46:56Z 2009-11-30T21:30:23Z <p>I'm using <a href="http://en.wikipedia.org/wiki/Xenocode" rel="nofollow">Xenocode</a> and want to obfuscate the main application (A.exe + B.dll) and, separately, a plug-in component "P.dll" which references B.dll. So I have two Xenocode projects with the same passphrase. For "A/B" I select to obfuscate all B classes/methods/etc. (using a filter B.*) . Then for the plug-in I select to obfuscate all "Type References" using the same filter "B.*". </p> <p>The main app loads P.dll with Assembly.Load, but gives a C++ exception [rethrow] at 0x000000 when trying to instantiate a type exported from P. </p> <p>I tried a simpler version of "P" which only references one B type, and it only works when I disable obfuscation of reference to "B.type..ctor". ( ".ctor" does not appear as an option when selecting obfuscation of B itself in the "A/B" project). However this is useless for the real P.dll which references dozens of types from B. </p> <p>Is there a known trick for matching obfuscation of assemblies referencing each other? </p> http://stackoverflow.com/questions/1807974/can-anyone-de-obfuscate-this-exploit 1 Can anyone de-obfuscate this exploit? mr-euro 2009-11-27T10:33:08Z 2009-11-27T11:47:56Z <p>I came across the following exploit due to a warning from my AV software. It originated from an adserver delivering banner ads on one of my sites.</p> <p>I have retrieved the content with Wget and copied to pastebin.</p> <p><a href="http://pastebin.com/m6fa38fac" rel="nofollow">http://pastebin.com/m6fa38fac</a><br> <strong>[Warning: Link may contain malware - Do not visit from vulnerable PC.]</strong></p> <p>Please note that you have to scroll horizontally on pastebin as the code is all on one line.</p> <p>Can anyone find out what the exploit actually does?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1800662/what-security-can-be-added-to-java-applets 5 What security can be added to Java Applets? The Feast 2009-11-25T23:29:15Z 2009-11-26T01:29:01Z <p>When building a Java Applet are there any steps that can be made to prevent a user invoking internal methods?</p> <p>Theoretically most objects can be analysed and methods can be invoked on a client machine.</p> <p>In addition to obfuscation are there any other steps that can help prevent this?</p> <p>My situation is to secure a game where the top score is sent direct from the client.</p> http://stackoverflow.com/questions/1168274/real-world-uses-for-obfuscation 10 Real world uses for obfuscation Matthew Jones 2009-07-22T21:10:07Z 2009-11-25T08:56:54Z <p>For what purposes would you want to obfuscate your code? I have not run into any real purposes other than <a href="http://en.wikipedia.org/wiki/International%5FObfuscated%5FC%5FCode%5FContest" rel="nofollow">participating in contests</a>, but I am sure there must be some intelligent and useful reasons for obfuscating source code.</p> <p>Why, in general, do you want or need to obfuscate your code? </p> <p>What real-life applications does obfuscation have?</p> http://stackoverflow.com/questions/489847/which-javascript-minifier-cruncher-does-the-same-things-that-the-one-google-use 1 Which Javascript minifier (cruncher) does the same things that the one Google uses for its JS APIs? Jader Dias 2009-01-28T23:12:07Z 2009-11-24T08:31:02Z <p>I am a Google Maps API (javascript) developer. I have noticed that Google uses a Javascript minifier that has the following features:</p> <ol> <li>Shortens variables, properties, arguments, classes, function and method names, obfuscating the code. (eg. function1 -> a, function2 -> b, function3 -> c)</li> <li>Some variables, classes, properties and methods can be marked to not be crunched, so its name remains the same as documented in the API manual.</li> <li>It is rerun in each subversion of the API, like a build task, I noticed that because of the crunched names changes from one version to another.</li> </ol> <p>I have not found in the whole internet a Javascript minifier with those features. Anyone knows one?</p> http://stackoverflow.com/questions/1459392/orm-and-net-code-protectors 0 ORM and .NET Code Protectors Akash Kava 2009-09-22T10:56:56Z 2009-11-24T06:59:00Z <p>We are about to use Code Protectors (Obsfucation as well as Native Compilation), I assume ORMs will be dependent little bit on Reflection and I am worried will Obsfucation and Native Compilation protection techniques create any problems?</p> <p>Has anyone tried successful ORM and Code Protection for any good desktop application? We are having WPF Desktop Application.</p> <p>Our primary language for development is C# and we are using our custom ORM but I want to evaluate any commercial ORM or ADO.NET EF etc as well.</p> <p>Question is not about what is Code Protection and which one I should use, I am trying to ask about the effect of protection on ORM.</p> http://stackoverflow.com/questions/106794/what-do-you-use-to-protect-your-net-code-from-reverse-engineering 10 What do you use to protect your .NET code from reverse engineering? ilitirit 2008-09-20T02:15:07Z 2009-11-24T05:59:55Z <p>For a while we were using a tool called CodeVeil. I'm just wondering if there are better alternatives out there.</p> <p>Edit: Before more people misunderstand the question, I'm aware that a determined cracker would probably be able to defeat any of these tools. I'm not too concerned about them though. These tools are just meant to stop the "casual cracker", and to stop people from stealing our company's IP. If they're good enough to get past a decent tool, they probably aren't interested in stealing our crappy code :-P</p> http://stackoverflow.com/questions/1531992/obfuscating-multiple-related-net-assemblies-with-babel-obfuscator 0 Obfuscating multiple related .NET assemblies with babel obfuscator Román 2009-10-07T14:30:36Z 2009-11-20T09:23:06Z <p>Hi</p> <p>I have two assemblies, A and B, where A depends on B. I'm trying to obfuscate both of them together, i.e. in a way it doesn't break the app with the <a href="http://code.google.com/p/babelobfuscator/" rel="nofollow">babel obfuscator</a>.</p> <p>Is there a way to do that? Apparently this obfuscator doesn't handle multiple assemblies.</p> <p>If that's an issue, which other .NET obfuscator- that handles multiple assemblies- would you recommend? </p> http://stackoverflow.com/questions/545767/hide-c-windows-application-source-code 0 Hide c# windows application source code Amr ElGarhy 2009-02-13T12:41:19Z 2009-11-20T09:19:18Z <p>I wrote a windows application using C# .Net 2.0 and i want to do something which hide the source code, so when any one use refactor tool can't see the source code. I used dotfuscator but it just changed the function names but not all the source code.</p> <p>UPDATE: I want to hide the source code, not because of hiding the key, but to hide how the code is working.</p> <p>Thanks,</p> http://stackoverflow.com/questions/1288059/how-does-dotfuscator-work-c 4 How does Dotfuscator work? [c#] Bhaskar 2009-08-17T13:49:25Z 2009-11-20T09:14:48Z <p>How does Dotfuscator work? I tried obfuscate some of my classes and it renamed the methods/class to a, b, c etc. But I can still see the code inside those methods? Is it that, I am doing something wrong?</p> <p>Is there anything that would prevent a totally block deassembling my assembly?</p> http://stackoverflow.com/questions/71146/whats-the-best-value-for-money-c-code-protection-for-a-single-developer 1 What's the best value for money c# code protection for a single developer Cliff Cawley 2008-09-16T10:49:12Z 2009-11-20T08:32:34Z <p>What's the best value for money c# code protection? Some just use obfuscation, others add win32 wrapping, some cost a fortune. So far I've come up with <a href="http://www.eziriz.com/" rel="nofollow">http://www.eziriz.com/</a> who's Intellilock looks promising. Any other suggestions? Any reasons why this is not a good idea?</p> <p>I know its impossible to completely protect but I'd prefer the ability to protect my code so that it would require a lot of effort in order to recover it. I do hope to sell my products eventually, while also releasing some for free.</p> http://stackoverflow.com/questions/1419474/is-it-worth-to-obfuscate-java-web-application 1 Is it worth to obfuscate java web application? janetsmith 2009-09-14T02:44:06Z 2009-11-19T11:06:00Z <p>Is it worth to obfuscate java web application? and why?</p> http://stackoverflow.com/questions/1747771/having-problem-with-proguard-trying-to-obfuscate-code-that-uses-spring 1 having problem with proguard trying to obfuscate code that uses Spring voldemar 2009-11-17T09:59:29Z 2009-11-17T11:35:26Z <p>My project uses spring for IoC. After obfuscation the application context fails to find the bean since it's class name has been changed. I tried to use -adaptresourcefilecontents option to get context.xml file be updated according to the class name, but it didn't work: the file wasn't changed. Any ideas?</p> http://stackoverflow.com/questions/1736405/would-it-be-so-tragic-not-to-obfuscate-my-product 2 Would it be so tragic not to Obfuscate my product? Néstor Sánchez A. 2009-11-15T02:53:10Z 2009-11-16T15:01:41Z <p>Disclaimer: I'm not sure if this is for a programming or startup forum, anyway...</p> <p>Hello, I'm building a software (a concept-mind-mapping/diagramming product in .NET) and seeing trouble with obfuscation (alteration of deliverable code to difficult decompilation): It cost money and time to make it work ok, and I think hackers will break it anyway, so...</p> <p>It would be so damaging not to obfuscate it? Maybe somebody here had the bad experience of being hacked and found a clone of his product?</p> http://stackoverflow.com/questions/804158/is-there-a-free-net-obfuscator-that-supports-command-line-operation 3 Is there a free .NET obfuscator that supports command-line operation? knorv 2009-04-29T20:38:40Z 2009-11-13T22:51:32Z <p>Is there a .NET obfuscator that fulfills all of the following requirements?</p> <p><b>Strict requirements:</b></p> <ul> <li>The obfuscator must be free to use</li> <li>The obfuscator must support command-line operation</li> <li>The obfuscator must itself be written in a .NET language so that it can be run using Mono</li> </ul> http://stackoverflow.com/questions/1568018/has-anyone-used-componentone-xapoptimizer-for-a-real-production-silverlight-appli 0 Has anyone used ComponentOne XAPOptimizer for a real production Silverlight Application? caryden 2009-10-14T18:05:44Z 2009-11-13T02:06:22Z <p>In particular any experiences using it for obfuscation? How does this affect binding, etc.?</p> http://stackoverflow.com/questions/1600190/php-code-to-obfuscate-html 1 PHP code to obfuscate HTML? Steve 2009-10-21T11:18:09Z 2009-11-13T00:49:53Z <p>I know, I know - obfuscated html/js code is useless (I read the other questions on SO), but I still want to make life harder for copy-cats of my site...</p> <p>I'm running a php based website, which generates html output. I would like the FINAL html output (which has html, js, json and uses ajax) to be obfuscated. Is there a php function for that purpose? I found <a href="http://www.ioncube.com/html%5Fencoder.php" rel="nofollow">http://www.ioncube.com/html%5Fencoder.php</a> but that relies on some of their special software to be loaded on the server - ie, a no-go...</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/310533/java-obfuscators 3 Java Obfuscators jbu 2008-11-21T23:21:50Z 2009-11-12T22:56:46Z <p>Hi all,</p> <p>I'm looking for a good java obfuscator.</p> <p>I've done initial research into the following java obfuscators: proguard, yguard, retroguard, dasho, allatori, jshrink, smokescreen, jobfuscate, marvin, jbco, jode, javaguard, jarg, joga, cafebabe, donquixote, mwobfu, bbmug, zelix klassmaster, sandmark, jcloak, thicket, blufuscator, and java code protector.</p> <p>I tried proguard and it has a really nice gui and seems really stable and is the most popular (it seems), but it seemed to not like some enumeration on a referenced jar file (not within the code I was trying to obfuscate) which was weird. Yguard seems to require some interaction with ant, which I didn't know too much about.</p> <p>Can anyone recommend a good java obfuscator? It doesn't need to be free, it just needs to work well and be easy to use.</p> <p>Please help.</p> <p>Thanks in advance. jbu</p> http://stackoverflow.com/questions/1721229/best-practice-for-obfuscating-a-c-visual-studio-dsl-solution-as-vsix 0 Best Practice for Obfuscating a C# Visual Studio DSL Solution as VSIX Phill Duffy 2009-11-12T10:11:40Z 2009-11-12T17:45:54Z <p>I was wondering if anyone has any advice for obfuscating a DSL?</p> <p>Background - We have created a DSL which we will putting into the Visual Studio Gallery as a VSIX file.</p> <p>We already use dotfuscator for our obfuscation on other projects but I would like to know if there are any best practices or issues when packaging a DSL for deployment as a VSIX</p> http://stackoverflow.com/questions/295314/eclipse-3-4-ant-task-hangs 2 Eclipse 3.4 ant task hangs FoxyBOA 2008-11-17T10:58:23Z 2009-11-11T07:22:17Z <p>When I launch ant script from Eclipse 3.4.x it print output to console until certain stage. After that it often hangs (wait forever). Last lines that I see at the screen (console) - partial output from my obfuscator.</p> <p>Under Eclipse 3.3.2 everything works fine (the same project, workspace, settings, JVM etc.).</p> <p>Does anybody have the same issue? Any thoughts how to fix it?</p> http://stackoverflow.com/questions/926172/how-to-hide-strings-in-a-exe-or-a-dll 5 How to hide strings in a exe or a dll? Winz 2009-05-29T14:10:17Z 2009-11-09T17:45:48Z <p>I discovered that it is possible to extract the hard-coded strings from a binary.<br /> For example the properties view of <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> displays all the string with more than 3 characters.</p> <p>Here is the code of a simple executable that I wrote to simply test it:</p> <pre><code>#ifndef _WIN32_WINNT #define _WIN32_WINNT 0x0501 #endif #include &lt;stdio.h&gt; #include &lt;tchar.h&gt; #include &lt;Windows.h&gt; int _tmain(int argc, _TCHAR* argv[]) { _TCHAR* hiddenString1 =_T("4537774B-CC80-4eda-B3E4-7A9EE77991F5"); _TCHAR* hiddenString2 =_T("hidden_password_or_whatever"); for (int i= 0; i&lt;argc; i++) { if (0 == _tcscmp(argv[i],hiddenString1)) { _tprintf (_T("The guid argument is correct.\n")); } else if (0 == _tcscmp(argv[i],hiddenString2)) { _tprintf (_T("Do something here.\n")); } } _tprintf (_T("This is a visible string.\n")); //Keep Running Sleep(60000); return 0; } </code></pre> <p>The strings can clearly be extracted from the corresponding executable:<br /> <img src="http://img38.imageshack.us/img38/698/stayhiddenproperties.png" alt="alt text" /></p> <p>I think that it is a little too easy to find the strings.</p> <p>My questions are:</p> <ol> <li>How to <strong>simply</strong> hide <em>hiddenString1</em> or <em>hiddenString2</em> in the executable?</li> <li>Is there a more secure way to use "cheat code" than with some obscure hidden input?</li> </ol> http://stackoverflow.com/questions/1697025/java-proguard-library-doesnt-work-after-optimization 0 java proguard: library doesnt work after optimization matt 2009-11-08T16:21:17Z 2009-11-09T15:32:52Z <p>hello, i am optimizing a jar with proguard, but it crashes after optimization. here is my proguard task:</p> <pre><code> &lt;proguard&gt; -injars ${dist}/${jarname} -outjars ${dist}-proguard/${jarname} -target 5 -libraryjars '${java.home}/lib/rt.jar' -dontobfuscate -optimizationpasses 4 -overloadaggressively -repackageclasses '' -allowaccessmodification -keep public class * { public static void main(java.lang.String[]); } &lt;/proguard&gt; </code></pre> <p>as soon as i put in the -dontoptimize option, it works.</p> <p>according to the stack of the exception it crashes when accessing a static public member of a class with a nullpointer. here is the code:</p> <pre><code>public static Texture ring, dust, spikering, thinring, crystal, clouds; public static void init() { Field [] fields = TexturePool.class.getDeclaredFields(); for (Field field : fields) { if(field.getType() == Texture.class) { field.set( null, /*imagine new object here*/ ); } } } </code></pre> <p>thanks!</p> http://stackoverflow.com/questions/682292/tools-that-obfuscate-net-microsoft-office-add-in 2 Tools that Obfuscate .NET Microsoft Office Add-in Binary Phile 2009-03-25T16:06:08Z 2009-11-09T14:30:54Z <p>I'm working on a team developing a .NET Microsoft Office Add-in. We're looking at obfuscation solutions to help protect our licensing procedures. We're primarily looking at tools like Dotfuscator Professional and smartassembly.</p> <p>My first question is whether anyone has experience using smartassembly with an Office add-ins? Dotfuscator Community Edition does not work with these, hence looking at Professional, but there is no mention of this wrinkle in smartassembly's sales materials. Any experience in that regard?</p> <p>My second is whether anyone has automated the use of smartassembly with MSBuild, that is, without the benefit of Visual Studio being installed.</p> <p>I respectfully want to let responders know not to waste their time commenting about the relative merits of obfuscation. I am up to date on the latest threads regarding that issue. In days of yore, kings built castles yet these sometimes fell. I still lock my front door every morning when I go to work.</p> http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start 0 Encrypt and compress html-codes in iPhone app bundle, unpack on first start avocade 2009-03-04T22:20:25Z 2009-11-09T08:46:24Z <p>My client wants to encrypt/compress the html-code for their medical books in the iPhone bundle, to protect their IP. </p> <p>Whats is a good way to prepare this file for the app bundle, and what complementary libraries (C, Obj-C) should I use to do the decryption and decompressing on the first launch of the app? </p> <p>Copying the file to ~/Documents, then working on it seems like the best solution. Thoughts?</p> http://stackoverflow.com/questions/1676012/should-i-be-obfuscating-database-ids-from-my-users 11 Should I be obfuscating database IDs from my users? Darryl Hein 2009-11-04T19:22:24Z 2009-11-07T18:18:41Z <p>I'm being told that I shouldn't be using database IDs directly in HTML code in web applications.</p> <p>Currently I use the IDs on things like table row IDs (tableRow-454 where 454 is the ID of the row in the DB), in hidden or selects fields in forms or in URLs. (I'm not referring to telling people visually on a page that they are ####.)</p> <p>The recommendation I was given was to use some math to obfuscate the ID from the user. I'm thinking this will only make things more complicated and add unnecessary complexity. But I can see some good reasons to make it more difficult to determine a database ID from the HTML.</p> <p>Do you obfuscate the IDs from the user? Or do you care?</p>