Tagged Questions

1
vote
5answers
194 views

Tool to deobfuscate Java codes

Hi, Is there a tool to deobfuscate java obfuscated codes. The codes is extracted from a compiled class but they are obfuscated and non-readable.
1
vote
4answers
130 views

How to obfuscate a java based project

I have created a java based project using Netbeans as an IDE. Now I want to obfuscate my project. How can this be done?
3
votes
1answer
129 views

How to convert from K&R C to ANSI C?

I am trying to execute following code which is the 1988 entry of Obfuscated C Code Contest. #define _ -F<00||--F-OO--; int F=00,OO=00;main(){F_OO();printf("%1.3f\n",4.*-F/OO/O …
2
votes
8answers
261 views

Show us your best obfuscated identity function

Rules are simple. Write an obfuscated function in any language that takes in an integer and returns the same integer. Try to use math tricks and not language tricks. IE. Try to …
1
vote
3answers
242 views

What is the most obfuscated and clever code you’ve seen? [closed]

I am aware about the The International Obfuscated C Code Contest, but I am looking for obfuscated AND clever codes (specially short ones) Here is two examples (the first one is a …
2
votes
5answers
335 views

Obfuscate strings in Python

I have a password string that must be passed to a method. Everything works fine but I don't feel comfortable storing the password in clear text. Is there a way to obfuscate the str …
0
votes
4answers
213 views

How do I create an (obfuscated) struct definition without whitespace? [closed]

how can i define a struct having a constant character and unsigned int , without using any white space , i mean no blank space or new line or tab!! typedef::struct(unsigned int * …
4
votes
4answers
196 views

Have you ever tried programming in Malbolge?

Have you ever tried programming in Malbolge? I have read some of the top links returned by google, here, here, here, and here. I am very intrigued by this prospect, and would lik …
1
vote
2answers
114 views

Real runtime method names despite obfuscation?

Is there any way to query the name of the current method if you've obfuscated your code? I'm asking because there are times when I want to log a message with the executing method a …
1
vote
11answers
524 views

Is it better to use the column name or column index on .Net DataSets?

When retrieving values from a DataRow is it better to use the column name or column index. The column name is more readable and easier to maintain: int price = (int)dr["Price"]; …