Langsung ke konten utama
how to make a simple key logger with C++
 
#include  
#include  
#include  
int main(){ 
cout<<"This is a simple Key Logger."<
cout<<"Press ~ to quit."<
char kp; 
ofstream fcout ("log.txt"); 
do{ 
cin.get(kp); 
fcout<
} 
while(kp != '~'); 
fcout.close(); 
return (0);  
} 
 
 
 
 
 
 
 
  
 
 
 
 
 
Komentar