0x03 Reversing Theory(50)
-
64bit Randomized Base Address Disable
This is really simple. If you find DLL Characteristics value's offset in Application, 0x8160 to 0x8120.
2020.10.23 -
Assembly Journey
/* |1| Implementation about memcpy |2| Implementation about strlen |3| Implementation about memset */ const char* source = "assembly"; char* destination; void Implement_memcpy() { __asm { // loop count is 10 // movsd is 4 count // therefore, the memory has 40bytes. push 0xA pop ecx mov esi, offset source mov edi, offset destination rep movsd } } void Implement_strlen() { __asm { mov ecx, 0xFFFFF..
2020.10.06 -
User Account Control Summary
보호되어 있는 글입니다.
2019.12.20 -
User Account Control Agenda
Windows Architecture 중 UAC에 대해 공부해보는 시간을 가졌다. 현재 진행 완료 된 것은 취소선으로 표시되어 있다. [1] User Account Control은 무엇인가? [2] User Account Control의 배경은 무엇인가? [3] User Account Control의 동작과정은 어떤가? [4] Bypass User Account Control은 무엇인가? [5] Bypass User Account Control은 왜 필요한가? [6] Bypass User Account Control 하는 법 [7] C&C 서버 제작 [8] C&C 서버 Anti Virus Bypass 하는 법 [9] User Account Control 후킹 [10] 자동화 프로그램 프로토 타입 [11]..
2019.12.20 -
리버싱 기초 문제
보호되어 있는 글입니다.
2019.01.16 -
MIPS 구축
보호되어 있는 글입니다.
2018.08.15