Forum     

Go Back   Digit Technology Discussion Forum > Portables, Peripherals and Electronics > QnA (read only)
Register FAQ Calendar Mark Forums Read

QnA (read only) Mods please help transfer the contents of this forum to proper sections. :)


 
 
LinkBack Thread Tools Search this Thread Display Modes
Old 01-05-2008, 08:36 PM   #1 (permalink)
 MacManiac
 
jamesbond007's Avatar
 
Join Date: Jan 2005
Location: Nalgonda
Posts: 707
Default Few Queries


I need the following :

1) A key logger that doesn't get caught by Symantec Antivirus Corporate Edition. Just a basic key logger will do the job, I only need to log the key strokes

2) An app that can take snapshots for the desktop at a given duration like say every 1 min. It should take snapshot every 1 min and save the files..

3) An app to log IM chats, especially Yahoo messenger
__________________
Why doesn't Airport automatically connect to the default Wireless network after a power cut ??
jamesbond007 is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 02-05-2008, 07:10 AM   #2 (permalink)
Legen-wait for it-dary!
 
dheeraj_kumar's Avatar
 
Join Date: Dec 2004
Location: Chennai
Posts: 2,471
Default Re: Few Queries

Want to spy on someone, eh? I dont recommend you do it, bro, spying is only for the shittiest people around. No offence to you, but thats the truth. If you cant trust a person, that doesnt mean you can go poking your nose into others affairs.

That said, here is the solution: (only for legitimate spying purposes )

1. Google. You can find lots of keyloggers. I dont know about the antivirus, You'll have to trial and error here. But if you know to program, hook the keyboard and redirect it to a file as output. SetWindowsHookEx or even GetAsyncKeyState for an inefficient way to do it. Since its your own program, it wont be detected.

2. Google "desktop screenshot spy" That may help you. Same with programming, you can send a print screen key, and write the clipboard contents to a file. You can bypass that too, using IMessageFilter.PreFilterMessage Thats a useful one.
or else CreateDC for desktop and blitblt it onto a file.

3. You could just use the yahoo messenger archive. Enable it in your comp, and you can use a archive viewer program to view it later. There is a program called "Yahoo Messenger Archive Decoder". Or else google for "yahoo messenger recorder" For programming, one could try the messenger SDK released by yahoo. I dont have enough info on this.

Well, thats about it, Sorry if I posted programming references too, but that was for people with itchy fingers wanting to code frequently
__________________
If the Start Windows Restart when Windows starts check box is checked Windows Restart will start automatically every time Windows is started. - Actual excerpt from a windows program help file
dheeraj_kumar is offline  
Old 02-05-2008, 11:58 AM   #3 (permalink)
 MacManiac
 
jamesbond007's Avatar
 
Join Date: Jan 2005
Location: Nalgonda
Posts: 707
Default Re: Few Queries

Spying ... yep I wanna spy my own laptop, I am the only one using it!!
Your solutions not helpful, but thanks for your patient reply.
I am not a VC++ programmer, I am a batch programmer and I am pretty good at it. I have batch scripts running that logs every file opened and other such things. I have another batch that uses Irfan View to take screenshots but they are not very efficient and solid. Hence I was looking for standalone programs!!

I use the mentioned pc for Seeding and DVD burning as my mac doesn't have SuperDrive
__________________
Why doesn't Airport automatically connect to the default Wireless network after a power cut ??
jamesbond007 is offline  
Old 02-05-2008, 06:12 PM   #4 (permalink)
Dragon Reborn
 
talkingcomet's Avatar
 
Join Date: Oct 2007
Location: Lat: 9° 28' 0 N Long: 76° 32' 60 E
Posts: 78
Default Re: Few Queries

Quote:
Originally Posted by jamesbond007 View Post
Spying ... yep I wanna spy my own laptop, I am the only one using it!!
want to check if your lappy is having an affair with someone?
__________________
The wheel wheels as the wheel wills!!!
talkingcomet is offline  
Old 02-05-2008, 06:51 PM   #5 (permalink)
Alpha Geek
 
Join Date: Nov 2007
Posts: 531
Default Re: Few Queries

Use iopus STARR 3.26.
Xccentricity is offline  
Old 02-05-2008, 07:01 PM   #6 (permalink)
Wahahaha~!
 
Faun's Avatar
 
Join Date: Dec 2006
Location: Pune/there
Posts: 7,680
Default Re: Few Queries

Quote:
Originally Posted by talkingcomet View Post
want to check if your lappy is having an affair with someone?
lol
__________________
Blog | Flickr | Battlelog
Spoiler:
Asus Z68 V-Pro|i5 2500k|TRUE Black|Ripjaws X|U2311H|N560GTX|D7000|XONAR STX|RE272|RE0|CC51|XE200PRO Walnut| TD II V2| Ultraphile|N5800

Mono
Faun is online now  
Old 03-05-2008, 07:39 PM   #7 (permalink)
Legen-wait for it-dary!
 
dheeraj_kumar's Avatar
 
Join Date: Dec 2004
Location: Chennai
Posts: 2,471
Default Re: Few Queries

Wow, you have batch scripts that record activity? NEAT dude!!! Can you tell us how you did that? I've never heard of that kind of stuff before. Man, you should be really good if you can do such stuff with only batch files!
__________________
If the Start Windows Restart when Windows starts check box is checked Windows Restart will start automatically every time Windows is started. - Actual excerpt from a windows program help file
dheeraj_kumar is offline  
Old 05-05-2008, 01:33 PM   #8 (permalink)
 MacManiac
 
jamesbond007's Avatar
 
Join Date: Jan 2005
Location: Nalgonda
Posts: 707
Default Re: Few Queries

Batch programming is pretty easy and interesting as well. To begin you can start by exploring environment variables and re-directing outputs to text files. Also if you are a good C programmer you can do almost anything by combining C with dos functions.
Explore %0, %1 use them with >> to redirect output text file.

Hint %0 can be used to capture the launched application. So create a simple batch file with just 2 lines ( for starters that is..)

line 1: use %0, >> to capture the currently launched app and send its name to a log file. You can use several dos commands here like say date and time commands to know when an app was launched etc

line 2 : launch the app itself

Now lets associate this batch file with an app say Notepad.exe. Select notepad --> open with --> use our batch file to always open notepad.exe.
Now what happens is left for your imagination and what you can do is your line 1 programming skills ... Have fun
__________________
Why doesn't Airport automatically connect to the default Wireless network after a power cut ??
jamesbond007 is offline  
Old 05-05-2008, 08:27 PM   #9 (permalink)
Legen-wait for it-dary!
 
dheeraj_kumar's Avatar
 
Join Date: Dec 2004
Location: Chennai
Posts: 2,471
Default Re: Few Queries

Thanks!

I found a really lengthy batch tutorial right here:

http://www.student.oulu.fi/~vtatila/batch_tutorial.html

and I'm gonna check it out after exams. Thanks Bond, James Bond!
__________________
If the Start Windows Restart when Windows starts check box is checked Windows Restart will start automatically every time Windows is started. - Actual excerpt from a windows program help file
dheeraj_kumar is offline  
Old 06-05-2008, 12:40 PM   #10 (permalink)
ax3
Cool as a CUCUMBAR ! ! !
 
ax3's Avatar
 
Join Date: Dec 2003
Posts: 5,052
Default Re: Few Queries

try this thread 2 ......

Keylogger
__________________
... W H O T ...
ax3 is offline  
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
RAM queries santanubiswas QnA (read only) 3 23-04-2008 09:49 PM
3 queries bajaj151 QnA (read only) 8 30-11-2007 06:48 PM
a few queries Arsenal_Gunners QnA (read only) 9 29-11-2006 11:59 PM
Few queries... ~Phenom~ Open Source 30 28-10-2006 07:30 PM

 
Latest Threads
- by clmlbx
- by ico
- by clinton
- by icebags
- by Charan

Advertisement




All times are GMT +5.5. The time now is 12:56 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2