Tagged Questions

0
votes
2answers
162 views

Wanted a tool for decompiling obfuscated .NET code

Hello. I need a tool to decompile obfuscated .NET code. Yes, I know about Reflector and its plugins (FileDisassemble, FileGenerator). But they create VS project which won't compile …
5
votes
1answer
134 views

Debugging disassembled libraries with gdb

Hello, in Linux and Mac OS X I can use stepi and nexti to debug an application without debugging information. On Mac OS X gdb shows the functions that are called inside the libra …
0
votes
2answers
42 views

How to avoid my VisualFoxPro’ EXE File tobe disassembled

Hi, i have try refox and see how eazy my EXE to be disassembled. the refox offer a feature which they guarantee that no one can disassembled. but , is there any other alternative ? …
-3
votes
6answers
333 views

The simplest code hacking

I have the following code: #include <iostream> #include <string> void main() { std::string str; std::cin>>str; if(str == "TheCorrectSerialNumber") …
0
votes
2answers
26 views

Disassembling WPF4 beta2 DLLs with Reflector

Hi there, I'm trying to disassemble some of the DLL of the new WPF4 Beta2 framework. However, all I have is empty methods for all types. I'm not having this problem for other DLL …
0
votes
2answers
96 views

Decompiling EXE to ASM

I want to make a basic antivirus for my free time. Basically I learned about the basic structure of the EXE(windows) file. How do I extract the ASM code from the file and the PE he …
1
vote
5answers
690 views

How can I force GDB to disassemble?

Hi! I'm trying to disassemble a program to see a syscall assembly instruction (the INT instruction, I believe) and the handler with GDB and have written a little program (see belo …
0
votes
3answers
74 views

Partially disassembling .net executable.

Hello. I need to write a relatively small program to parse .net executables and generate the list of calls to external methods. For example if System.Console.WriteLine is called in …
1
vote
1answer
100 views

Wherein newbie disassembly queries are made.

I'm relatively(read: stupid newbie) familiar with disassembly but this bit stumped me: I have a set of save files compressed with zlib and a game that loads them. Their structure i …
1
vote
2answers
32 views

Is it possible to see a member variable’s hard-coded value using a disassembler like Reflector?

Given the example source code below, is it possible for someone to see the value of _secret using a disassembler? I didn't see a way to get at the value via Reflector, but I haven …
0
votes
2answers
48 views

.Net Reflector Red and green squares

What are the green and red squares? Are these variable names and strings being purposely obfuscated? Is there a 'deobfuscator'?
5
votes
5answers
248 views

What are efficient ways to debug an optimized C/C++ program?

Many times I work with optimized code (sometimes even involving vectorized loops), which contain bugs and such. How would one debug such code? I'm looking for any kind of tools or …
4
votes
2answers
103 views

Is it possible to disassamble Visual FoxPro 9.0 exe file ?

Hi I have a legacy FoxPro exe application. Source codes are not available (it was written in outsourcing and source codes have been never delivered). There is a request to write …
1
vote
2answers
108 views

Getting IL code from DLL binary file

Hi Fellows, I am studding IL. I like .Net Reflector tool from RedGate (Lutz initially). I already have Serge Lidin’s and Ecma-335 books. It looks like these things are all we ha …
0
votes
3answers
88 views

How can I view the differences between two DLLs?

Is there a way to view the difference between two binary DLL files? I have PDBs for both. Ideally I'd like to see: What functions have been added What functions have been remov …

1 2 next
15 30 50 per page