Archive

Archive for the ‘Programming’ Category

Batch Code to show BLUE SCREEN OF DEATH

March 8, 2011 Leave a comment

Batch Code to show BLUE SCREEN OF DEATH

When your windows computer shows the BLUE SCREEN (BSOD) it means that a boot virus has infected your computer or Internal working of computer is at risk, this also comes when you are running multiple RAM’s and of different frequencies.

Now here is a code for Virus that shows the “Blue Screen of Death” when you run it.

Copy and paste the following code in notepad & save the file as “bsod.bat”. Then run it.

@echo off
cd /
cls
color 1f
echo A problem has been detected and Windows has been shut down to prevent damage
echo to your computer.
echo.
echo The problem seems to be caused by the following file: SPCMDCON.SYS
echo.
echo PAGE_FAULT_IN_NONPAGED_AREA
echo.
echo If this is the first time you’ve seen this stop error screen,
echo restart your computer. If this screen appears again, follow
echo these steps:
echo.
echo Check to make sure any new hardware or software is properly installed.
echo If this is a new installation, ask your hardware or software manufacturer
echo for any Windows updates you might need.
echo.
echo If problems continue, disable or remove any newly installed hardware
echo or software. Disable BIOS memory options such as caching or shadowing.
echo If you need to use Safe Mode to remove or disable components, restart
echo your computer, press F8 to select Advanced Startup Options, and then
echo select Safe Mode.
echo.
echo Technical information:
echo.
echo *** STOP: 0x00000050 (0xFD3094C2,0x00000001,0xFBFE7617,0x0000 0000)
echo.
echo.
echo *** SPCMDCON.SYS – Address FBFE7617 base at FBFE5000, DateStamp 3d6dd67c
pause :nul
cls
echo Downloading viruses . . .
ping localhost -n 5 :nul
dir /s
pause :nul

More: Convert bat to exe and paste the file in startup folder of target system.

~

Categories: Programming, Virus

Enter Blast

January 9, 2010 Leave a comment

Frustrate your friend by making this VBScript hit Enter simultaneously:

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop

Save it as “CKGB.VBS” and send it.

~

Categories: Programming, Virus

Note Blast

January 9, 2010 Leave a comment

Open Notepad continually in your friend’s computer :

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as “KGB.BAT” and send it.

~

Categories: Programming, Virus

Toggle Caps

January 9, 2010 Leave a comment

Toggle your friend’s Caps Lock button simultaneously :

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

Save it as “KGB.VBS” & send it.

~

Categories: Programming, Virus

Pop Drive

January 9, 2010 Leave a comment

Continually pop out your friend’s CD Drive. If she has more than one, it pops out all of them!

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 5000
loop

Save it as “KGB.VBS” and send it.

~

Categories: Programming, Virus

Time Passed

January 9, 2010 Leave a comment

How much time is passed ?

Well it happens always , we sit on computer and after sometime when we look at the clock we see that Oh, my god !!!!! so much time has passed.
But we don’t know exactly how much.
So, here is a very small tool which you will create by yourself .

Just copy the below lines in notepad:

@echo.
@systeminfo | @find “System Up Time:”
@echo.
@pause

Now save this file with the name Khacker.bat on your desktop.

Now whenever you want to check how much time has passed after you last started your computer.
Just double click on the file uptime.bat and you will get the exact time for how long your computer is up.

~

Categories: Programming

Browse without a Browser

January 9, 2010 Leave a comment

Browse without a Browser & that too in the Desktop Background !
Just write it in a notepad the following

<html>
<body>
<iframe
src="http://www.cyberkgb.wordpress.com&quot;
width="100%" height="100%">
</body>
</html>

Remove Spaces in the Code

Save it as abc.html [say]

Now right clik on the desktop & Open Properties. Browse & Go to desktop & select the abc.html as Background Image.

Now with your net connections on you can easily surf this site in desktop background.

In order to retain the original jst goto Start> ContolPanel> display> & here change the Desktop Background Image.

~

Categories: Internet, Programming

CD-ROM ejecting code in VB

January 9, 2010 Leave a comment

CD-ROM ejecting code in VB

Copy & Paste da code in Notepad. & save it as .vbs file.
Execute it (Double Click)

Set oWMP = CreateObject(“WMPlayer.OCX.7” )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next ‘ cdrom
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next ‘ cdrom
loop
End If

Note: If u want to disable this go to task manager click on process
then find wscript.exe and end this process.

~

Categories: Programming

Make your XP Talk

January 9, 2010 Leave a comment

Make your XP Talk

Dim msg, sapi
msg=InputBox(“Enter your text”,”Talk it”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak msg

Copy the above code (Italic font) & Paste in Notepad.
Save the file with a (*.vbs) extension, it will create a VBScript File.
Execute it (Double click on it).
It will prompt you for a text, input the text & press Ok.

~

Categories: Programming, Windows XP