본문 바로가기
hacking/pwnable

[Dream hack] Quiz: Static Link vs. Dynamic Link-2

by ilp 2024. 8. 2.
반응형


GOT (Global Offset Table)   / PLT (Procedure Linkage Table)

: 라이브러리에서 동적 링크된 심볼주소를 찾을 때 사용하는 테이블

  • GOT: 동적 라이브러리 함수의 실제 주소를 저장
  • PLT: runtime resolve를 수행하는 코드를 포함

 

 

참고

https://iloveprogramming.tistory.com/218

 

[Dream hack] Background: Library - Static Link vs. Dynamic Link

 

iloveprogramming.tistory.com


반응형