I am a newbie in programming and to improve my programming skills i started working on this small project and got stuck. Project is about capturing the keys that are been hit by the user(more like a keylogger) and store them in a text format. i was able to do that in windows but not in linux. Preferred language is C, shell scripting.
Any help is appreciated.
I able to get a keystrokes on terminal but not on other application.
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
#include<termios.h>
#include<unistd.h>
#include<fcntl.h>
int kbhit(void)
{
struct termios oldt, newt;
int ch;
int oldf;
tcgetattr(STDIN_FILENO, &oldt);
newt = oldt;
newt.c_lflag &= ~(ICANON | ECHO);
tcsetattr(STDIN_FILENO, TCSANOW, &newt);
oldf = fcntl(STDIN_FILENO, F_GETFL, 0);
fcntl(STDIN_FILENO, F_SETFL, oldf | O_NONBLOCK);
ch = getchar();
tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
fcntl(STDIN_FILENO, F_SETFL, oldf);
if(ch != EOF)
{
ungetc(ch, stdin);
return 1;
}
return 0;
}
main( int argc, char** argv )
{
char *input = argv[0];
int nomor = argc;
pid_t pid = 0;
int x=0;
while(1)
{
if(kbhit()){
//clearing the buffer
char ch = getchar();
printf("you hit keyboard and key = %c\n", ch);
}
}
}