Keylogger question
Keylogger question
My wow account was hacked and since i logged in more from ubuntu than windows i wanted to ask if it is possible a keylogger to be installed through wine and if it could start automatically to monitor the system each time linux starts or each time i start some wine application.
By the way i used antivirus to scan linux and wine directories and nothing was found
By the way i used antivirus to scan linux and wine directories and nothing was found
Re: Keylogger question
All keyloggers that use drivers won't work on Wine. If they get keys in some other way (LL_HOOK for example) then yeah they could work I guess.micdhack wrote:wanted to ask if it is possible a keylogger to be installed through wine and if it could start automatically to monitor the system each time linux starts or each time i start some wine application.
I never heard of key logger for Linux. But don't see any major problems with writing one. There are number of ways how to receive all key events. However they all disabled by default in most distros.
Im asking cause my wow account was hacked. so i spend all day scanning and trying to find if there was a leak in my system that lead to this.
So far i found nothing of such but is hard to believe that 8char password could be broken by hacker just by brute force. Guessing is out of the question cause the password has no meaning or word reference.
So far i found nothing of such but is hard to believe that 8char password could be broken by hacker just by brute force. Guessing is out of the question cause the password has no meaning or word reference.
-
- Level 2
- Posts: 25
- Joined: Thu Mar 13, 2008 7:41 am
8 char password actually is _NOT_ that hard to break by brute force.
http://www.lockdown.co.uk/?pg=combi
http://www.lockdown.co.uk/?pg=combi
Keylogger question
On Wed, 2011-10-26 at 02:38 -0500, isobella wrote:
a terminal. Either pipe it into less:
ps -ef |less
where you can search on keywords or simply scroll through the list, or,
if you already know the keyword, pipe it into grep:
ps -ef | grep '\.exe'
will show you all the .exe programs that are currently running. If you
want to know more about a program, apropos and man are your friends:
apropos wine
man wine
apropos shows one line describing anything that has your search term in
the first line or its man page:
$ apropos wine
msiexec (1) - Wine MSI Installer
notepad (1) - Wine text editor
regedit (1) - Wine registry editor
regsvr32 (1) - Wine DLL Registration Server
wine (1) - run Windows programs on Unix
wineboot (1) - perform Wine initialization, startup, and
shutdown tasks
winecfg (1) - Wine Configuration Editor
wineconsole (1) - The Wine console
winefile (1) - Wine File Manager
winemine (1) - Wine Minesweeper game
winepath (1) - Tool to convert Unix paths to/from Win32
paths
wineserver (1) - the Wine server
while typing "man wine" shows the whole man page.
Martin
A more general way to find unexpected processes is to run "ps -ef" fromIn my experience, the keylogger is invisible, and it run with other
applicatioons. What's more, most keyloggers are undetectable. While, I
know a very simple way to detect it. Type CTRL + ALT + DELETE, it will
open your Task Manager, Processes tab look for BKP. exe or AKL. exe,
if you find the BKP. AKL exe or. exe's why you have keylogger.
* Remembering that if you can not always detect Keylogger by CTRL +
ALT + DELETE.
a terminal. Either pipe it into less:
ps -ef |less
where you can search on keywords or simply scroll through the list, or,
if you already know the keyword, pipe it into grep:
ps -ef | grep '\.exe'
will show you all the .exe programs that are currently running. If you
want to know more about a program, apropos and man are your friends:
apropos wine
man wine
apropos shows one line describing anything that has your search term in
the first line or its man page:
$ apropos wine
msiexec (1) - Wine MSI Installer
notepad (1) - Wine text editor
regedit (1) - Wine registry editor
regsvr32 (1) - Wine DLL Registration Server
wine (1) - run Windows programs on Unix
wineboot (1) - perform Wine initialization, startup, and
shutdown tasks
winecfg (1) - Wine Configuration Editor
wineconsole (1) - The Wine console
winefile (1) - Wine File Manager
winemine (1) - Wine Minesweeper game
winepath (1) - Tool to convert Unix paths to/from Win32
paths
wineserver (1) - the Wine server
while typing "man wine" shows the whole man page.
Martin
Re: Keylogger question
Your way is much more general, I tried it yesterday, it worked.Martin Gregorie wrote:On Wed, 2011-10-26 at 02:38 -0500, isobella wrote:A more general way to find unexpected processes is to run "ps -ef" fromIn my experience, the keylogger is invisible, and it run with other
applicatioons. What's more, most keyloggers are undetectable. While, I
know a very simple way to detect it. Type CTRL + ALT + DELETE, it will
open your Task Manager, Processes tab look for BKP. exe or AKL. exe,
if you find the BKP. AKL exe or. exe's why you have keylogger.
* Remembering that if you can not always detect Keylogger by CTRL +
ALT + DELETE.
a terminal. Either pipe it into less:
ps -ef |less
where you can search on keywords or simply scroll through the list, or,
if you already know the keyword, pipe it into grep:
ps -ef | grep '\.exe'
will show you all the .exe programs that are currently running. If you
want to know more about a program, apropos and man are your friends:
apropos wine
man wine
apropos shows one line describing anything that has your search term in
the first line or its man page:
$ apropos wine
msiexec (1) - Wine MSI Installer
notepad (1) - Wine text editor
regedit (1) - Wine registry editor
regsvr32 (1) - Wine DLL Registration Server
wine (1) - run Windows programs on Unix
wineboot (1) - perform Wine initialization, startup, and
shutdown tasks
winecfg (1) - Wine Configuration Editor
wineconsole (1) - The Wine console
winefile (1) - Wine File Manager
winemine (1) - Wine Minesweeper game
winepath (1) - Tool to convert Unix paths to/from Win32
paths
wineserver (1) - the Wine server
while typing "man wine" shows the whole man page.
Martin