I am getting the following error while obfuscating my application.
How can i define the output jar in my build.xml?
[java] Shrinking...
[java] java.io.IOException: The output jar is empty. Did you specify the proper '-keep' options?
[java] at proguard.shrink.Shrinker.execute(Shrinker.java:148)
[java] at proguard.ProGuard.shr...
I am upgrading my development environment from Netbeans 5.5 to 6.9. Along with that comes a change from Proguard 3.5 to 4.4 for obfuscation of my J2ME apps. Where before my projects built fine, I now get warnings about not being able to find referenced classes.
Warning: class1: can't find referenced class class2
Warning: class1: can...
Im writing a way of checking if a customers serial number matches my hard coded number. Is there a way of making this as hard to read as possible in case an undesirable gets their hands on the code?
I am working in java.
For instance (pseudo code)
if (x != y) jump out of code and return error
Cheers , apologies if this is a bit of ...
If one will release clickonce version, how can it be obfuscated by dotfuscator?
.net application
...
when using proguard, it seems to obfuscate entire name spaces that I am merely including. Can I tell it to only obfuscate my code and not all the libs im using? Some of the libs rely on reflection of sorts.
...
I'm in the process of exploring a partnership with a small company. The company is looking for an algorithm that can improve their profits and I have some prototype software that can help them. The core of my software is very confidential and if the company gets a hold of it, then they will certainly not need me. I'm definitely going to ...
Hi,
I have a desktop application developed in C#.NET, with an encrypted database.
The encryption password is hard coded in the application code.
How can I hide this password, since the code can be accessed through
a .net disassembler?
Maybe obfuscate the code could be a solution, but how do I create a setup for the application with t...
Possible Duplicates:
How can I obfuscate JavaScript?
What do you use to minimize and compress JavaScript libraries?
hi all,
2 questions:
i'd like to compress my code, anyone knows which compressor the guys from jquery are using?
or is there any free script? (i'd like to use the compressor using an automated asp-script, so...
Hi all,
is it possible to obfuscate or scramble a column in SQLServer 2008 R2 without having to use encryption or some highly ineffecient custom made function that does substrings ? :)
greetings,
Tim
...
hello,
thanks for your attention and precious time.
Please mention some free javascrpt obfuscator software that can compress, obfuscates and encode javascript for protection. I serached but could found web based only and those which are free and desktop are not good. Please guide and help me.
thanks
...
I tried the standard DotNetObfuscator that comes with Visual Studio 2010 on my code.
I did not change any standard settings on the code. I am a little puzzled by the behaviour of this tool. I tried to compare the values by loading both assemblies in reflector.
Somethings have definitely changed, but I am stil able to read the method as...
Hey.
I've got VS2008 professional edition installed and can't find Dotfuscator. I also can't find anywhere to download the community edition. It seems that Dotfuscator should already integrated into VS2008, but I only have other tools visible such as Reflector. Is there a way to download Dotfuscator separately?
Thanks
...
Can I change the following code and safely obfuscate it ?
or that I must exclude it from obfuscating (e.g. stackoverflow 2555355 obfuscating-asp-net-dll / 2555497#2555497 )
Dim fontNames As New ArrayList
. . .
Me.myCtrlCmbFontName.DataSource = fontNames
Me.myCtrlCmbFontName.DisplayMember = "mcpGetName" ' <- Here I get a warning
Pub...
Visual Studio 2010 code analysis fails to run now that we've incorporated a 3rd-party assembly into our project.
Project : error : CA0055 : Could not
load C:\Programming\MyAssembly.dll.
Project : error : CA0052 : No targets
were selected.
Project : error :
CA0058 : The referenced assembly
'TheirAssembly, Version=1...
I got this code from somewhere. It prints the map of India, But how this code works? I can't understand anything of this. If somebody knows, please help me to understand this.
#include "stdio.h"
main()
{
int a,b,c;
int count = 1;
for (b = c = 10;
a = "- FIGURE?, UMKC,XYZHello Folks,\
TFy!QJu ROo TNn(ROo...
I was reading another question on SO (zen of python), and I came across this line in Jaime Soriano's answer:
import this
"".join([c in this.d and this.d[c] or c for c in this.s])
Entering the above in a python shell prints:
"The Zen of Python, by Tim Peters\n\nBeautiful is better than ugly.\nExplicit is
better than implicit.\nSimple ...
Hello,
I'm working on a project for a client in which the client owns the source code that I develop. I plan on purchasing and using a 3rd party .NET library in this project. When I purchase the library, I have the right to use it royalty free on as many sites as I like. However, the library uses a license key that must be set in a pro...
Suppose I have a class, and I want to reference some elements in the ' __dict__ (for instance, I want to copy the dict and delete the attribute that cannot be pickled), from inside the class.
Problem is, those attributes are "private" so my code ends up looking like so
class MyClasss(object):
def __init__(self):
self.__pr...
Hi
Is there any tools that can rename de-obfuscated code to readable code for .NET dlls ?
OBFUSCATION = convert original variable names, namespaces to non-readable variable name, also changing the control flow to make it hard for crackers to guess the original code
DE-OBFUSCATION = reverse process of obfuscation. convert non-readable v...
I have to extract values from a variable that may be None, with some defaults in mind. I first wrote this code:
if self.maxTiles is None:
maxX, maxY = 2, 2
else:
maxX, maxY = self.maxTiles
Then I realized I could shorten it to:
maxX, maxY = self.maxTiles if self.maxTiles is not None else (2, 2)
But then I realized this migh...