坚持拆卸[关闭]

问题描述 投票:-1回答:1

需要一些函数的帮助,我认为这并不难,有人可以把它翻译成C所以我可以从那里拿起逻辑吗?

0x004011cf mov al, byte [esi]

| : 0x004011d1 and eax, 0xff

| : 0x004011d6 mul ebx

| : 0x004011d8 inc esi

| : 0x004011d9 add edi, eax

| : 0x004011db inc ebx

| : 0x004011dc dec ecx

| `=< 0x004011dd jne 0x4011cf
c reverse-engineering disassembly
1个回答
6
投票

干得好:

esi显然是指向长度为ecx的缓冲区的指针

LOOP:
      mov al, byte [esi]    ; read byte from memory pointed by esi into low bits of eax
      and eax, 0xff         ; mask eax with 0xff
      mul ebx               ; multiply eax with ebx (wherever ebx came from...)
                            ; put result in eax
      inc esi               ; increment buffer pointer
      add edi, eax          ; add eax to edi (whereever edi came from)
      inc ebx               ; increment ebx
      dec ecx               ; decrement ecx (which is probably some counter)
      jne LOOP              ; jump to LOOP if ecx is different from 0

但是没有任何上下文信息,很难说出这段代码实际上在做什么。

等效的C代码粗略地这样做:

  char *esi;    // points to some buffer...
  int ebx;      // contains some value
  int edi;      // contains some value
  int ecx;      // some counter, presubably the length of the buffer pointed by esi
  ...
  do
  {  
    edi += *esi++ * ebx++;
  } while (--ecx != 0)

您需要学习x86汇编的基础知识。

© www.soinside.com 2019 - 2024. All rights reserved.