해킹공주의 일상
cs프로그램 메모리 덤프 뜨는법 본문
1. 프로그램 설치(window 용)
1) ProcDump
👉 https://learn.microsoft.com/en-us/sysinternals/downloads/procdump
ProcDump - Sysinternals
This command-line utility is aimed at capturing process dumps of otherwise difficult to isolate and reproduce CPU spikes.
learn.microsoft.com
2) Strings
👉 https://learn.microsoft.com/en-us/sysinternals/downloads/strings
Strings - Sysinternals
Search for ANSI and UNICODE strings in binary images.
learn.microsoft.com
2. 명령어
procdump.exe -ma <PID> full_dump.dmp // 추출
strings.exe -u full_dump.dmp > dump_unicode.txt // string 화
'모의해킹 > CS(frida)' 카테고리의 다른 글
[Frida] Module.findExportByAddress 사용 시 TypeError: not a function (0) | 2025.07.08 |
---|---|
Frida로 CS 프로그램 패킷 확인하기(Frida 함수 후킹) (0) | 2025.07.07 |
[Frida] Module.getExportByName 함수 Type 에러 (0) | 2025.07.07 |
[Frida] Memory.readUtf8String, readCString() 사용 시 TypeError: not a function (0) | 2025.07.05 |
Comments