1
vote
2answers
139 views
Can anyone de-obfuscate this exploit?
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.
I have retrieved the content with Wget and copied to …
5
votes
1answer
33 views
What security can be added to Java Applets?
When building a Java Applet are there any steps that can be made to prevent a user invoking internal methods?
Theoretically most objects can be analysed and methods can be invoked on a client …
17
votes
13answers
483 views
techniques for obscuring sensitive strings in C++
I need to store sensitive information (a symmetric encryption key that I want to keep private) in my C++ application. The simple approach is to do this:
std::string myKey = …
11
votes
12answers
399 views
Should I be obfuscating database IDs from my users?
I'm being told that I shouldn't be using database IDs directly in HTML code in web applications.
Currently I use the IDs on things like table row IDs (tableRow-454 where 454 is the ID of the row in …
2
votes
6answers
135 views
Would it be so tragic not to Obfuscate my product?
Disclaimer: I'm not sure if this is for a programming or startup forum, anyway...
Hello,
I'm building a software (a concept-mind-mapping/diagramming product in .NET) and seeing trouble with …
1
vote
1answer
40 views
having problem with proguard trying to obfuscate code that uses Spring
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 …
0
votes
1answer
24 views
Best Practice for Obfuscating a C# Visual Studio DSL Solution as VSIX
I was wondering if anyone has any advice for obfuscating a DSL?
Background - We have created a DSL which we will putting into the Visual Studio Gallery as a VSIX file.
We already use dotfuscator for …
0
votes
2answers
38 views
java proguard: library doesnt work after optimization
hello, i am optimizing a jar with proguard, but it crashes after optimization.
here is my proguard task:
<proguard>
-injars ${dist}/${jarname}
-outjars …
0
votes
3answers
85 views
Obfuscating your jquery code. [closed]
Possible Duplicate:
How can I obfuscate JavaScript?
Can someone please suggest a method to obfuscate the jquery code used in a website. Is it correct to do so from the functionality point of …
10
votes
17answers
472 views
Real world uses for obfuscation
For what purposes would you want to obfuscate your code? I have not run into any real purposes other than participating in contests, but I am sure there must be some intelligent and useful reasons …
1
vote
4answers
158 views
PHP code to obfuscate HTML?
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...
I'm running a php based website, which …
3
votes
7answers
46 views
cf.net app protection (antidebug, obfuscate)
Is there any out-of-the box solution that protects cf.net (3.5) software against reverse engineering and unlicensed redistribution (average hacker protection)? Any option of packer/native wrapper?
1
vote
4answers
134 views
How to obfuscate a java based project
I have created a java based project using Netbeans as an IDE. Now I want to obfuscate my project. How can this be done?
0
votes
1answer
30 views
Un obfuscate URL using mod rewrite.
I work for a company that used to have a polocy of obfuscating URLs for articles which you needed to register to use. So they would have something like
/story.php?story_id=Z_ZXYZ
which there was …
0
votes
4answers
87 views
Obfuscating multiple related .NET assemblies with babel obfuscator
Hi
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 babel obfuscator.
Is there a way to do that? …
