Stories
Slash Boxes
Comments

News for nerds, stuff that matters

A Tour of the Google Blacklist

Posted by CowboyNeal on Thu Jan 04, 2007 10:27 PM
from the taking-down-names dept.
WienerPizza writes "Michael Sutton takes us on a tour of the Google blacklist, a list of suspected phishing sites. He finds that eBay, PayPal and Bank of America combined account for 63% of the active phishing sites. Amusingly, he also reveals that Yahoo! has a nasty habit of hosting phishing sites that harvest — you guessed it — Yahoo! credentials!"
This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • But it's not a problem (Score:5, Interesting)

    by syousef (465911) on Thursday January 04 2007, @10:31PM (#17469184)
    Try telling Ebay or Paypal that there's a problem. All they do is flood you with propaganda about how they're keeping you safe.

    After a bad experience I closed my Paypal account and only use Ebay for small purchases.
  • Question do Sys Admins (Score:5, Interesting)

    by pembo13 (770295) on Thursday January 04 2007, @10:36PM (#17469208)
    (http://www.pembo13.com/)
    Do any of you guys actively block IPs and IP blocks of phishing sites? And also those "fake domains" which just have search results? If so, how is that working out?
  • So... (Score:5, Funny)

    by NightWulf (672561) on Thursday January 04 2007, @10:53PM (#17469322)
    That guy on eBay who told me to use my Bank of America account to send money to Paypal all through his link may not have been legit?
    • Re:So... (Score:5, Funny)

      by The Zon (969911) <thezon@gmail.com> on Thursday January 04 2007, @11:35PM (#17469606)
      You know that guy too? Don't worry, I'm pretty sure he's legit. I just used his service to order some chemicals to clean the dye off of a suitcase full of money I'm splitting with an exiled doctor from Nigeria. Can you believe it? This doctor contacted me right out of the blue, and all I needed was a U.S. bank account and a sympathetic heart. And, except for the chemicals, this is all at no cost to me! I can't believe such a great proposition initially got filtered to my spam folder!
      [ Parent ]
  • by Benaiah (851593) on Thursday January 04 2007, @10:55PM (#17469338)
    I still get phishing emails and see sites every week. It will be a glorious day when phishing sites and emails can be shutdown within seconds of being setup. This has the downside, that if google can do it with phishing. What if the government forces them to do it with something like pr0n? or build a p2p blacklist?
  • Here is one of the last entries on the Google blacklist:

    +http://zeta-os.com/astats/bankofamerica/......... ..

    For those not in the know, Zeta-os.com is/was the successor developer to YellowTab, which was developing a new operating system based on the old BeOS code. Now, zeta-os.com (or at least a part of it) has been reduced to a phishing site. *sigh*
  • ...that blasts people with security information/education.
  • Google's not keeping up (Score:5, Insightful)

    by Jonnty (910561) <jonnty@gm a i l . c om> on Thursday January 04 2007, @11:11PM (#17469440)
    (http://www.particracy.net/)

    Judging by the huge proportion of the blacklisted sites that are offline (and the tiny fraction that are actually phishing sites) it seems Google isn't taking this seriously enough. There is much, much more than 341 phishing sites in the world. This list should be being updated daily, they should start a way for suggesting sites or, if it exists, make it more visible.

    For the only external blacklisting organisation on Firefox, and as the provider for possibly the most widely used toolbar ever, they're not taking this seriously enough. But would any security company come in with a better free blacklist?

  • Here is a site that has a lot of IPs (Score:5, Informative)

    by VGfort (963346) on Thursday January 04 2007, @11:47PM (#17469676)
    (http://www.vgfort.com/)
    Banned IP Address [glodev.com] - a lot of them are spammers or fake bots that will look around your website and fill your forms in the attempt to spam you or your forums/blog or whatever else you might have
  • Pollute the phishing sites (Score:5, Insightful)

    by thewils (463314) on Friday January 05 2007, @12:03AM (#17469768)
    (Last Journal: Wednesday May 03 2006, @12:27PM)
    Go there and put in false information. Make it harder for them to get valid data.
    • by speculatrix (678524) on Friday January 05 2007, @02:16AM (#17470490)
      mod parent up!

      I do this when I have time... ensure you use what look like valid entries for bank a/c and pin values.

      I also enter things like "f**k you spammer" into the name fields, so that when they go through to test the captured data, they get to see my opinion of them (yeah, relatively useless I know, but I get tiny twinge of pleasure at the thought)
      [ Parent ]
      • Re:Pollute the phishing sites by gsslay (Score:1) Friday January 05 2007, @05:25AM
      • Re:Pollute the phishing sites (Score:5, Informative)

        by mindriot (96208) on Friday January 05 2007, @08:12AM (#17472198)

        Well, I wouldn't write "f**k you spammer" or anything like that, it makes your entries distinguishable. If you want to ensure having a correct credit card number (except for the CVV code, bug the phisher couldn't verify those directly anyway), you could use something like this quick dirty hack I wrote up a few months ago to spam a phishing site using simple wget queries. To read up on the format of valid credit card numbers, see for instance this article on the anatomy of credit card numbers [merriampark.com]. The following code worked for me to create numbers that were accepted by a phishing site I spammed:

        my $cc = substr("000000" . int(rand(1000000)), -6); # Any format

        # Add 9 digits for the account number
        $cc .= int(rand(900000000))+100000000;

        # Check digit: Luhn Code
        my $checknum = 0;
        for (my $j = 0; $j < length($cc); $j++) {
        my $val = substr($cc, $j, 1);
        if ($j % 2 == 0) {
        # These will be doubled
        my $v = 2*$val;
        $v -= 9 if ($v > 9);
        $checknum += $v;
        } else {
        # These will just be added normally
        $checknum += $val;
        }
        }
        # The last digit should add up to a multiple of 10
        $cc .= ($checknum%10 != 0)?(10-($checknum%10)):'0';

        # Output an expiration date (arbitrary, 2007..2015)
        my $month = int(rand(12))+1;
        my $year = qw(2007 2008 2009 2010 2011 2012 2013 2014 2015)[int(rand(9))];

        # Random CVV2 code
        my $cvv = substr("000" . int(rand(1000)), -3);
        [ Parent ]
        • 1 reply beneath your current threshold.
      • 1 reply beneath your current threshold.
    • Re:Pollute the phishing sites by blacknblu (Score:1) Friday January 05 2007, @09:14AM
  • Check out the whitelist (Score:5, Interesting)

    by tecker (793737) on Friday January 05 2007, @12:15AM (#17469842)
    (http://hockersmith.net/)
    Either Google is really paranoid or they have yet to find a site to put on the whitelist that was linked to.

    See for yourself what I mean [google.com] Nothing there.
  • What? (Score:3, Funny)

    by 8ball629 (963244) on Friday January 05 2007, @01:24AM (#17470218)
    I tried signing into one of the listed Geocities site and nothing happened... what gives?

    You mean to tell me this [geocities.com] is not a legit Yahoo Photos gateway?!
    • 1 reply beneath your current threshold.
  • URL Redirection

    Another surprising finding was that few of the phishing scams utilized open URL redirectors. This is a known technique whereby phishers identify redirection functionality at a popular website (e.g. Google) and use that functionality to redirect the victim to the targeted phishing site in order to minimize suspicion. Combing through the blacklist did however reveal the following redirection attack using Google AdWords: http://www.google.com/pagead/iclk?sa=l&ai=x&adurl= http://www.spidynamics.com [google.com]

    SPI Dynamics is a web application security software development company - not a phisher at all. Perhaps that example was used by them as a proof-of-concept and Google wasn't a big fan of that vulnerability being known?
  • Good help for fishing actually ... (Score:3, Interesting)

    by perenaurel (681620) on Friday January 05 2007, @04:18AM (#17471014)
    (Last Journal: Friday January 05 2007, @04:03AM)
    from: a post on full-disclosure [derkeiler.com]:
    I just played around a bit with those lists and as it seems,
    Google did a splendid job, even capturing some people's login data.
    Like here:
    http://sb.google.com/safebrowsing/update?version=g oog-black-url:1:7753 [google.com]

    Regards,
    J.M.
    Professional Lurker

    Google have fixed this link now but that was funny, most of the logins/passwords were for gmail accounts...
  • Biased (Score:1)

    by vegardh (831486) on Friday January 05 2007, @04:39AM (#17471120)
    This blurb is horribly biased, using ! and "amusingly" and "you guessed it". Google don't own any properties like Geocities, and don't have that problem. Yahoo! have several people weeding out scam stuff all day long.
    • Re:Biased by Pyrusj (Score:1) Friday January 05 2007, @08:52AM
  • Google blacklist (Score:1)

    by ituloy angsulong (1047222) on Friday January 05 2007, @04:52AM (#17471184)
    At least Google made efforts to weed out these sites. http://www.ituloyangsulong.org/ [ituloyangsulong.org]
  • Date: Fri, 05 Jan 2007 12:44:23 +0000
    From: Bank of America
    Subject: Secure SSL server update

    [-- text/html is unsupported (use 'v' to view this part) --]
  • by Arrogant-Bastard (141720) on Friday January 05 2007, @07:43AM (#17471996)
    A. This problem has been discussed in depth on various
    anti-spam mailng lists and newsgroups for many years.
    This long-standing problem has been steadfastly ignored
    by Yahoo, who went so far as to dismiss the key people
    on their own abuse staff when they tried to address it.

    As a consequence, it's now a better-than-even bet
    that any site hosted by Yahoo belongs to a spammer,
    phisher, spyware injector, child pornographer, scammer
    or other lowlife. My own meager list of Yahoo-hosted
    dropboxes for such stands at 26,831 this morning and
    those are just the ones that brought themselves to
    my attention, i.e. I'm passively noting them and not
    actively searching them out.

    As a result, Yahoo is one of the biggest spam-sending
    and spam-supporting operations on the entire Internet.
    (Oh, and Geocities is now completely infested. Rejecting
    all inbound mail [except anti-spam discussions] that contains
    a Geocities URL is a surprising effective tactic.)

    B. They're not alone. For instance, MSN BCentral should
    be renamed MSN SpamCentral -- it's just as bad. And Hotmail
    cheerfully hosts spammer dropboxes by the tens of thousands.

    There are others, but what makes these two particularly
    annoying is that they make a public show of being anti-spam
    by promoting snake-oil like SenderID and DomainKeys, both
    of which are worthless. (If it isn't obvious why, then think
    about the hundreds of millions of zombies -- hijacked Windows
    systems -- out there and consider that their new masters
    have possession of all email credentials belonging to their
    former owners -- from POP passwords to PGP keys. It is not
    possible to solve the forgery problem -- for any useful
    definition of "solve" -- without solving this problem first.
    Good luck. This same thing applies to SPF and variants, by
    the way, all of which are complete failures.)

    Another thing that distinguishes them is the absolutely
    irresponsible, totally clueless way in which abuse reports
    are handled. Most seem to disappear into black holes. The
    majority of the rest are returned with semi-literate denials
    that the abuse has any connection with their operation -- even
    when their own IP address are clearly the source. If you'd
    like to browse a huge number of examples of this, go to
    Usenet's news.admin.net-abuse.email and search for
    "Yahoo clueless" or "Hotmail clueless". Make coffee first.

    The bottom line is that both of these services are huge abuse
    magnets and have been for years, so I find it curious that
    yet another report of the same old thing is deemed noteworthy.
  • How does Google monitor these sites for content updates to update the Google index? Does Google offer the public (or private subscribers) a way to register a website or URL to be polled ongoing? Notification that it's changed? Web services offering "uptime" monitors seem to do this, as does apparently Google News. Can mere mortals access the feature?
  • by peter303 (12292) on Friday January 05 2007, @10:28AM (#17473834)
    Hmm, looks suspicious to me.
  • yahoo phishing site (Score:4, Funny)

    by TheCybernator (996224) on Friday January 05 2007, @10:45AM (#17474124)
    i went to mail.yahoo.com and they asked my name and password. i am smart and i fooled them by giving my gmail password.
  • Linking to original site (Score:2, Insightful)

    by aegl (1041528) on Friday January 05 2007, @01:07PM (#17476562)
    "The pages are generally exact replicas of the original web page and generally pull graphics (*.jpg, *.gif, etc.) from the legitimate web site."

    The owners of the original sites should regularly rename the real image files, and replace the old files with images that would help inform the potential victim that they were on a scam site.

    Next step is that the phishers no longer link to the image files, but copy them instead ... but this gives the real site owner another legal tool (copyright infringement) to shut down the phishing site plus a clear legal path to extract money from the phisher.

  • Mod Papa Funny (Score:2)

    by PopeRatzo (965947) on Friday January 05 2007, @07:02AM (#17471808)
    (http://thewaxwingslain.com/)
    It made my ass laugh at 6am.
    [ Parent ]
  • 4 replies beneath your current threshold.