How to Log Into a Web App Simultaneously with Different Account?

5

1

I want to log into a web application, using at least ten account names at one single point of time ( I am not trying to do anything illegal, so don't worry). AFAIK, each tab in Chrome will share the same session, therefore, for one machine, one can use Google Chrome to log in at most 2 accounts, one in normal mode, another in Incognito mode.

Is there anyway I can log into multiple accounts? I know I can open up IE and Firefox ( probably Safari etc) and login, but this is not really scalable as the number of web browsers is finite.

Edit: My application is a localhost application; it resides on my computer. So proxy may not be that useful, and you now probably understand why it's nothing illegal.

Edit2: CookieSwap seems like a good idea, but the problem is that once I swap the cookie, all the tabs and the FF apps' cookie are swap as well. Can the swapping be done on a tab basis or on application basis, so that on a dual-monitor, I can see the different login side-by-side?

Graviton

Posted 2009-09-22T03:42:48.287

Reputation: 5 006

That edit helps out a lot in figuring a solution. – random – 2009-09-22T04:21:43.963

shouldn't you be able to use multiple instances of Igognito? – salmonmoose – 2009-09-22T04:35:39.880

1Yeah that edit completely changes things. You should always supply as much information as possible in your question to get a more complete answer. – John T – 2009-09-22T04:41:24.033

There can only be one instance of Incognito, in Google Chrome. – Graviton – 2009-09-22T04:47:29.763

Answers

3

CookieSwap to change users in just one firefox.

solarc

Posted 2009-09-22T03:42:48.287

Reputation: 475

The problem is that once I swap the cookie, all the tabs and the FF apps' cookie are swap as well. Can the swapping be done on a tab basis? – Graviton – 2009-09-22T05:45:25.573

maybe tab mix plus then https://addons.mozilla.org/en-US/firefox/addon/1122

– solarc – 2009-09-24T23:15:11.903

2

You can probably use Sandboxie to isolate each chrome instance by creating new sandboxes.

A Dwarf

Posted 2009-09-22T03:42:48.287

Reputation: 17 756

2

Use Firefox with the -no-remote option as many times you need

Problem is, you have to open several Firefox processes, the cookie swap extension seems better

solarc

Posted 2009-09-22T03:42:48.287

Reputation: 475

1

You could use multiple browsers, or I believe the "Incognito Window" feature in Chrome would accomplish this, too.

warren

Posted 2009-09-22T03:42:48.287

Reputation: 8 599

...isn't that exactly what was stated in the question? – Arjan – 2009-09-22T12:50:33.600

yes - but he was limiting it to one Incognito Window - I was trying to indicate he can use more than one – warren – 2009-09-23T00:57:46.697

0

You could potentially run browsers inside Virtual Machines (VMs) running on your system, but if you need 10 different users that's going to require an awful lot of memory so might be a non-starter.

Dave Webb

Posted 2009-09-22T03:42:48.287

Reputation: 10 126

0

As it's on localhost the solution is really simple: add dummy domain names to your hosts file, like:

127.0.0.1 localhost dummy1 dummy2 dummy3

Or:

127.0.0.1 localhost
127.0.0.1 dummy1
127.0.0.1 dummy2
127.0.0.1 dummy3

All these dummy domains will have their own cookie, and thus their own session. And the tabs or windows will be easily distinguished from one another, based on the URL you see. (Of course, this assumes the session is based on a cookie, but your testing using multiple browsers shows that is true.)

(You may also need to tell your web server to map requests for those dummy domains to the same "virtual host".)

When this would not have been your own server, or one that was not easily changed to handle requests for additional domains, then using multiple web-based proxies like listed on Privax might do the trick as well. Though I guess I'd prefer -no-remote with Firefox then.

Arjan

Posted 2009-09-22T03:42:48.287

Reputation: 29 084