Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When creating a web crawler, you have to design somekind of system that gathers links and add them to a queue. Some, if not most, of these links will be dynamic, which appear to be different, but do not add any value as they are specifically created to fool crawlers.

An example:

We tell our crawler to crawl the domain evil.com by entering an initial lookup URL.

Lets assume we let it crawl the front page initially, evil.com/index

The returned HTML will contain several "unique" links:

  • evil.com/somePageOne
  • evil.com/somePageTwo
  • evil.com/somePageThree

The crawler will add these to the buffer of uncrawled URLs.

When somePageOne is being crawled, the crawler receives more URLs:

  • evil.com/someSubPageOne
  • evil.com/someSubPageTwo

These appear to be unique, and so they are. They are unique in the sense that the returned content is different from previous pages and that the URL is new to the crawler, however it appears that this is only because the developer has made a "loop trap" or "black hole".

The crawler will add this new sub page, and the sub page will have another sub page, which will also be added. This process can go on infinitely. The content of each page is unique, but totally useless (it is randomly generated text, or text pulled from a random source). Our crawler will keep finding new pages, which we actually are not interested in.

These loop traps are very difficult to find, and if your crawler does not have anything to prevent them in place, it will get stuck on a certain domain for infinity.

My question is, what techniques can be used to detect so called black holes?

One of the most common answers I have heard is the introduction of a limit on the amount of pages to be crawled. However, I cannot see how this can be a reliable technique when you do not know what kind of site is to be crawled. A legit site, like Wikipedia, can have hundreds of thousands of pages. Such limit could return a false positive for these kind of sites.

Any feedback is appreciated.

Thanks.

share|improve this question
1  
Do you have an exmpmle of such a website so I can check it out and perhaps provide more solutions. – PeeHaa 埽 Dec 22 '10 at 19:37
Not at the moment PeeHaa, but their existance is certain (there are numerous guides out there on how to create one on purpose as well), so in order to make a fail prove crawler such possibility has to be taken into account. – Tom Dec 23 '10 at 0:36

5 Answers

Well, you've asked very challenging question. There are many issues:

First, do you think someone would do something like that to prevent web spidering? A web spider could act as DoS attack if it would got stuck in such structure.

Secondly, if page is made for users, how would they react to large number of senseless links linking to random generated 'trash sites'? This links should be invisible for user, either a few of them or they would be hidden somehow - you should then check, if links have display: none, 1 px font etc.

Third, how google would behave? Well, google does not index everything it can. It adds links to queue, but not follows them immediately. He does not like to follow deeply referenced links, that are not linked from pages previously indexed. It makes him not index everything, but index what users are most likely to visit is finally visited. Otherwise such pages as you describe will be extremally often used by SEO spammers ;)

I would build priority queue. Each link to each URL adds 1 point priority (more, when from main page). Pages with priority 1 are at the end list. I would limit visited pages count, so at worst case I would visity most important pages. I would be suspitious againt pages that contains too much links with too little content. In short words, simulate google behaviour as much as it is needed.

share|improve this answer
1  
How would this handle a calendar that creates infinite dynamic links to the "next month" etc.? The link would have the same "deepness" as other legit links. – Tom Dec 29 '10 at 15:54
Yes, right, it would have the same deepness. In typical site, however, there are more links to the same page. For example, in blogs, where there is a calendar, a calendar page has link to articles. Each of articles has links to current/previous/next month page and is linked by tags, previous article etc. Algorithm I propose would, however, index this structure anyway, in case page limit is not reached other way, f.g. by a lot of infinite loops. – Łukasz Lech Dec 30 '10 at 7:37
1  
I agree a priority queue might work. The crawler would then tend to defer work on traps, and instead prioritize useful work. If the crawler has a time limit, the work left undone when the crawler reaches the time limit will be the traps. This has the advantage of never falsely rejecting large sites such as Wikipedia, and the priority computation can be tweaked to optimize the rejection. – Raedwald Dec 30 '10 at 12:54
1  
"You cannot compute how useful a page is without first crawling it." I beleive you can: maintain a "site priority" for each site; worsen that priority each time you find a URL in that site that references that site; use that "site priority" as the priority for each newly found URL in that site. – Raedwald Dec 30 '10 at 14:39
1  
@Tom: Wilipedia will still get indexed, but slower than other sites. In effect the crawler would tend towards breadth-first rather than depth-first searching of the WWW. – Raedwald Dec 30 '10 at 14:55
show 5 more comments

Any solution is going to be heuristic at best, so you'll have to settle for less-than-perfect results. I would have thought that the page limit approach would work quite well if implemented properly.

You could put a limit on the number of pages to be crawled without leaving the domain; this doesn't prevent all of the pages from being indexed, since if the spider bails before a particular page is reached, there'll probably be more paths to that page that enter the domain "closer" to it, allowing it to be reached before the cut off.

Remember also that without such a limit, a spider could get stuck on a legit site like Wikipedia for a very long time, simply due to the overwhelming amount of content.

share|improve this answer

I don't think there is a solution to detect black-holes as there are many reasons a site could create an infinite number of pages for good reason and it would be difficult to say anything about the content of such a site. For this reason I propose a change of approach which prevents spiders from digging indefinitely:

I think it would be better to develop a strategy where by each page has a page ranking value assigned. The links too have a value assigned, all identical links then produce a final target ranking (potential return on searching the page).

A spider should only be allowed to crawl for a period of time as defined by the potential return. Now spiders are dropped, mine data, and are lifted and repositioned where the demand is.

In this way a server will not have it's spiders trapped searching pages indefinitely as they are continuously reassigned to where the demand is highest.

share|improve this answer
How do you assign a page ranking to a page? And how do you do this without first crawling this page? – Tom Dec 30 '10 at 12:25
Well you need to crawl a page for a page ranking. But you should be able to assign a value to links you haven't visited. The more links you collect from different sites which point to the same page will elevate that link rank. The text before, after and in the link should be used to determine probable subjects in the target (correlation of related terms I bet can be found this way). How this comes together is that people who search are supplying a demand to the system altering the value of the search terms, the search engine then tries to meet this supply. – Quaternion Dec 30 '10 at 17:22
"You should be able to assign a value to links you haven't visited", this all sounds rather vague to be honest. You suggest that these bad pages must have a lot of equal content, which is not true. I'm also not trying to build a search engine (thus I do not have a list with related words). If you could expand your answer with how this algorithm actually works, that'd be helpful. Thanks. – Tom Dec 30 '10 at 17:41
Equal content? My first line is contrary to that. Of course it is vague, how can a fitness be applied without knowing what you're looking for? – Quaternion Dec 30 '10 at 22:45

Content is the difference between a black hole and a legitimate site, like Wikipedia. While WP is indeed a huge website dimensionally, each URL contains kilobytes of legitimate data. A spider trap site might be equally as 'big', but the pages won't contain anything much: it's utterly perverse to waste server resources and bandwidth generating sizeable quantities of gibberish data simply to tie up a web crawler.

Rather than putting upper limits on breadth or depth of a site's URL tree (which would trap content-rich sites like WP), perhaps track the number of pages scanned which are below some floor of 'useful size'. You can then pull the eject handle on your spider once that count exceeds some acceptable limit.

share|improve this answer
You're suggesting to create somekind of algorithm that flags content as useful or potentially useless, and use this as a counter? Wouldn't the algorithm have different needs for each site? – Tom Dec 22 '10 at 21:00
Tom, simpler than that. I am suggesting flagging any page under a certain byte count as a potential trap - in other words, trying to distinguish between 'possible content' and 'possible trap' based on the assumption that 'traps' will be very small. If the page is only 40 or 50 bytes (html header, empty body) then it's probably useless. Too many of them and you bail out. A Wikipedia page, for example, is much larger. – Tim Kemp Dec 23 '10 at 2:17
1  
That can easily be circumvented by generating/copying large amounts of content for each page, though. – Will Vousden Dec 23 '10 at 9:42
Will, I know, which is why the second sentence in the answer discusses exactly that. Why bother generating large amounts of junk data just to fool a spider, when it costs you money in bandwidth and server resources? – Tim Kemp Dec 23 '10 at 14:58
the question is not whether it's senseful to build such trap (although I could think of some reasons), but it is certain that is's possible. Another probably more important reason is that some sites may have these traps by accident. For example, a calendar site might create URLs based on a date - or it might just have a "next month" link which is also dynamically generated. In order to create a fail safe crawler, all these possibilities have to be taken into account. It is certainly possible to circumvent them, just look at the bigger crawlers like search engines. Thanks. – Tom Dec 24 '10 at 11:55

Perhaps you can add a limit of the length of an URL to crawl.

Also most webservers have a limit on the length of an URL. So you shouldn't be looped infinitely.

Found a doc on the matter. Don't know whether it still is up2date though.

Check it out: http://www.boutell.com/newfaq/misc/urllength.html

Also you can limit the 'deepness' of pages.

Like domain.com/page/subpage/subsubpage/subsubsubpage/subsubsubsubpage/subsubsubsubsubpage/etc/etc/etc/etc/etc

share|improve this answer
3  
Yes but what's to stop the evil doer from randomly generating a url which isn't nested. URL are long enough and can consist of enough characters to make a lot of possible combinations. – JoshBerke Dec 22 '10 at 19:45
Can you provide an example website with an 'blackhole'? – PeeHaa 埽 Dec 22 '10 at 19:47
Indeed, there are way too many possible combinations even with a short url. – Tom Dec 22 '10 at 20:42
1  
You shouldn't use anything about the URL. There are way too many instances of sites putting an excessive amount of parameters up there. – Brad Dec 22 '10 at 22:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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