반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ucrtbase.dll
- packet capture
- 네트워크 바이트 오더
- hacking
- Windows Kernel
- Windows Kernel Driver
- Windows
- vcruntime.dll
- 시스템해킹
- Windows Kernel Debug
- vcruntime140.dll
- 개발하기
- pcap packet
- windows kernel debugging
- HackCTF
- arudino
- apphelp.dll
- IAT Hooking
- 윈도우 커널 드라이버
- 바이트 오더
- 포너블
- 해킹
- Msvcrt.dll
- 윈도우 커널 디버깅
- pwnable
- 윈도우 커널
- pcap packet capture
- Network Byte Order
- C언어 패킷캡쳐
- 개발 환경 준비
Archives
- Today
- Total
미친해커
[Reversing] DLL Injection Step 2 본문
반응형
이번엔 DLL Injection에 사용할 DLL을 제작해볼거다. 이 카테고리는 DLL Injection에 대해서만 서술할 것이기 때문에 이번에 제작할 DLL은 간단하게 DLL Injection에 성공시 메시지 박스를 띄워주는 DLL을 만들어볼 것이다. 사용할 API 함수는 다음과 같다.
또 DLL에서 사용하는 main 함수는 일반적인 main 함수와는 다른 DllMain 이라고 하는 함수를 사용한다. 잘 모른다면 다음 문서를 참고하면 된다.
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, LPVOID lpReserved)
{
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
MessageBoxA(NULL, "DLL Injection!", "DLL Injection!", 0);
break;
}
}
이 DLL은 로드될 시 "DLL Injection!" 이라는 메시지 박스를 띄우게 된다.
반응형
'Reversing > DLL Injection' 카테고리의 다른 글
[Reversing] DLL Injection Step 3 (0) | 2022.01.18 |
---|---|
[Reversing] DLL Injection Step 1 (0) | 2022.01.18 |
[Reversing] DLL Injection Step 0 (0) | 2022.01.18 |
Comments