vote up 2 vote down star

What is the best way to determine if a string represents a web address? I need to let the user enter a web address into a form, but how do I validate the input? The user should be allowed to enter strings like "http://www.google.com" or "www.vg.no", but he shouldn't be required to enter the "http://". Also, there are web pages like "tv2.no" which is harder to validate. If I check if the string contains "www" or "http://" I have a strong clue, but I'm still not 100% sure. Can I ever BE a 100% sure? I don't think so, but maybe some of the fine minds here at SO can enlighten me?

flag

You don't have any clue whatsoever if you look for "www". Blogspot blogs and zillions of other sites (including the one you're in now) don't have it and they are valid addresses. – Daniel Daranas Feb 9 at 9:15
Could you could tell us a little more about the scenario in which your validation is going to be used? – Richard E Feb 9 at 9:23

12 Answers

vote up 3 vote down check

First, try to validate if the input text is a well-formed URL by using regular expressions. If the check is OK, try a DNS lookup to validate if the host is known. Don't forget the special case of localhost or 127.0.0.1. Also take care of hosts specified by their IP address. If these checks are OK, you may want to try an actual connection.

If these checks fail, you can modify the input text and check again. Possible modifications include:

  • prepend http://
  • prepend www.
  • append .com, .org, .net, whatever
  • append :8080, :8888, whatever
  • mix any of the above solutions
  • try also prepending file:/// for a local access
link|flag
+1 for the intent of maximizing usability. Also, some browsers etc will give a Google search if you just enter "Barcelona" in the address bar, and that is not always a bad thing (though of course it may be a bad thing in the OP's context - which he should have explained better). – Daniel Daranas Feb 9 at 9:14
I would feel uneasy about connecting to the given URL because of the security implications, especially if the poster is not 100% sure what he is doing. – zoul Feb 9 at 9:21
I think it could be safe if 'connecting' means only checking success or failure without recursively downloading every inline image, javascript, CSS, ... It may be performed for instance with text-based lynx. – mouviciel Feb 9 at 9:32
Yes, but there’s always the possibility that somebody passes someting like www.site.com/delete.php?all and hides his IP from the victim or people could pass file:///usr/lib/foo and check if file exists on your system etc. – zoul Feb 9 at 9:37
To put it another way: I would not cross the line of “100% safe” for something as minor as an URL check. There are also additional problems: what if the target site is down now and will be back in ten minutes? – zoul Feb 9 at 9:41
show 3 more comments
vote up 5 vote down

Apologies for the ensuing expression but it seems to capture most (if not all) cases :

^(?#Protocol)(?:(?:ht|f)tp(?:s?)\:\/\/|~/|/)?(?#Username:Password)(?:\w+:\w­+@)?
(?#Subdomains)(?:(?:[-\w]+\.)+(?#TopLevel Domains)
(?:com|org|net|gov|mil|biz|info|mobi|name|aero|jobs|museum|travel|[­a-z]{2}))(?#Port)
(?::[\d]{1,5})?(?#Directories)(?:(?:(?:/(?:[-\w~!$+|.,=]|%­[a-f\d]{2})+)+|/)+|\?|#)?
(?#Query)(?:(?:\?(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=(­?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)
(?:&(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=(?:[-\w­~!$+|.,*:=]|%[a-f\d]{2})*)*)*(?#Anchor)
(?:#(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})+­)?(?#What not to end in)[^.!,:;?]$
link|flag
In your section #TopLevelDomains, you can add whatever seems appropriate to your needs. I think of local LANs with .corp or .local domains. – mouviciel Feb 9 at 9:19
+1, but where does this come from? Is there a testing suite? There are already too many sites with botchered URL validation where somebody blindly copied a regexp from a web forum… – zoul Feb 9 at 9:24
Don't forget the oft used .museum! – Simucal Feb 9 at 10:12
+1 for giving the expression and not only the typical "how about using regex" or similar generic answers. This is what's making StackOverflow really helpful – kai1968 Feb 9 at 10:24
+1 Well deserved. :) – Aaron Digulla Feb 9 at 14:10
vote up 3 vote down

Notice that the following two are also valid web addresses. Do you want to allow them?

  • localhost
  • 208.77.188.166
link|flag
vote up 2 vote down

How about using a Regular Expression?

The exact means of implementation will depend on the language you're using.

link|flag
I think we all know regex can be used for pattern matching, I think he's asking for a heuristic to allow human-readable 'urls' to be accepted, i.e. slashdot.org instead of slashdot.org – roe Feb 9 at 8:59
Aren't things like slashdot.org simply a subset of the strings that the regex should accept? – Richard E Feb 9 at 9:22
vote up 2 vote down

My recommendation would be to not validate exactly at all. Instead, use a regular expression based approach, and if that doesn't match you can give a soft warning: "what you wrote doesn't look like a valid address. are you sure this is what you want to write?".

Definitely do not follow the idea of trying to connect to the address. That would open you up for all kinds of nasty security problems, including having your web site used for denial-of-service attacks against other web sites. That would land you in legal trouble.

Doing a DNS lookup is costly, but viable if you deem it's worth the cost.

link|flag
vote up 1 vote down

Can you do a DNS lookup from your application, this will get round any "i'm not sure if it's a real address".

link|flag
vote up 1 vote down

The easiest way to be reasonable sure is to use a regular expression that makes sure you have at least two components of the domain name. That way you can handle most bad cases. It should look something like this:

/^(http:\/\/)?(\w+)(\.\w+)+$/
link|flag
"wonky donkey" passes that regex, and isn't a valid address (containing a space and all) – Rowland Shaw Feb 9 at 9:01
nope, it doesn't. the slash before the dot is very important. you don't have any dots in it. that said, you're correct. it shouldn't be .*?. probably better to use something like [[:alpha:]]* – Ola Bini Feb 9 at 9:10
What if there is the port number? What if there is a query in the URL? It is much better to use some tested regexp than trying to invent the wheel yourself. – zoul Feb 9 at 9:18
Absolutely. It all depends on what level of certainty you want. That's why I didn't say my expression was the solution, just an example of how a simple version could look. – Ola Bini Feb 9 at 9:33
vote up 1 vote down

You could use the validation feature of Zend_Uri

link|flag
vote up 0 vote down

If you don't want to require that they enter http:// (or https://) then the only thing you can really go on is whether the string contains a "." (I assume you don't need to handle "internal" servers?). You could also validate against known domains and check for invalid characters, but beyond that pretty much anything goes.

As for actual implementation, regex would be the way to go if you can stomach it.. there's no doubt countless examples of validating URLs if you Google.

link|flag
vote up 0 vote down

If you're not going to enforce it to be a valid URI (I.e. you make the scheme optional) then the only real option is to try and connect to it via HTTP.

link|flag
vote up 0 vote down

I think the quickest way to do this would be through a Regular Expression test. This however will not prove whether its a valid URL

link|flag
vote up 0 vote down

See Regexp::Common on CPAN, especially R::C::URI and R::C::URI::http. Even if you can’t use the modules themselves, there are the regular expressions in the source. This is a good start.

link|flag

Your Answer

Get an OpenID
or

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