Showing posts with label hacking. Show all posts
Showing posts with label hacking. Show all posts

Wednesday, May 25, 2011

Free Downloading Tricks with Google


Easy way to find downloads using google- music, movies, Games, appsWith regular way of searching on Google, we do miss lots of things that we are searching for. There are lot of pro ways to search Internet Using Google and are more effective and very informative than normal way. In this post i will show you how to achieve your needs with Google using simple search queries. This trick works fairly decent for finding mp3′s on the web, which is hard to do normally. You can use the same trick to find other files too for example: avi, mp3, mpg, torrents, etc.

Top Youtube Search Commands You May Not Know About


Today we will See how you can get Accurate Video search results on Youtube using simple Commands in plain English. Now a days Webmasters are also optimizing their videos using simple SEO techniques and that’s the reason you might end up getting Wrong search results, just like Google.
Youtube Search CommandsAm sure these commands will certainly help improve your productivity on Youtube and make your day today video search Simple. So here’s are the 8 lesser known Youtube search commands:

Thursday, May 19, 2011

BackTrack Linux



BackTrack is a Linux-based penetration testing arsenal that aids security professionals in the ability to perform assessments in a purely native environment dedicated to hacking. Regardless if you’re makingBackTrack you Install BackTrack, boot it from a Live DVD or thumbdrive, the penetration distribution has been customized down to every package, kernel configuration, script and patch solely for the purpose of the penetration tester.

Monday, May 9, 2011

Accessing a webpage through batch file



make a batch file with these lines ( create a text file save it as .bat extension )  


@echo off
:1
start C:\Progra~1\Intern~1\iexplore.exe
http://www.imfaltu.co.cc
ping -n 20 127.0.0.1 >nul
taskkill.exe /im iexplore.exe
goto 1

depending upon your net speed u may increase the 10 secs time wait
with 10 sec time u may have 360 hits in an hour
with 5 sec time u may have 720 hits in an hour

How emails are Hacked

Note- this tutorial is just for demonstration Purpose and to make you conscious that how much we have to take care while entering passwords. please do not use it for personal benefits. we do not promote hacking. If you know html or php, you will find it very easy. lets See how simple it is to construct and set up a fake login page and steal the password.
.

Thursday, May 5, 2011

How To Access Blocked Web Sites via proxy

This summary is not available. Please click here to view the post.

10 Ways To Access Blocked WebSites

Websites like facebook , twitter  and other social networking sites are generally blocked in schools, colleges and offices . There exist some tricks by which you can bypass  the restrictions and access blocked sites , the most obvious is the use of proxies or Anonymizer websites . But using proxies doesn’t always works as they gets blocked by firewall as well . Here I am listing some other methods to access blocked contents .
1. Use IP instead of URL

Tuesday, May 3, 2011

An awesome official hack from firefox

How to Remove Captcha (Verification Words)?- Firefox Plugin

 

Don’t you just hate Captchas? CAPTCHA is an acronym for “Completely Automated Public Turing test to tell Computers and Humans Apart”. they are used to keep spammers & bots away from automating download process. Entering Captchas is annoying everyone. here in this post i am going to introduce two Firefox addons which can skip the captcha of file hosts and ads in it.
How to Remove Captcha (Verification Words)- Firefox Plugin

Sunday, May 1, 2011

How to Put a Widget on a Specific Page of your Blogger Blog



Widgets are short and handy small computer programs that can add more functionality to any Blog platform. In Blogger, where standard set of features and embedded plugins is rather limited, adding extended capabilities with third-party widget might help to spice up yourblog and increase its attractiveness. It can be added as an extra code behind the new Page Elements through the Page Elements subtab of the Template tab.

In brief, to add widget or page elements to your blog login at Blogger.com and click on Layout link on Dashboard. Then click the Add Page Element link in the sidebar.

After adding a Page Element to your blog it can be seen on all your blog pages by default, unless you wrap the widget in conditional tags. In this publication, we will present you the way on how to put selectively widgets on particularblog pages. You really can decide on which pages or a single pagethe widget should appear.


please click on check box shown on  top right  button


then Find out the widget to find that press Ctrl+F then enter label of widget and press enter 

after finding widget follow instructions given bellow

WIDGET ON POST PAGES ONLY

If you want to put the widget only on the post (item) pages then paste this line :

<b:if cond=’data:blog.pageType == "item"’>

immediately after the main includable line of code in the widget :

<b:includable id=’main’ var=’top’>

For this login at Blogger.com and click on Layout link on Dashboard. Then click Edit Html subtab of Template tab. Put a check in the Expand Wdgets Template checkbox at the top of the Template code box and scroll down to the widget code. Lastly in the widget code add a </b:if> before the immediate next </b:includable>. This is how the whole widget code will look like after the change :

<b:widget id=’HTML1’ locked=’false’ title=’’ type=’HTML’>  // its a part of widget code
<b:includable id=’main’>  // its a part of widget code
<b:if cond=’data:blog.pageType == "item"’>

remaining WIDGET CODE

</b:if>
</b:includable>
</b:widget>

This widget will only appear on the Post Pages.

WIDGET ON MAIN PAGE ONLY

If you want the widget to appear only on the Main Page of the blog use the code below :

<b:widget id=’HTML1’ locked=’false’ title=’’ type=’HTML’>
<b:includable id=’main’>
<b:if cond=’data:blog.url == data:blog.homepageUrl’>


WIDGET CODE

</b:if>
</b:includable>
</b:widget>

This widget will appear only on the Main Page.

WIDGET ON SPECIFIC BLOG PAGE

There are some cases in which you may want the widget to appear only on a specific page of your blog. For example, there might be some pages on your blog with heavy traffic where you plan to put some special ads or particular content. Create the widget by pasting the HTML in the new widget. Then modify the code as shown below :

<b:widget id=’HTML1’ locked=’false’ title=’’ type=’HTML’>
<b:includable id=’main’>
<b:if cond=’data:blog.url == "BLOG_PAGE_URL"’>


WIDGET CODE

</b:if>
</b:includable>
</b:widget>


Replace the CAPS : BLOG_PAGE_URL with the permalink of your post.

WIDGET ON SPECIFIC LABEL PAGE

You can specify a widget to appear only on specific label pages. This is useful when you want to represent your labels with icons. For example, you may have posts on books and when the label books are clicked in yourblog the sidebar will show a book icon. For such widgets, you can use the following code:

<b:widget id=’HTML1’ locked=’false’ title=’’ type=’HTML’>
<b:includable id=’main’>
<b:if cond=’data:blog.url == "http://BLOG_NAME.blogspot.com/search/label/LABEL_NAME"’>


WIDGET CODE

</b:if>
</b:includable>
</b:widget>


Replace BLOG_NAME and LABEL_NAME with actual.

Saturday, April 30, 2011

Conditional tags in blogger

  please read this before going down ----- how-to-put-widget-on-specific-page-of-your-blog

Conditional tags in blogger are used to tell browsers what to do in certain conditions. For example, when we use:

<b:if cond='data:blog.pageType == &quot;item&quot;'>
Hello world
<b:else/>
Goodbye Cruel World
</b:if>
It gives the browser the condition that when it’s an item (post) page then show “Hello world” otherwise, for every other pages show “Goodbye Cruel World”. Interesting, isn’t it.

A conditional tag comes handy when you are designing your Blogger blogs and customizing it from the scratch to take it to the next level. But first you need to know how many types of pages are there in Blogger and then how to use the conditional tags respective to that type of page. In this tutorial I will try to cover most of it, so let’s start.

Type of Pages in Blogger and Conditional Tags For It

1. Item Page
Item page refers to the individual post pages. It’s the page when you click the tile of the post or the read more link in blogger to read the full post. The conditional tag:
<b:if cond='data:blog.pageType == &quot;item&quot;'>
Hello World
</b:if>

Thursday, March 4, 2010

how to use online scanner provided by Microsoft

As many of us don't no that Microsoft provides a free online scan of your system
you can use this easily by visiting the site given below

http://onecare.live.com/site/en-in/default.htm

Note:->  THIS LINK SHOULD BE OPENED IN INTERNET EXPLORER
STEPS TO DO
1. Open the link in INTERNET EXPLORER

2.  Click on "Full service scan"

3. install the software then again click  on  "Full service scan" this will open a pop-up window then select the option according to your choice

how to fix problems in Vista

in our daily use sometime we find some problems in vista which doesn't get repaired by restarting the system
here i m providing solution for few of them

1. Internet Explorer has stopped working". IE then restarts.
Sol.  
go to control panel then to internet options
go to advanced tab and there is at the bottom right there is reset, press on it and thats it!!!!

2. sometime when you plug USB then try to open then it stops working and restarts .


Sol.
      a. if you installed Vista then this can be fixed easily ...
             plug your USB try to open that when error occur let it happen then it will automatically check for solution . Then it  advice to download a file just download and instal that the file size should be less than 1 mb
now again open your USB storage now it will open

Sunday, February 28, 2010

how to hack vista using "ACTIVE & BOOT DISK "

To hack any system using  ACTIVE & BOOT DISK "
 Do the following steps......

1. Download "Active @Boot Disk" from link given below
click to Download                    
                                                                                   WINDOWS EDITION  












DOS EDITION










2. Install the "Active @ Boot Disk" 

3.Active@ Boot Disk Creator
follow the instructions
Active@ Boot Disk Creator helps you prepare a bootable CD, DVD or USB
mass storage device that you may use to start a machine with a damaged
hard drive and recover data, recover partitions, create a disk image or repair
security access issues.
To prepare a bootable device for Windows:
1.  In the Active@ Boot Disk Creator main page, click Boot Disk Win
Edition. The Boot Disk Win Edition page appears.
2.  To prepare a bootable CD or DVD:
a.  Click Win CD/DVD Boot Disk. The Win CD/DVD Boot Disk page
appears.
b.  To write the Boot Disk ISO file to a different folder, click Browse
and navigate to the folder.
c.  Insert a blank or re-writable CD or DVD into the disk writer.
d.  Click Create!. A progress bar appears.
3.  After the ISO has been created, you must write it to a bootable CD or
DVD.
If you have a disk burning utility that you prefer to use, use it to burn
the ISO to a disk. Section 1.3.2 has instructions for some other utilities.
4.  If you do not have a disk burning utility, you may choose to use
Windows Burning Engine. 
To upgrade the Windows Burning Engine:
a.  Open a connection to the Internet.
b.  From the Windows Start button, choose All Programs > Active@
Boot Disk > Windows Burning Engine Update from
Microsoft.  A new session of your default web browser opens to
http://www.ntfs.com/burning_engine_update.htm. 
c.  Download the file from the ntfs site and install it on your computer.
5.  If you choose not to use Windows Burning Engine, you may use
Active@ ISO Burner utility. Continue with the steps below.
a.  In the Active@ ISO Burner main page, in the Step 1 area, the path
to the ISO appears. To change this path and use a different ISO,
click the ellipsis button (…) and navigate to the ISO.
b.  In the Step 2 area, the disk burning device name appears. To use a
different disk burning device, select it from the drop-down list.
c.  To choose a different burning speed, select it from the speed drop-
down list.
d.  To change burning settings, click the Settings link and change
settings on the dialog box.
e.  Click BURN ISO!. A progress bar appears.
f.  After the CD or DVD has been finalized, the disk ejects and a
success message box appears. Click OK.
g.  To burn another CD or DVD, insert a blank disk and click BURN
MORE!. 
6.  To prepare a bootable USB mass storage device:
a.  Insert a blank USB mass storage device into any USB port.
b.  Click Win Bootable USB Device. The Win Bootable USB Device
page appears. 
c.  To write the Boot Disk ISO file to a different folder, click Browse
and navigate to the folder.
d.  Click Create!. A progress bar appears.
e.  After the ISO has been created and copied onto the USB device, you
must use Safely Remove Hardware to stop and unplug the
device.

4 Note  For instructions on setting boot sequence priority in the system BIOS, see  this.
To boot from a CD, DVD or USB device, make sure that the device has the
boot sequence priority over the hard drive.

BIOS (Basic Input Output Subsystem) is a programmable chip that controls
how information is passed to various devices in the computer system. A
typical method to access the BIOS settings screen is to press ESC, F1, F2, F8
or F10 during the boot sequence.

BIOS settings allow you to run a boot sequence from a floppy drive, a hard
drive, a CD-ROM drive or an external device. You may configure the order
that your computer searches these physical devices for the boot sequence.
The first device in the order list has the first boot priority. For example, to
boot from a CD-ROM drive instead of a hard drive, place the CD-ROM drive
ahead of the hard drive in priority.

While you are in the BIOS Setup Utility, you will not be able to use your
mouse. Use the keyboard arrow keys to move around the screen.

Before you set boot priority for a USB device, plug the device into a USB
port.
To specify the boot sequence:
1.  Start the computer and press ESC, F1, F2, F8 or F10 during the initial
startup screen. Depending on the BIOS manufacturer, a menu may
appear.
2.  Choose to enter BIOS setup.  The BIOS setup utility page appears.
3.  Use the arrow keys to select the BOOT tab. System devices appear in
order of priority.
4.  To give a CD or DVD drive boot sequence priority over the hard drive,
move it to the first position in the list.
5.  To give a USB device boot sequence priority over the hard drive, do the
following:
• Move the hard drive device to the top of the boot sequence list.
• Expand the hard drive device to display all hard drives.
• Move the USB device to the top of the list of hard drives.
6.  Save and exit the BIOS setup utility.
The computer will restart with the changed settings.

Some computer manufacturers allow you to select the device that contains
the boot sequence from a special device selection menu. The example below
uses a Dell system board.

To set boot priority using a device selection menu:
1.  When the computer starts to boot up, after the manufacturer's ID
screen, press F12 several times. The device selection menu appears.  
2.  Use the up and down arrows to select CD-ROM. 
3.  To boot from the selected device, press ENTER.

5.Booting from a CD, DVD or USB Device 
To boot from the Active@ Boot Disk device:
1.  To boot from a CD or DVD, put the bootable Active@ Boot Disk CD or
DVD disk into the player.
2.  To boot from a USB device, plug the bootable Active@ Boot Disk USB
device into a USB port.
3.  Start the power on the machine. In a DOS screen, the following message
appears:
Press any key to start Active@ Boot Disk...
4.  Press a key on the keyboard. The screen changes and appears to be
loading the kernel.
5.  The screen goes dark for a length of time. Wait for the console to load. 
6.  The Active@ Boot Disk Console appears. 

6.Active@ Password Changer 
You can use Active@ Password Changer to recover your passwords and user
account attributes in a Windows Vista environment. 
Active@ Password Changer is designed for resetting the local administrator
password on Windows Vista systems in case the administrator's password is
forgotten or lost. You do not need to re-install and re-configure the
operating system. 
This utility supports multiple hard disk drives, detects several SAM databases
(if multiple operating systems were installed on one volume) and provides
the opportunity to pick the right SAM before starting the password recovery
process. It also displays a list of all local users. 
Other Windows login security restrictions can be reset, for example:
•  'Account is disabled'
•  'Password never expires'
•  'Account is locked out'
•  'User Must Change Password at Next Logon'
•  'Logon Hours'
With Active@ Password Changer you can log in as a particular user with a
blank password.

To use Active@ Password Changer:
1.  From the Active@ Boot Disk shell, click Data Recovery > Active@
Password Changer. The Active@ Password Changer dialog box
appears.
2.  To change passwords on the current drive, click Choose the Logical
Drive. 
3.  To scan the disk and detect multiple operating systems, do the
following:
a.  Click Search for MS SAM Database(s).
b.  Click Next. The progress bar indicates the status of scanning. A list
of SAM hives appears. 
c.  Select a database from the list.
4.  Click Next. The list of users appears.
5.  Select a user from the list and click Next. The parameters for the
selected user appear.
6.  Select parameter check boxes to create the situation that you want.
7.  Click Save. A confirmation dialog box appears.
8.  Click Yes. An information message indicates that the changes have been
made.
9.  Click OK.
10. For each user that you want to change, repeat steps 5 through 9.