Figuring out how a program works when that program has been deliberately made difficult to understand

learn more… | top users | synonyms

0
votes
1answer
14 views

Reproducing JIRA's popups : sticky buttons, overflow

I am trying to implement the modal dialogs of JIRA but I'm having a hard time reverse-engineering their code as all JS is minified and packed... What I like about their solution is that you can have ...
-1
votes
0answers
49 views

Decoding obfuscated spam program hidden in website [closed]

I was sent the following code by a friend. He found the file global.php which had the code inside one of the folders in his website after receiving an alert by the servers that too many emails were ...
0
votes
0answers
19 views

Trouble getting GWT function names deobfuscated

We are having a real hard time getting our stack trace deobfuscation to work correctly. Whenever we have an exception, our stack trace looks like this: 2013-05-13T20:43:36.990952+00:00 stg-cardit1 ...
-6
votes
2answers
40 views

A human-readable, uncompressed version of the Google Analytics (ga.js) JavaScript [closed]

This one: http://google-analytics.com/ga.js We can throw it into jsbeautifier.com, which helps, but those variables and function names are still compressed and hard to understand. What I'm looking ...
3
votes
1answer
77 views

How to decrypt a javascript file

I just discovered a virus in my computer that uses a .js file to attack. I opened the file in notepad to check out the code, but it is completely encrypted. I can see some data that makes sense (such ...
-1
votes
0answers
30 views

PHP Decode help ${“GLOBALS”}[“hpgxlyf”], ${“GLOBALS”}[“iflfddsbhow”], ${“GLOBALS”}[“000000”] [closed]

can someone decode this strange PHP code or tell how to decode it using a simple PHP script? <?php ${"GLOBALS"}["hpgxlyf"]="url";${"GLOBALS"}["iflfddsbhow"]="output";function ...
21
votes
2answers
306 views

Why use 'function adress == NULL' instead of 'false'?

Browsing among some legacy code I've found such function: static inline bool EmptyFunc() { return (void*) EmptyFunc == NULL; } What are the diferences from this one: static inline bool ...
-2
votes
4answers
81 views

Decode script file(.js) [closed]

I have the following encrypted script: eval(function (p, a, c, k, e, r) { e = function (c) { return (c < a ? '' : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + ...
1
vote
2answers
79 views

lua code deobfuscation

I've recently downloaded some lua code and what I found inside was some obfuscated string. That made me wonder what sort of obfuscation technique was used there. Does anybody have an idea? local ...
0
votes
0answers
50 views

Obfuscating names with human readable names

I have to obfuscate human names with other unique human names So say the twitter handle Jane Doe might be mapped to Sally Bates This mapping must be unique: 1-to-1 I need to do this because of ...
0
votes
1answer
70 views

Mono.Cecil - obfuscated malicious code

In this great article (http://eatplayhate.wordpress.com/2010/07/18/mono-cecil-vs-obfuscation-fight/) the author claims that Mono.Cecil It’s not perfect, but it translated a good 90% of the functions ...
4
votes
1answer
231 views

How to de-obfuscate the ctk.c code the winner of 2001's IOCCC?

I have seen ctk.c obfuscated code, but How can I start to de-obfuscate it? #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/time.h> #include ...
3
votes
0answers
468 views

Linux based virus / malware source code in C [closed]

I am working on project of metamorphic code generator. In order to test this project I need some virus source codes in C. Since I have developed this tool on Linux. I need virus codes which are Linux ...
0
votes
3answers
133 views

Decompling .net assembly

Hey i have done a few of decompiling in .net as i am learning c# so it helps me to see codes as it helps a lot. But lately i have come acrossed few program that i know are .net but in reflector show ...
570
votes
4answers
48k views

Obfuscated C Code Contest 2006. Please explain sykes2.c

How does this C program work? main(_){_^448&&main(-~_);putchar(--_%64?32|-~7[__TIME__-_/8%8][">'txiZ^(~z?"-48]>>";;;====~$::199"[_*2&8|_/64]/(_&2?1:8)%8&1:10);} It ...
0
votes
2answers
191 views

How to obfuscate an 11-char string? [closed]

I have an alphanumeric string which its length is 11 that needs to be obfuscated where the obfuscated string should address the following conditions: - It should remain in an 11 chars length. - It ...
3
votes
1answer
85 views

Constant folding in the preprocessing stage

I have a piece of C code I need to deobfuscate. It contains a bunch of tricky macros. I ran the code through C preprocessor and indent and now it looks similar to this: switch (9263 + 1505) { case ...
0
votes
0answers
25 views

Adding obfuscated dll to VS installer

I'm using an obfuscator (Dotnet reactor). it integrated with VS. Building the main executable project works fine but after builing the obfuscator will change the output dll and exe files and then the ...
0
votes
0answers
431 views

Deobfuscate Javascript? [closed]

I had my precious javascript obfuscated here. I THOUGHT I had saved a local version with my original code, but it turns out there is ONE line that is obfuscated on the local version. I realize it ...
-2
votes
3answers
861 views

how to protect .NET executable from de4dot or similar tools?

I have tried obfuscation with following obfuscators but none is successful against de40 tool [https://bitbucket.org/0xd4d/de4dot/] It's really painful to see how easy this is.. just drag the ...
1
vote
2answers
101 views

Post deobfuscated Javascript code

I used this tool http://code.google.com/p/cremebrulee/ to make obfuscated code more readable and the output is looking quite nonsensical function ____(_O0){eval(unescape(_O0))} var ...
0
votes
2answers
182 views

PHP eval() accepts something that would be parse error outside eval(). How can that be?

I'm playing with some PHP obfuscation/encoding tool that works without any server-side loader, and I surprisingly found out solution that I cannot decode. I consider myself generally well informed ...
1
vote
3answers
323 views

Deobfuscating some PHP code [closed]

I'm trying to deobfuscate this PHP code: <?php if(!function_exists("TC9A16C47DA8EEE87")){function ...
0
votes
3answers
328 views

javascript injected into site hack

My friends word press site was attacked and a bunch of php files injected with some eval statements, which i've inflated and decoded, but it has lead me to the below javascript. Anyone any ideas how ...
0
votes
1answer
191 views

UglifyJS / UglifyJS2 - How hard it is to decrypt / revert-engineer the result?

Is there any tool already available that could revert the optimized blob back into human readable, easily-understandable state?
5
votes
2answers
195 views

Java Code Security [duplicate]

Possible Duplicate: Do you obfuscate your commercial Java code? Is there any way other then obfuscation to protect jars from being opened by someone else? The thing is that I don't want ...
1
vote
0answers
101 views

.NET Deobfuscate Crypto [closed]

Hey guys I'm having some troubles finding a deobfuscator for Crypto Obfuscator. de4dot used to support it but now it haven't been updated for like 4 months. Do you know any good program or is there ...
6
votes
2answers
563 views

Can Someone Tell Me Why This Is malicious..?

A friend of mine's site was being listed as malicious, and we found some obfuscated code that had been injected into his index.php without him knowing. I deobfuscated the code down two levels and ...
1
vote
1answer
107 views

Reflexil deobfustication error

I'm trying to modify a .net application and I'm new to this. First step is attempting to deobfuscate the code using reflexil and I get the following error: Reflexil is unable to clean this assembly: ...
0
votes
3answers
79 views

Accessing the package with the same name as a class in a *.jar

I have a *.jar file and i want to use some classes from it. Among the others, it contains class "a" from package "com.a.a" and package "com.a.a.a.a.e" with class "a". When i try to access the class as ...
1
vote
0answers
143 views

How can I retrieve the source code of a DLL that is protected with Eazfuscator.NET?

I use a reflector to retrieve the source code of C# DLLs. However, I have a DLL that is protected with Eazfuscator.NET. The reflector cannot retrieve the code from this DLL. How can I retrieve the ...
0
votes
1answer
72 views

Proguard function names ambiguity

I need to know is there some option to prevent giving same name to different functions during obfuscation. Mapping file: org.apache.http.impl.client.cache.BasicHttpCacheStorage -> ...
0
votes
4answers
612 views

De-obfuscate Javascript code to make it readable again

I hate to bring this here, while doing the learning of obfuscating the JS code, I encoded my code and then over wrote the orginal one without any backup :) Following is my obfuscated code. var ...
0
votes
1answer
166 views

Android log deobfuscation/retrace

I need some help with Android log file deobfuscation . The problem is that if I have an exception like: ... 10-16 10:03:10.488: E/AndroidRuntime(25723): Caused by: ...
0
votes
1answer
169 views

javascript De-Obfuscate GWT

does anyone know a tool to de-obfuscate the javascript code here: https://adwords.google.com/o/Targeting/deferredjs/E274D5492EC18DBF7224C8750D1F62C6/10.cache.js (this url changes, so I posted it in ...
2
votes
3answers
527 views

How to deobfuscate jar file [closed]

Is there is any open source tool for deobfuscation? Not able to read the decompiled files its showing class/method as A/B/C etc
0
votes
2answers
394 views

Android how to read obfuscated java code after getting thrugh reverse engineering

i got the java classes from apk after using some tools like dex2jar and JD-GUI. As everybody knows java byte code can be converted to java classes back so mostly it is optimized and obfuscated through ...
0
votes
3answers
501 views

Best Java deobfuscation tools as of date - [ques Closed] [closed]

we have obfuscated our java source code and currently working on it, so make our source fool proof what are all thing to be done while obfuscation ?, how it can be prevented from de-obfuscation? and ...
0
votes
2answers
132 views

Is there a harder to break way to obfuscate a javascript function than hieroglyphy?

I'm developing an online chess variant game. I want to create a javascript function that has the purpose of communicating to the server on behalf of the player the exact time spent on a move. This ...
0
votes
1answer
44 views

Dictionary for automated variable renaming

I am working on a Java deobfuscation tool and one of the features I plan to implement is to automatically rename classes and methods with more memorable names. My plan is have a text file with a ...
3
votes
1answer
403 views

Deobfuscate Java, mass rename classes in jar

I have a jar in which the class files have been obfuscated. I'm happy to manually deobfuscate it, but the problem is that the class names are so long that windows won't save them to disk. Is there any ...
7
votes
2answers
338 views

Deparsing/Decomposing - step-by-step this obfuscated perl script

As the title - please can anyone explain how the next scripts works this prints the text: "Perl guys are smart" ...
-1
votes
1answer
96 views

what kind of encryption does this look like?

I'm having a puzzle contest with my friends, and I'm stuck on this problem: Does anyone know off the top of their head what kind of encryption this looks like? I'm really not expecting a spot on ...
-2
votes
1answer
196 views

How to crack or break Obfuscation using nodejs [closed]

I have seen some websites, which displays the first page source for rest of the pages. For example if we visit xxxx.com's fist page and look at its page source and if we visit xxxx.com's second page ...
1
vote
1answer
241 views

How to verfiy whether my application apk is properly obfuscated or not?

I have obfuscated my android application using Proguard on Eclipse, now I have to verify whether it has properly obfuscated all classes, methods and members or not. Can someone please provide me some ...
1
vote
1answer
151 views

what does 0 != do in this code?

What does 0 != do in this code: #include <stdio.h> int main() { int i; for(i=0;i<8*5;i++) printf("%d",0 != ("HELLO"[i/8] & 1 << (~i&7)) ); return 0; } ...
12
votes
2answers
610 views

Understanding an uncommon argument to main

The following question was given in a college programming contest. We were asked to guess the output and/or explain its working. Needless to say, none of us succeeded. ...
3
votes
0answers
200 views

How to obfuscate an ASP.Net MVC3 Project using Dotfuscator? [closed]

I have a project to obfuscate. Its having layers separated such as Services,Data,Web,Models etc.. I am using nHibernate ORM also. Also like to know how to handle ajax also during obfustication. I ...
0
votes
0answers
232 views

Deobfuscate JavaScript in Java (on Android) [closed]

I am trying to deobfuscate some JavaScript code in Java on the Android Platform. The deobfuscation function will more or less always stay the same (just the arguments will change), so I have two ...
0
votes
1answer
94 views

How to pass the obfuscated program's trace protocol through compiler-optimizer?

With help of GDB-script: file ./program b *0x12345 run while 1 x/i $pc ni end quit I got a trace protocol of obfuscated program: ... 0x484e0: bx lr ?? () 0x43d88: b 0x43db8 ?? () ...

1 2