Tagged Questions
The reversing tag has no wiki summary.
9
votes
3answers
2k views
Sending messages to objects while debugging Objective-C in gdb, without symbols
I'm trying to send messages to Objective-C objects in gdb.
(gdb) p $esi
$2 = (void *) 0x1268160
(gdb) po $esi
<NSArray: 0x1359c0>
(gdb) po [$esi count]
Target does not respond to this message ...
3
votes
5answers
129 views
What is the reason that it is not possible to reverse an MD5 hash? (esp. with a salt)
Why can't you just reverse the algorithm? And how is it possible to make an algorithm that isn't reversible?
And if you use a rainbow table, what makes using a salt impossible to crack it? If you are ...
2
votes
1answer
96 views
Array of virtual functions
When reverse engineering and using external classes I often try to redefine those classes in my library:
class GameEngine // Exported with "GetGameEngine"
{
public:
virtual void foo1() = 0;
...
1
vote
2answers
71 views
Writing a function in javascript that is the inverse of another
I'm trying to write a function that is the inverse of the function below.
So that I can get the output from the function foo and generate it's input parameter.
I'm not entirely sure if it's ...
1
vote
3answers
168 views
c++ class disassembly
Well, I have the following code:
class Base {
public:
int x,y;
Base() { x=10; y=20; }
virtual void myfunction() { }
};
int main() {
Base *b = new Base();
return 0;
}
The disassembly gives me ...
1
vote
3answers
303 views
Locating OEPs in Packed EXE Files
Are there any general rules, on how to realiably locate OEPs (Original Entry Points) for packed .exe files, please? What OEP clues to search for in debugged assembly language?
Say there is a Windows ...
1
vote
2answers
1k views
Application Debugger for Windows 7 x64
could you advise me, please, a good application level debugger for Windows 7 x64?
It is not needed to debug 64bit applications, it must only run reliably within 64bit environment.
I am searching for ...
1
vote
3answers
156 views
What's a good method/function to create a reversible hash?
I need to transmit some data over the wire and I don't want that data being plain text.
The text I'm sending needs to be reversed so I can't md5/sha256/etc...
What's a good way to encode a salted ...
0
votes
0answers
137 views
Reconstructing an elf executable from RAM dump of router
I'm currently trying to reverse engineer the firmware on my router. It has a MIPS32 processor. I have successfully unpacked the firmware (which I downloaded from the manufacturer's website), and I ...
0
votes
7answers
518 views
Identifying algorithm used to generate codes
How would one identify what algorithm is used to generate codes with? Both common, open source ones, and the more difficult, custom unpublished algorithms? For example here are a sample...
x3vbhzcouy
...