Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
277 views

Is obsfucation worthwhile?

Does it make sense to obsfucate Javascript? The only clear benefits I can see are to hide code (albeit non-proprietary in nature since it's client-side) from prying eyes and as a minimizer since ...
5
votes
3answers
286 views

Javascript Trojan Dissection

I've recently been playing with allot of Javascript and started to consider that I couldn’t encounter a piece of Javascript that I wouldn’t be able to debug. Well I was pleasantly surprised and ...
1
vote
1answer
697 views

Proguard retrace tool's output

I'm experimenting with proguard now that it's easier to use from within eclipse. I've exported a signed version of my app with a deliberate bug that causes a crash for testing. After I get the stack ...
1
vote
6answers
272 views

Minifying and Obsfucating CSS similar to Javascript

I know there are several tools out there that are capable of obfuscating JavaScript files such as by turning a simple functions like: function testing() { var testing; var testing2; ...
0
votes
1answer
58 views

Obfuscator for .net how can I see result of using it

I've downloaded Eazfuscator, installed it, and drag and drop my project into the indicated green field in Eazfuscator. Then I rebuild my solution in release mode and in Release folder. Using Total ...
0
votes
1answer
74 views

Java: Code Obfuscator for any Java Project

I am searching for Java code obfuscator like the one in Netbeans J2ME Project and in Android Project in eclipse- to works with any (not only J2ME) java project in eclipse and netbeans. Is there any ...
0
votes
1answer
90 views

Proguard folder empty

I am using Eclipse to build my Android Application. When I export the project as an Android Application I can use my keystore and key to sign the apk just fine. Before exporting I also added the ...
0
votes
0answers
98 views

PHP obsfucation

I was wondering if it's possible to relatively fast write a simple obsfucator for PHP (in PHP) like this one: http://www.gaijin.at/en/olsphpobfuscator.php Example input: <? function tmppass($s = ...
0
votes
0answers
295 views

Obsfuscating C# code [closed]

Possible Duplicates: Protect .NET code from reverse engineering? What do you use to protect your .NET code from reverse engineering? How can I protect my .NET assemblies from decompilation? ...
0
votes
3answers
310 views

Problem regarding inline assembly and function overwriting

Somebody over at SO posted a question asking how he could "hide" a function. This was my answer: #include <stdio.h> #include <stdlib.h> int encrypt(void) { char *text="Hello World"; ...