vote up 3 vote down star
1

Maybe the title is badly phrased but couldn't think of a better way of saying it.

I am working on a login system at the moment (nothing formal, just experimenting) and was planning on using PHPLiveX (an AJAX library) for some features. Basically you create some PHP functions which are then called via JavaScript. You can add parameters (getElementById) to the javascript that are transfered to the PHP function.

What i really wanted to know is whether it is safe to just call the function from javascript without encrypting the password first, then letting the PHP function encrypt it (SHA256 in this case). Can the data transfered via AJAX be intercepted? If so how likely is this?

Thanks

flag

What is the best way of securing this then, other than using SSL? If it were possible to hash a password in JavaScript is this a resaonable solution? – briggins5 Jul 17 at 19:15
1  
If you hash the password in JavaScript, it's still going to be visible to anyone sniffing the traffic (it will just be hashed!) An attacker could trivially replay this request with the hashed password in it – John Rasch Jul 17 at 19:27
And SSL will solve this problem? – briggins5 Jul 17 at 19:31
1  
SSL will encrypt the entire POST request (and reply for that matter). So yes, it'll fix this problem. – acrosman Jul 17 at 19:39
1  
Hi, the reason i am doing this is to understand it better. I am not implementing this for anything serious or formal at all. – briggins5 Jul 17 at 19:50
show 4 more comments

11 Answers

vote up 25 vote down check

No more-or-less safe than a normal HTTP POST request issued by a browser (as in from a <form>)

The "fix" for this is the same "fix" for non-AJAX requests - use SSL.

link|flag
Good answer, thankyou. So there are no security holes solely relating to AJAX? – briggins5 Jul 17 at 19:12
1  
Damn, I'm 5 seconds to late. – Andrew Moore Jul 17 at 19:12
Or challenge response, see my answer. – Spencer Ruport Jul 17 at 19:31
1  
@briggins5 Like Peter says, AJAX is simply HTTP POST requests that happen out of turn, or 'asynchronously'. So, in a manner of speaking, you are correct. But, since AJAX is asynchronous, state changes in the client's browser are harder to understand, so its easier to mess up security. – Jeremy Powell Jul 17 at 19:59
vote up 0 vote down

As already mentioned, SSL is the best solution here. However, you could hash the password on the client side. If you google for it, you'll find plenty of javascript implementations of md5.

link|flag
vote up 10 vote down

As others have mentioned it's no more safe than sending an HTTP post from a form. (In fact, it's the very same thing.)

But if HTTPs isn't an option you can always use a challenge/response scheme over an unencrypted connection.

Basically it works like this:

Server has a SHA (or whatever hashing algorithm you prefer) hash of the user's password.
Client has the password. Client requests (using unencrypted AJAX) the server send a challenge (Some random string of bytes. Characters are fine.)
Server creates a challenge and a challenge id and saves it with an expiration.
Client recieves a challenge and a challenge id.
Client hashes the password using SHA.
Client hashes the resulting hash with the challenge appended in some way.
Client sends the challenge id (Not the challenge itself) and the second resulting hash.
Server looks up challenge using ID if it exists and hasn't expired.
Server appends the challenge to the stored password hash and creates a hash using the same scheme as the client.
Server compares it's hash with the client if it's the same the user is authenticated.

It's actually pretty simple to set up once you get the idea. Wikipedia has some additional information on it.

link|flag
+1: I love this tactic. – Jeremiah Jul 17 at 19:25
Sounds like a good method. I would like some peoples opinions of how secure this is when compared to traditional authentication (just compraing username and password)? – briggins5 Jul 17 at 19:39
2  
How secure it is compared to just sending both the username and password as plain text? Well if you attach the value of 0 to that method, and my approach is some n > 0 (say .0005 even, for the sake of argument) my method is >1,000,000,000,000,000 times more secure. – Spencer Ruport Jul 17 at 19:41
1  
It is much easier to break this than it is to break SSL. If you aren't salting the password, you can probably crack it in a matter of minutes with some downloaded rainbow tables. If you are salting the password, the attacker can still capture the hashed password and attempt to guess it -- SHA1 is very fast, modern computers can try millions of passwords a second. (Don't reinvent SSL!) – jrockway Jul 17 at 23:35
1  
@jrockway: First, this isn't reinventing SSL. Challenge/Response is only good for determining when two parties know the same information. Second, Salts aren't secret and an acceptable salting method for defense against rainbow tables is: hash = SHA (SHA (password) . salt). In this set up, the salt is the challenge and it's purpose becomes two fold hash = SHA (SHA (password) . challenge). Third, I was using SHA1 as an example. There are much larger schemes available if you need additional safety. – Spencer Ruport Jul 18 at 0:01
show 1 more comment
vote up 1 vote down

Yes it can be read. Just like everything else without some kind of layer of security (See SSL)

To see it yourself run a tool like WireShark as you do your AJAX commands.

How likely? Not very, but the user's password will probably be saved in someone's log files in plain text. If someone eventually found it, then it could be bad news. Back in college, my networking class had access to some (semi) fancy routers. We had assignments where we signed up for accounts on random websites. As we did this, we noticed some very scary things on the log files in the routers. This was an eye opener for me to think about how every communication is tracked and most likely logged somewhere.

link|flag
vote up 0 vote down

You are sending it in the clear, so anyone with sniffing/listening/etc the client's network will be able to easily see the password. The AJAX call is just a plain old HTTP message. If you want to see this in action, fire up a copy of wireshark and make the request your self. You will be able to see the password in the HTTP packet.

link|flag
vote up 1 vote down

Make sure the target of your AJAX call is a trusted HTTPS:// page and you've made it every bit as secure as any of the other sends of the same information that the rest of your application is doing. Most libraries / frameworks don't limit you to just HTTP:// for your AJAX calls.

link|flag
vote up 0 vote down

It isn't safe. Don't send unencrypted passwords. It's very likely that they will be intercepted at some point you will have a major problem.

Here is a video example of capturing a telnet password. Telnet sends in plain text and this nicely illustrates the major problem you have if you even think of doing this. Any two bit script kiddie can snag a plain text password faster than you can so "Oh my God, where did my database go?"

link|flag
Care to provide any facts that back your opinion? – Josh Stodola Jul 17 at 19:20
vote up 1 vote down

This is just as safe as having a login form that is not SSL secured be sent over the wire, like almost all forums out there do!

link|flag
vote up 0 vote down

The plain text password transmitted via AJAX will be as secure as the same password transmitted via a normal HTTP post. That is to say AJAX uses HTTP and can therefore be intercepted and sniffed. Your best bet is to use HTTPS (SSL).

For further reading on AJAX and security I'd recommend the following readings

link|flag
vote up 5 vote down

Whether you are sending the password via AJAX or via a normal form, it is still sent via a HTTP POST (hopefully) request. So you are not adding or removing anything security wise.

The only way to prevent someone from intercepting your password is by using SSL (via AJAX or not).

link|flag
vote up 1 vote down

AJAX calls are just plain HTTP request.

It behaves like ordinary HTTP request and also comes with all the advantage and disadvantage of it. It is not any safer.

To make your AJAX calls safe, there are several ways you can try:

  1. Use SSL. SSL will encrypt messages between your user and your server. The disadvantage of SSL is that you will have to pay additional fee for valid SSL certificates. Invalid SSL certificates while usable, does not provide the same level of guarantee of security to the users.
  2. Encrypt requests before being sent, client-side. E.g.: hash users' password before being sent over the network. Most of the time, you don't need users' plain text password anyway. This is not usable when users don't allow client side scripting to run.
  3. And apart from common misleading information where POST is safer than GET, it is not. Both are equally open for attackers to see.
link|flag
-1: Misleading answer. AJAX does the same request as a plain old form. – Andrew Moore Jul 17 at 19:13
And which part of my answer that says "AJAX does NOT do the same request as a plain old form"? – Adrian Godong Jul 17 at 19:15
@Adrian: Actually, it's the missing information that makes someone who doesn't have that knowledge to assume it is somehow different. – Andrew Moore Jul 17 at 19:19
He said "misleading", not "blatantly incorrect". And I agree with him, although I am not going to -1 you for it. I'll just comment instead. – Josh Stodola Jul 17 at 19:24
1  
@Adrian - your #2 doesn't work because anyone that can sniff the traffic will see the hashed password and could easily replay it. The only benefit to hashing is that (if it's properly salted) it will make it very difficult to get pre-hashed password – John Rasch Jul 17 at 20:09
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.