Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
keebcap — 모든 (IME를 사용하지 않는) 언어를 올바르게 지원하는 Win32 키로거 | Kitploit
도구/GitHubGitHub/synacktiv/keebcap
Password AttacksData ExfiltrationInformation GatheringPost-ExploitationRed Teaming
GitHubsynacktiv/keebcap

keebcap

모든 (IME를 사용하지 않는) 언어를 올바르게 지원하는 Win32 키로거

저장소 보기
551042년 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Keebcap

이 저장소는 입력 방법 편집기를 사용하지 않는 모든 언어를 지원하는 win32 키로거를 구축하는 방법을 다루는 이 글과 관련된 코드를 포함합니다.

모든 테스트는 Windows 10(22h2)에서 수행되었습니다.

트리

root@kitploit:~
.   # keylog code
├── cap_gks.c           # sample keylogger using GetKeyState()
├── cap_llh.c           # sample keylogger using SetWindowsHookEx(WH_KEYBOARD_LL)
├── cap_rid.c           # sample keylogger using GetRawInputData()
├── process.c           # retrieve key-strokes context
├── process.h
├── vk_names.h          # virtual key to string (name) macro
│
│   # processing code
├── dumper.cpp          # program to dump windows KBD*.DLL contents to json
├── kbdhdr.h            # slightly modified windows headers
├── reconstruct.py      # reconstructs character stream from keylogs
├── replayer.py         # win32 python program to replay scan codes and extract resulting characters
│
│   # various
├── kbdlmap.py          # KLID to dll name mapping
├── vk_names.py         # virtual key number to/from name 
├── Makefile            # build keylogger with mingw-w64
│
│   # external dependencies
├── extern              
│   └── json.hpp        # by Niels Lohmann from https://github.com/nlohmann/json
│
│   # json files
├── inputs              # input test cases        
└── layouts             # output of dumper on all win32 kbd*.dll

의존성

root@kitploit:~
$ sudo apt install mingw-w64 python3

사용법

Windows에서 exe 파일이 바탕 화면에 배치되어 있다고 가정하고 다음 명령 중 하나를 입력합니다:

root@kitploit:~
c:\Users\user\Desktop> cap_gks.exe > keylog1.jsonl
c:\Users\user\Desktop> cap_llh.exe > keylog2.jsonl
c:\Users\user\Desktop> cap_rid.exe > keylog3.jsonl

DLL의 내용을 json으로 덤프하려면:

root@kitploit:~
c:\Users\user\Desktop> dmp.exe kbdfr > kbdfr.json

키 입력을 다시 주입하려면:

root@kitploit:~
c:\Users\user\Desktop> python replayer.py keylog1.jsonl > keylog1_ref.txt

키 입력에서 텍스트를 재구성하려면(결과 검증 포함):

root@kitploit:~
$ python3 reconstruct.py -v -l kbdfr.dll -c keylog1_ref.txt keylog1.jsonl
도구 다운로드