githubEdit

Control EIP Register

2025-03-02 12_27_14-.png
  • EAX (Accumulator Register) → Stores temporary calculations.

  • ECX (Counter Register) → Loop counter.

  • EDX (Data Register)→ Temporary data storage.

  • EBX (Base Register) → Memory address storage.

  • ESP (Stack Pointer) → Top of the stack (last pushed item).

  • EBP (Base Pointer) → Base of the stack (current function frame).

  • ESI (Source Index) → Source for data copying.

  • EDI (Destination Index) → Destination for data copying.

  • EIP (Instruction Pointer) → Next instruction to be executed.


step into → execute with details for each step

step over→ execute without details

image.png

Last updated