obfuscation

Protect private key in Qt application

I have a Qt application written in C++ that uses a SSL-connection (QSslSocket) with another application for extra security. However, the application has a private key embedded in it. With applications like Process Explorer it's really easy to fish out the private key. (Properties of file -> Strings) Security is not very important for m...

Debugging java obfuscated code

We are going to obfuscate our project but don't want to lose the ability of remote debugging and hotswapping. Is it possible? Which tools can handle this? I'd be happy with simple obfuscation - just renaming classes/methods/variables. [Edited] We're using Intellij IDEA but wasn't able to find any plugin for this task. ...

How safe is javascript e-mail obfuscation really?

In order to put e-mail addresses on my sites, I use this Javascript: function showEmailLink(user, domain, linkText) { if (linkText == "") { linkText = user + "@" + domain; } return document.write("<a href=" + "mail" + "to:" + user + "@" + domain + ">" + linkText + "<\/a>"); } so that in my HTML I can write this: please send m...

Is there such a thing as a javascript deminifier (deobfuscator)?

This question is exactly the opposite of http://stackoverflow.com/questions/489847/which-javascript-minifier-cruncher-does-the-same-things-that-the-one-google-use I want to learn how google does it's loading so I can build my own with non-popular JS toolkits. ...

Experience with protecting PHP code

Hello, I am aware of that there are a number of code obfuscators/licensing programs for PHP. I wanted to know if anyone has actually used these and what their experience has been. Please note I do not want to know the solutions available. I want to know your experience using one of these solutions. Is it worth investing say 200$ purcha...

Obfuscation tool with click-once support

I have found a lot of obfuscation tools with no clickonce support. Could you provide vendors with click once support? I would like to deploy obfuscated software at once without adding ANY extra line of code (pre-buid, post build etc) p.s. I believe that is software related ...

hide password in string

I am making a custom ftp client that logs onto a single ftp site and goes to a specific folder to avoid users' putting files in the wrong place. I'm not super concerned about it, but the password is just a string to initiate the new ftp object. FtpClient ftp = new FtpClient("www.markonsolutions.com", "user", "password"); What is the ...

C# add a reference using only code (no IDE "Add Reference" functions)

Hello, I am writting a plugin for a program, and I want to put my code inside a DLL so I can share the plugin freely without exposing (giving away) my code. Here is the basic structure i have access to : using System; public class Plugin { public void Initialize() { //do stuff here doWork(); } } Then i jus...

Obfuscation (or other intelectual rights protection) for Assemblys (DLLs) compatible with Framework 4

Hello, the title says it all, I need an application for obfuscation (or other intelectual rights protection) of Assemblys (DLLs) compatible with the new Framework 4. It should be free, and not require extensive changes in my application code. Any recomendations? PS: I know a bunch of others for framework3.5 and before, cant find one f...

Freeware tools for obfuscating SWF

Do you know any? ...

Obfuscating Setup package content

I have a multi-project Visual Studio 2008 solution. I would like to obfuscate some of the project outputs before they are built into the Setup file using Dotfuscator. So I would like to be able to: Be able to select what to obfuscate Create a Setup package that contains the already obfuscated code Verify if the obfuscation was a succ...

Is it worth to obfuscate java web application?

Is it worth to obfuscate java web application? and why? ...

Fail-safe way of round-tripping JVM byte-code to text-representation and back

I'm looking for a fail-safe way to round-trip between a JVM class file and a text representation and back again. One strict requirement is that the resulting round-tripped JVM class file is exactly functionally equivalent to the original JVM class file as long as the text representation is left unchanged. Furthermore, the text represen...

ORM and .NET Code Protectors

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? Has anyone tried successful ORM and Code Protection for any good desktop application? We are having ...

Compress/obfuscate URL to use in rewrite?

I need to add the URL of a 3rd-party website to a url, but I'd like to compress/obfuscate the host part. Are there any algorithms I can use which will hash the url, but also allow un-hashing? For example; the url is http://www.twitter.com/myusername. What I'm serving currently (as a html link) is http://mysite.net/bounce/www.twitter.com...

Secure swf using flash obfuscator?

In order to protect swf files, prevent decompile and reading the action script CODE, now I am looking for best/popular(being used by big companies) flash obfuscator. Could you recommend some of the best flash obfuscators that you know? (I am not sure if its an appropriate question to ask here. But its very important for action script p...

decypher with me that obfuscated MultiplierFactory

This week on comp.lang.python, an "interesting" piece of code was posted by Steven D'Aprano as a joke answer to an homework question. Here it is: class MultiplierFactory(object): def __init__(self, factor=1): self.__factor = factor @property def factor(self): return getattr(self, '_%s__factor' % self.__class_...

How to encrypt query strings in aspx.net?

Title I hope says it all: How do I encrypt query strings in aspx.net? P.S. I realize that this does not offer security. I'm just looking to obfuscate a puzzle. P.P.S Though I marked CKret's answer as the correct one (for the question as worded I believe his is the most correct answer). However, for myself, I'm just going to try ChoasP...

Pre-Compiled websites code security

How far pre-compiling a website or project in VWD is safe ? I know that Reflector can retrieve the whole thing again (as it will be IL at the end of the day), and I heard that obfuscation won't go so far (not sure) there is tools to deal with obfuscation. Is there a good solution to guarantee that clients don't get to the underlying So...

String encryption in a .NET assembly

Possible Duplicate : Free obfuscation tools for .NET Are there any free tools similar to Dotfuscator? I want to encrypt or obfuscate certain strings inside my .NET assembly. ...