ypp

@ypp

Joined on Sep 28, 2021

  • :::info 本筆記使用intel syntax ::: Register 在 Binary exploitation 中,Register 扮演相當重要的角色,因為他是我們 CPU 能直接/快速存取的硬體,幾乎所有的 Instruction 都是在對 Register 做操作 1726857536036 image
     Like  Bookmark
  • :::info 隨手學習筆記,還沒寫完,希望能比獵人還早寫完 ::: 本筆記主要講述從 Program 到 Process 的過程 理解預處理、編譯、組譯、連結、載入、運行 ::: warning 圖源
     Like  Bookmark
  • :::info GDB: GUN Debugger :fish: ::: Learn How To Debug Binary image Demo source code
     Like  Bookmark
  • image (這裡)[https://github.com/Gallopsled/pwntools?tab=readme-ov-file] 請問 markdown 的 「超連結語法」 是一種 usb 語法嗎 我每次都打反 example from pwn import * import sys import time
     Like  Bookmark
  • x86組語中的 lea mov 關於實現 $edx = $eax+$ebx+8 1 add eax, ebx 2 add eax, 8 3 mov edx, eax 1 lea edx, [eax+ebx+8] lea擅長處理複雜的地址處理,並且該操作不會改變旗幟(flag)的更動,相較於使用mov,mov會先進行add、sub等等的操作都會改變旗幟(flag) __x86.get_pc_thunk.ax
     Like  Bookmark