obfuscation

Obfuscate javascript with inline PHP?

I'm searching for a javascript obfuscator. Though I've found many obfuscators, no one so far seems to be able to handle (ie ignore) inline php code. Example of what I mean by inline php code: var my_javascript_variable = <?php echo $my_php_variable; ?>; Is this possible to obuscate, and if so, does anyone know of such a tool? ...

Is it enough to check for customer existence in DB after IONCUBEing the script?

I'm about to release my script ,, But i want to make sure that i'm doing it the right way .. I'll IONCUBE the script to reserve my rights or use fopo.com.ar to obfuscate the script ( btw, what is your opinion about fopo , is is better than asking customers to install IONCUBE?) .. is it enough to call my website from within the script a...

Android ==> Obfuscation?

Possible Duplicate: Android and obfuscation How can Obfuscate an android app? I have never used this technique all i know is that this is a way to prevent others to convert the apk file back to my source. So how can i achieve this? I'm using a mac ...

Please refer a source code level (C#) obfuscator tools

Possible Duplicate: Is there any program that obfuscates C# source code? At first, please note I don't want a .Net obfuscator which works with assemblies. Actually I tried nearly all such tools and after the processing, my application doesn't work normally any more. And the worst thing is maybe there are other hidden caused pr...

How to protect my php code

I have finished my new php script, and I'm about to sell it. I want to encrypt/encode/obfuscate or any thing that will enable me to protect my code. I read every single post here about this matter, but I didn't get any clue. Is there any FREE tool I can use? Do you have other ideas on how to protect my code, so that nobody can resell it...

Android & Proguard ???

I am trying to use progurard with my android applications. The proguardGui accepts an input, and an output, the input requires a jar file. but the APK file for android doesn't contain any jar? I tried passing the apk file, and also the dex file inside the apx, but proguard doesn't accept them as an input. proguard only accepts jars, ear...

How can I make sure someone is not sending fake data ?

Hey guys, I've been reading Stack Overflow for quite some time, but this is my first posted question. I have this tracking program written in C# which collects information about local computer usage and sends them to a server. The data is XML-formatted, sent once per ~10 minutes. My problem: no matter how I encrypt the XML data (be it...

Proguard: How not to optimize classes from a library

I've got a JavaME project here in which I had to include a given library. I'm using Netbeans 6.8, so I just added the library to the project. The classes of the library are then correctly packed into the resulting jar-file. My problem now is that the classes of this library must not be touched by the Proguard obfuscator. So I've tried ...

Obfuscate Img Src in HTML

I need a way my image sources to be hard to read. Currently I have <img id="testImg" src="http://images.mydomain.com/sample.png /> and I need it converted to something like: <img id="testImg" src="javascript:xorDecode('3233435jh45h3232kl232kl2323', '32434mfr')"/> Is this possible? P.S. And I want to to so for around 200 KB variou...

How to encrypt a program for defense against disassembly?

I need to protect my program from disassembly. The first attempt would be by encrypting the program and decrypting its parts when needed. Perhaps encrypting again when decrypted code is executed. Please give me a clue, how create this type of defense. Obviously without assambler this task is difficult, but I haven't found many resource...

c# source obfuscation techniques

Hey all, I'm looking for ways to obfuscate the following c#/silverlight source code: if (searchBox.Text.Equals("string literal")){ MessageBox.Show("another string literal"); } So far all I can come up with to hide it is encoding the strings as arrays of ascii... Thanks EDIT All I want is for the source code to be un...

Symbol hiding in static libraries built with Xcode/gcc

I'm trying to figure out whether I can build a static library that hides all of its internal objects and functions, etc, except for the interfaces I want to export. I'm experimenting with Xcode (gcc 4.2). I've used the __attribute__((visibility("hidden"))) attribute on some C++ classes per this documentation. I've also defined little he...

Help me choose .net obfuscator program ?

Dear Guys, I have written a program in vb.net 2008 (using .net 3.5). It's a decent size program. One part of this program is to access an online database and encrypt/decrypt files. To access db I use a hardcoded password. To encrypt/decrypt files I used a hardcoded key. No matter what I do I would need to hardcode one of the two things ...

Protect Greasemonkey scripts?

I know that anything that is downloaded and is in the user's possession is going to be pretty hard to protect, but I'm just wanting to hear opinions. I'm thinking of selling a script (made with Greasemonkey...), and I want to be able to prevent the user from easily viewing the source code, or sending it to others. Thanks in advance. ...

Why obfuscate code?

So something that has been nagging on me both through observations of this website and through my current employer... Why on earth do engineers obfuscate their code? Is it truly that hard to perform well enough to keep a job? The only benefits I have noticed from it are... none. Whereas I have countless emails from QA staff to dev's as...

How can i update my postbuild file??

Hii, I want to synchronize my postbuild file with the source file, like if any source file will deleted or removed then it will automatically get to know about. So, it will not show me any error or need to recreate postbuild file again.. If anyone use the xenocode Postbuild Add-on for visual studio. This will automatically create the ...

Ideas on Protecting Web App data sources

I'm working on a new web app where a large amount of content (text, images, meta-data) is requested via an Ajax request. No auth or login required for a user to access this. My concern is that you could easily lookup the data source URL and hit it directly outside the app to get large data. In some ways, if you can do this you could p...

Salamander .NET Linker - How does it work?

I'd like a step through of how the Salamander does what it does? I will include a few points im particularly interested in - Link On Demand The linker starts with the entry methods (which you can configure), and recursively walks the call graph to link only the required bits of MSIL code. Unused code will not be linked into the...

How can I catch the following obfuscated email addresses in PHP?

Consider the following script that contains obfuscated email addresses, and a function that attempts to replace them based with ***** by using regex pattern matching. My script attempts to catch the words: "at", "a t", "a.t", "@" followed by some text (any domain name), followed by "dot" "." "d.o.t", followed by a TLD. Input: $str[] = ...

deobfuscator for .Net

Do you know any good deobfuscator for .Net? ...