Does anyone know of an INVISIBLE freeware keylogger? I'm sick of PC ACME 4 and its strange interface. Please Help!
Printable View
Does anyone know of an INVISIBLE freeware keylogger? I'm sick of PC ACME 4 and its strange interface. Please Help!
What does it say at the top of the webpage?
This is an ANTI-Hacking site! Keylogging is a violation of privacy!Quote:
Hacker's know the weakness in your system, shouldn't you?
Hi PastyPyro,
Umm, what are you using a keylogger for?
For logging keys ? :p soz i'm most sarcastic tonight... :DQuote:
preacherman481
Hi PastyPyro,
Umm, what are you using a keylogger for?
It is better not to ask why someone needs a keylogger... :)
The problem I have found with them is that they hog system resources, and even prohibit or greatly inhibit certain processes (le.g. games).
If anyone here knows of very well-written keylogger program (commercial or otherwise), please let me know.
bis dahn!
Yah i have one but you cant see it because its invisible........
and if i give you it youll be paying for it......
I hope that answers all your questions......
Hi,
Lol, :D I know what a keylogger is used for. I mean, what specific purpose does the gentleman in question have? Like Tyger_claw said, "This is a security site."
The topic of this thread is "Best Freeware Keylogger" .
I would appreciate it if someone would recommend a "best freeware keylogger" that I can d/l and install on my Win98se PC.
I want the applicaction so that I can learn how to use it. Nothing more. Nothing less.
After the learning period is over, the program will be uninstalled, doing as little damage as possible to the system registry.
Hey bucket, take a look at this article as a starting point:
http://www.techtv.com/products/softw...375077,00.html
[Many times good information is found by looking at its counterpart. The above article is on anti-keyloggers, which may lead you to the keylogger you seek. Much like the site you are on now is ANTIonline.com :) ]
Also, you can have a look at the following sites for keylogger software:
Tucows.com (System Monitoring)
Google.com (Search on "keylogger freeware")
Hope this helps...
although i havent encountered one yet, but i think a key logger might also be disguised as a trojan, which it all ready is......kind of. anyway, <flame shield>i also wanted to use a key logger back in the days but once i thought about it, i changed my mind.</flame shield>
just a piece of info u might wana know.
A keylogger is indeed a Trojan, but that is the point.
HeyCimotaflow:
The important portion of my posting dealt with Romoval. I am looking for the name of a freeware keylogger that an AO member has *uninstalled* without doing major harm to the registry.
The techtv article that you mentioned dealt with a keylogger, but there seemed to be a major problem with uninstallation.
Bucket,
I'll try to be of a little more help... If I understand you correctly, you are trying to remove a keylogger program (or need information on it).
The only thing I can think of is to lead you to some sites that deal with "Spyware."
Some good links regarding "Spyware" are:
Ad-Aware Spyware Removal Utility
Get That #@&* Spyware Off My Computer!
Steve Bass's Home Office: Beware: Sleazy Web Sites, Spyware Underhanded Web sites, spyware, and how to protect yourself from them.
What is Spyware
Wired on Spyware
SpywareInfo.com
GRC.COM
That should get you started.
bis dahn!
:thumbsup:
HeyCimotaflow:
I wanted information. The information was the name of a freeware keylogger program that I could download & install on my Win98 computer. I intend to learn how to use the program.
When I learn how to use it, I will either deactivate it or uninstall it.
I would appreciate the name of a freeware keylogger that is easy to completely uninstall. I do *not* want to corrupt my system registry in the removal process.
Ugh, spyware. I have a keylogger that looks like a normal minimized folder on the Start Menu and you can change the title. It even records right-clicks! I hate it though. I keep it for sentimental reasons.
Actually the reason I'm using a keylogger is because multiple people I don't trust have physical access to my computer when I'm not around. I don't want anyone snooping around my computer while I'm not here. Sorry to start the flames.
as the title of this page says....
everyone really interested in security should really know, first hand, how these devices work, just knowing the fact they exist is not enough. learn what to look for, how the info is retrived. at worst you'll learn the importance of physical security.
To apply this to a _clean_ bash-2.03 tree you do
cd /usr/src/redhat/BUILD/bash-2.03
patch -p0 < filename
by: Antonomasia <[email protected]>
---- cut here ---
*** ./lib/readline/history.c.ORIG Mon Jan 1 00:53:55 2001
--- ./lib/readline/history.c Mon Jan 1 02:03:54 2001
***************
*** 30,35 ****
--- 30,36 ----
#endif
#include <stdio.h>
+ #include <syslog.h>
#if defined (HAVE_STDLIB_H)
# include <stdlib.h>
***************
*** 216,225 ****
/* Place STRING at the end of the history list. The data field
is set to NULL. */
void
! add_history (string)
char *string;
{
HIST_ENTRY *temp;
if (history_stifled && (history_length == max_input_history))
{
--- 217,241 ----
/* Place STRING at the end of the history list. The data field
is set to NULL. */
void
! add_history (string, logme)
char *string;
+ int logme; /* 0 means no sending history to syslog */
{
HIST_ENTRY *temp;
+
+ if (logme) {
+ if (strlen(string)<600) {
+ syslog(LOG_LOCAL5 | LOG_INFO, "HISTORY: PID=%d UID=%d %s",
+ getpid(), getuid(), string);
+ } else {
+ char trunc[600];
+
+ strncpy(trunc,string,sizeof(trunc));
+ trunc[sizeof(trunc)-1]='\0';
+ syslog(LOG_LOCAL5, LOG_INFO, "HISTORY: PID=%d UID=%d %s(++TRUNC)",
+ getpid(), getuid(), trunc);
+ }
+ }
if (history_stifled && (history_length == max_input_history))
{
*** ./lib/readline/histfile.c.ORIG Mon Jan 1 01:02:58 2001
--- ./lib/readline/histfile.c Mon Jan 1 01:05:25 2001
***************
*** 200,206 ****
buffer[line_end] = '\0';
if (buffer[line_start])
! add_history (buffer + line_start);
current_line++;
--- 200,207 ----
buffer[line_end] = '\0';
if (buffer[line_start])
! /* Ant: new 2nd arg means skip syslog */
! add_history (buffer + line_start, 0);
current_line++;
*** ./lib/readline/histexpand.c.ORIG Mon Jan 1 01:03:20 2001
--- ./lib/readline/histexpand.c Mon Jan 1 01:04:23 2001
***************
*** 1040,1046 ****
if (only_printing)
{
! add_history (result);
return (2);
}
--- 1040,1046 ----
if (only_printing)
{
! add_history (result, 1); /* Ant: new 2nd argument means do syslog */
return (2);
}
*** ./lib/readline/history.h.ORIG Mon Jan 1 01:13:54 2001
--- ./lib/readline/history.h Mon Jan 1 01:14:42 2001
***************
*** 80,86 ****
/* Place STRING at the end of the history list.
The associated data field (if any) is set to NULL. */
! extern void add_history __P((char *));
/* A reasonably useless function, only here for completeness. WHICH
is the magic number that tells us which element to delete. The
--- 80,86 ----
/* Place STRING at the end of the history list.
The associated data field (if any) is set to NULL. */
! extern void add_history __P((char *, int)); /* Ant added arg */
/* A reasonably useless function, only here for completeness. WHICH
is the magic number that tells us which element to delete. The
*** ./bashhist.c.ORIG Mon Jan 1 01:15:51 2001
--- ./bashhist.c Mon Jan 1 01:16:53 2001
***************
*** 565,571 ****
if (add_it)
{
hist_last_line_added = 1;
! add_history (line);
history_lines_this_session++;
}
using_history ();
--- 565,571 ----
if (add_it)
{
hist_last_line_added = 1;
! add_history (line, 1);
history_lines_this_session++;
}
using_history ();
While we're at it, if you have physical access to the box, you might want to check this out:
http://www.thinkgeek.com/stuff/gadgets/5a05.shtml
Come to think of it, it's almost scary: I don't think there would be any software way of detecting or avoiding this thing...
Ammo
While I don't know of any good keyloggers in Windows 95, I wrote a simple one in C that works on my Redhat 7.2 box. I use it to record all keystroke activity on my linux box. Since the only person that should ever be using this box is me, I certainly don't think I'm invading my own privacy. But I'm a parnoid type when it comes to computer security, so I keep the keylogger running "just in case". Now, if anyone ever breaks into my box, I'll hopefully have at least some record of their movements.
You *might* find one here:
Web Attack
yep I was just about to post webattack... I am slow today...
a keylogger is not a trojan
a trojan is a program that does something that you do not intend it to do (stupidly put)
a keylogger can be used for legit reasons on your own computer (monitering kids, co-workers, wife/husband, or just seeing whats going on when ur not around)
as for best keylogger, i just use one my friend wrote but its not for ditrib sorry...
i suggest just searching google for "best keylogger" ;)
Keyloggers -
We have had people (usually skript kiddies and the like) who have asked about them before, and here is my 2 ยข:
Keyloggers are good for keeping a record of all the actions on your computer, which can server many functions. I used my keylogger to help recover papers I was typing when my computer would crash!
A keylogger ceases to be a keylogger when it is placed on a third party computer, and it becomes a "trojan" or a "virus" depending on how it gets there. Anyone who uses a keylogger in such a manner is violating all eithical rules or is working for the Gov't or both.... :>
Back in my Classic (i.e. OS 8 and 9) days I used to use "Peeping Tom" which was an extension, and did not gooble up much in the way of system resources...but that only worked one mac....
why dont you just download one from antionline. they have a big list of dif toolz you can
use. well good luck... hope ive been some help. well CHOW