Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
keebcap — Keylogger Win32 che supporta correttamente tutte le lingue (che non usano IME) | Kitploit
Strumenti/GitHubGitHub/synacktiv/keebcap
Attacchi alle PasswordEsfiltrazione DatiRaccolta InformazioniPost-ExploitRed Teaming
GitHubsynacktiv/keebcap

keebcap

Keylogger Win32 che supporta correttamente tutte le lingue (che non usano IME)

Vedi Repository
55102 anni faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

Keebcap

Questa repository contiene il codice associato a questo articolo in cui parliamo di come realizzare un keylogger win32 che supporta tutte le lingue che non utilizzano input method editor.

Tutti i test sono stati eseguiti su Windows 10 (22h2).

albero

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

Dipendenze

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

Utilizzo

Su Windows, digitare uno di questi comandi, supponendo che gli eseguibili siano stati copiati sul desktop:

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

Per esportare il contenuto di una DLL in json:

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

Per reiniettare le sequenze di tasti:

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

Per ricostruire il testo dalle sequenze di tasti (e verificare i risultati)

root@kitploit:~
$ python3 reconstruct.py -v -l kbdfr.dll -c keylog1_ref.txt keylog1.jsonl
Scarica lo strumento