軟件介紹夢戀代碼注入器又叫DebugNasm,是一款非常好用的匯編轉換軟件,通過軟件能夠輕松將代碼轉換為10進制、16進制的匯編語言,同時軟件還支持遠程調用Call的功能,夢戀代碼注入器可以說是一款非常好用的編程輔助軟件。
功能介紹 >支持快捷定義 [參數] [變量] >遠程調用Call 默認調用方式為:不帶保護 匯編代碼結尾一定要添加 :ret >>參數 mov eax,[參數] mov ebx,[參數] >>轉換后 mov eax, dword [ebp+0x08] mov ebx, dword [ebp+0x0C] >>變量 mov ecx,[變量] mov edx,[變量] >>轉換后 mov ecx, dword [ebp-0x04] mov edx, dword [ebp-0x08] 使用方法 一、下載軟件打開后,首先設置接口。
二、輸入你要轉換的代碼,點擊匯編轉換按鈕即可轉換,直接復制即可使用。
例子: {139,69,8,139,0,131,248,0,116,71,82,87,141,80,3,139,56,131,192,4,141,143,255,254,254,254,247,215,33,249,129,225,128,128,128,128,117,23,139,56,131,192,4,141,143,255,254,254,254,247,215,33,249,129,225,128,128,128,128,116,210,247,193,128,128,0,0,117,6,193,233,16,131,192,2,208,225,25,208,95,90,201,194,4,0} 轉換后: mov eax, dword [ebp+0x08] mov eax, dword [eax] cmp eax, 0x00000000 je label4 push edx push edi lea edx, dword [eax+0x03] label1: mov edi, dword [eax] add eax, 0x04 lea ecx, dword [edi-0x01010101] not edi and ecx, edi and ecx, 0x80808080 jne label2 mov edi, dword [eax] add eax, 0x04 lea ecx, dword [edi-0x01010101] not edi and ecx, edi and ecx, 0x80808080 je label1 label2: test ecx, 0x00008080 jne label3 shr ecx, 0x10 add eax, 0x02 label3: shl cl, 1 sbb eax, edx pop edi pop edx label4: leave retn 0x0004
|