1
vote
2answers
62 views
Better obfuscating in Visual Studio for solutions with many projects?
I have a solution with many projects, which leads to many dll files.
My question is, is this an obstacle when obfuscating and should I optimize this in some way?
Or it is just a matter of …
1
vote
4answers
53 views
.Net Component for JavaScript Obfuscation?
Are there any .Net components for obfuscating JavaScript? I'm generating JavaScript dynamically & emitting via ClientScript.RegisterClientScriptBlock. I'd like to make it more difficult for others …
0
votes
11answers
267 views
How to protect Java codes against decompiler ?
As we know , there are a lot of java decompiler tools which can convert .class to .java file.
Therefore,we need to protect our .java files against decompiler. I know this is a big topic,and maybe …
-1
votes
4answers
105 views
How to create own dotnet obfuscator
I know that dot net dlls and exe contain their assemblies with them so every body can extract code from it. so to tell me how can i create my own dotnet obfuscator and tell me if their exist any other …
2
votes
3answers
266 views
What does this obfuscated Perl code do? [closed]
What does this do?
…
0
votes
2answers
74 views
How can I obfuscate a Symfony PHP Web App?
Hello,
I am looking to distribute a symfony web app, but don't want to reveal its source code.
I know it is tough to obfuscate PHP, but I was wondering if there are any closed or open source …
1
vote
2answers
159 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
37 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 …
1
vote
1answer
66 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 …
3
votes
6answers
150 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 …
0
votes
1answer
32 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
49 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
102 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 …
11
votes
12answers
408 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 …
17
votes
13answers
499 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 = …
