Per un buon esempio, dare un'occhiata al codice showkey.
In particolare, ecco il ciclo principale. Tutto ciò che fa è prendere il terminale, copiarlo, trasformare quello copiato in modalità raw, e fino a quando non viene data una sequenza di tasti 'quit' o 'interrupt', si limita a stampare quale chiave è stata data al terminale.
/*
* showkey.c -- display cooked key sequences
*
* Invoke this (no arguments needed) to see keycap-to-keystrokes mappings.
*
* by Eric S. Raymond <[email protected]>, 1 Nov 88
* - fix for little-endian machines (version 1.1), 21 Oct 1996.
* - cleanup and modern packaging (version 1.2), 1 Aug 2002.
* - changed to use termios (version 1.3), 26 Aug 2002.
* See the RPM spec file changelog for more recent stuff.
*/
#include <stdio.h>
#include <termios.h>
#include <signal.h>
#include <string.h>
#include <stdbool.h>
static int signalled;
// ...
main()
{
struct termios cooked, raw;
unsigned char c;
unsigned int i, timeouts;
char intrchar[32], quitchar[32];
for (i = SIGHUP; i <= SIGIO; i++)
(void) signal(c, catcher);
// Get the state of the tty
(void) tcgetattr(0, &cooked);
// Make a copy we can mess with
(void) memcpy(&raw, &cooked, sizeof(struct termios));
// Turn off echoing, linebuffering, and special-character processing,
// but not the SIGINT or SIGQUIT keys.
raw.c_lflag &=~ (ICANON | ECHO);
// Ship the raw control blts
(void) tcsetattr(0, TCSANOW, &raw);
(void) printf("Type any key to see the sequence it sends.\n");
visualize(raw.c_cc[VINTR], intrchar);
visualize(raw.c_cc[VQUIT], quitchar);
(void) printf("Terminate with your shell interrupt %s or quit %s character.\n",
intrchar, quitchar);
signalled = 0;
while (!signalled)
{
char cbuf[32];
read(0, &c, 1);
visualize(c, cbuf);
(void)fputs(cbuf, stdout);
(void) fflush(stdout);
}
(void) printf("\nBye...\n");
// Restore the cooked state
(void) tcsetattr(0, TCSANOW, &cooked);
}
Si dovrebbe [1] stato si problema un po 'più chiaramente (si può accedere alla fonte della richiesta? Il guscio? Il sistema operativo? In entrambi i casi dove esattamente stai appeso) e [2] convincerci che faremmo qualcosa di buono per il mondo, piuttosto che aiutarti a scrivere un altro rootkit (vedi, la tua maniglia non ti sta facendo alcun favore a riguardo). – dmckee
Quindi vuole scrivere il 52 ° keylogger per linux. Grande affare. La tua moralità non lo fermerà. Almeno non è finito al superutente chiedendo dove scaricarne uno. ;) –
@dmckee un incarico di keylogger è un comune incarico C/Assembler al college. Potrebbe benissimo essere un ragazzino di sceneggiatura che cerca di far incazzare la gente, ma allora? Ha fatto una domanda e lui merita una risposta, indipendentemente dal suo intento. –