Slashdot Mirror


Cameroon Typo-Squats all of .com

wayne writes "As reported on CircleID, the nation of Cameroon, which controls the .cm top level domain, has typo-squatted all of the .com domain space. They have placed a wildcard DNS record to redirect all traffic to an ad-based search page. Unlike the earlier case of Verisign putting a wildcard in the real .com domain, ICANN has very little direct control over what a nation can do with their own TLD. Will the owners of .co and .om follow?"

23 of 402 comments (clear)

  1. Re:There's typos, and then there's THAT by FuturePastNow · · Score: 4, Informative

    Uh, do you understand the point of the article?

    Go to this site: http://www.cnn.com/

    Now go here: http://www.cnn.cm/

    That's typosquatting.

    --
    Give a man fire, and you warm him for the night. Set a man on fire, and you warm him for the rest of his life.
  2. Re:There's typos, and then there's THAT by Pantero+Blanco · · Score: 4, Informative

    No, they typo-squatted ".com", in the same way that "goggle.com" and the like typo-squatted "google.com". Domain-squatting is something else entirely, and involves registering the actual target address and sitting on it, then trying to sell it for an increased sum.

    They typo-squatted .com by domain-squatting .cm.

  3. for those that don't get it, .cm == typo of .com by Anonymous Coward · · Score: 1, Informative

    I have no idea how many people mistype .com though, that's a pretty bad/lazy typo

  4. Re:Smart move. by Pantero+Blanco · · Score: 5, Informative

    It's too bad that none of that is likely to trickle down.

    From what I understand, the government there controls (well, attempts to) the broadcast channels pretty damn strictly, and voicing an opposition political opinion is generally called "libel" and involves jail time. Hoarding the TLD isn't a surprising move for them.

  5. There's an easy fix for this... by Anonymous Coward · · Score: 0, Informative

    Just edit your hosts file, and redirect *.cm to 127.0.0.1 in it. That way, even if you ever make that kind of typo on accident, you don't reward them for it.

    And if enough people do it, it renders the ENTIRE TLD worthless, thereby economically punishing them, to boot.

    1. Re:There's an easy fix for this... by Ash-Fox · · Score: 5, Informative
      Just edit your hosts file, and redirect *.cm to 127.0.0.1 in it. That way, even if you ever make that kind of typo on accident, you don't reward them for it.
      Since when could the hosts file support wildcards?
      --
      Change is certain; progress is not obligatory.
  6. Re:This story is complete bullshit by interiot · · Score: 3, Informative
  7. Re: Parent article is complete bullshit by raju1kabir · · Score: 2, Informative
    Cameroon is not typo-squatting anything. If you type in a domain name ending in .cm that hasn't been specifically assigned to someone, you get a fairly innocuous default page with links to ads. So what?

    So that's exactly what typosquatting is. What do you think it is?

    --
    "Patriotism is your conviction that this country is superior to all other countries because you were born in it." -- GBS
  8. Ctrl+Enter by IceCreamGuy · · Score: 3, Informative

    I seriously don't think I've actually typed out "www." or ".com" in at least 4 years. Just type website then Ctrl+Enter and Firefox and IE add it for you. I don't think Safari, Nautilus, or Konqueror do it by default but I might be wrong. But if you're using Firefox, it's so much easier. There's also Shift+Enter for ".net" and Ctrl+Shift+Enter for ".org".

  9. Re:Not an issue. by CRC'99 · · Score: 2, Informative
    Same reasons that Verisign's wildcard service was decried, among other things this will cause every name.cm to resolve so it's going to at least screw with some spam blocking methods. If other countries follow suit then it gets even messier.


    Last time I checked, Verisign wasn't a country or even a government service. It's a private company. That's where the difference lies.
    --
    Sendmail is like emacs: A nice operating system, but missing an editor and a MTA.
  10. Company behind it by rf0 · · Score: 5, Informative

    Looking at this is appears that a company called "NameView Inc" is supplying the ads from the IP block 72.51.27.0 - 72.51.27.255 http://www.nameview.com/

    Prehaps calling them on +1 (309) 424-5497 might help to say what a bad idea this is or we can just block the IP range (which is now what I'm going to do)

  11. BIND has a quick fix for this by sa3 · · Score: 5, Informative

    ;; QUESTION SECTION:
    ;google.cm. IN A
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 6369
    ;; ANSWER SECTION:
    google.cm. 518 IN A 72.51.27.58
    zone "cm" IN { type delegation-only; };
    ;; QUESTION SECTION:
    ;google.cm. IN A
    ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 12264

    1. Re:BIND has a quick fix for this by hacker · · Score: 2, Informative

      This will work also:

      options {
      root-delegation-only exclude {
      "ad"; "af"; "ar"; "biz"; "cr"; "cu"; "cm"; "de"; "dm"; "id";
      "lu"; "lv"; "md"; "ms"; "museum"; "name"; "no"; "pa";
      "pf"; "se"; "sr"; "to"; "tw"; "us"; "uy";
      };
      }
  12. ccTLD's aren't really "top level". by nuckfuts · · Score: 2, Informative

    ICANN has very little direct control over what a nation can do with their own TLD.

    ICANN controls a root DNS server, which is authoritative for the "." zone - one level higher than a ccTLD. This means they get to say what DNS servers are authoritative for .cm, and could send traffic to different servers if they really wanted to. Or at least they could redirect queries that came to their particular root server. If the other root servers followed suit they could do whatever they want with any ccTLD.

  13. Re:Not an issue. by KiloByte · · Score: 5, Informative
    Same reasons that Verisign's wildcard service was decried...
    And, fortunately, the fix is exactly the same: Here's the default named.conf:

    // From the release notes:
    // Because many of our users are uncomfortable receiving undelegated answers
    // from root or top level domains, other than a few for whom that behaviour
    // has been trusted and expected for quite some length of time, we have now
    // introduced the "root-delegations-only" feature which applies delegation-only
    // logic to all top level domains, and to the root domain. An exception list
    // should be specified, including "MUSEUM" and "DE", and any other top level
    // domains from whom undelegated responses are expected and trusted.
    // root-delegation-only exclude { "DE"; "MUSEUM"; };

    So, this option will preemptively avoid all jerkwads like Verisign and Cameroon. The only question is, why this isn't enabled by default.

    --
    The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
  14. URL FCixer entension will sort this by Robmonster · · Score: 2, Informative

    Just install the following extension:-

    http://www.efinke.com/url-fixer/

    Corrects common .com typos for you.

    --
    I have no sig yet I must scream.
  15. Bad Article Title - Bad Summary Title by pjotrb123 · · Score: 4, Informative

    They did NOT typo-squat "all of .com".
    They typo-squatted "all of .cm".

    Quite a difference, if you ask me.
    Unless you are a sensationalist, of course.

    --
    I liked my next sig a lot better
  16. Re:Smart move. by ergonal · · Score: 4, Informative

    Funny thing is, there's a big flaw in their click script: http://www.slashdot.cm/click.php?b=zQmE%2BQ3Pc00%3 D&term=slashdot&position=1&to=aHR0cDovL3NsYXNoZG90 Lm9yZy8 Ability to redirect to any site you want? GNAA will have fun with this.

  17. Re:Smart move. by Necroman · · Score: 4, Informative

    And to help the people that don't want to copy and paste.

    SXQncyBiYXNlNjQgZW5jb2RpbmcuIE5leHQgcXVlc3Rpb24/
      =
    http://www.slashdot.cm/It's%20base64%20encoding.%2 0Next%20question

    --
    Its not what it is, its something else.
  18. Re:WWW/HTML is a minor problem by sholden · · Score: 2, Informative

    And if you typo it as friend@hmail.com it'll go somewhere else as well...

    or if you typo it as freind@gmail.com it'll go to someone else too...

    Maybe you could try not typoing the address in the first place. Strangely enough when you make a "typo" on the envelope of a letter your letter might end up at the wrong house.

  19. Re:Smart move. by operagost · · Score: 3, Informative
    Claiming that because Jesus did not condone an act, he must have condemned it, is illogical rubbish. He didn't say "thou must post uninformed comments on Slashdot" either.

    Jesus never suggested that nations should (or could) act in the way that individual believers act. We have many examples of this:

    "Render unto Caesar what is Caesar's; and unto God what is God's."

    "There is no nation upon this earth which God himself has not established."

    It is also written in Ecclesiates that "to every thing there is a season", and one of these is "a time to kill, a time to heal"-- indicating that it is right to strike in the name of defense or justice but that amends must be made in the end. Jesus confirmed this in Luke 22:36-38 by advising his followers to sell their cloaks and buy a sword. Whether you believe a war is justified or not is up to you, but to make a blanket statement that a Christian president has to be a pacifist is baseless. His job is to protect his citizens.

    --

    Gamingmuseum.com: Give your 3D accelerator a rest.
  20. Re:Smart move. by Anonymous Coward · · Score: 0, Informative

    that a Christian president has to be a pacifist is baseless.

    Pacifist? Who said anything about pacifist? What about the lies, the hypocrisy, the corruption, and of course, the fighting tooth and nail for the right to torture... so sorry, humiliate suspected terrorists by forcing them to fuck each other in the ass while the cameras roll? Can any Christian say with a straight face that this man represents themselves?

  21. Re:Smart move. by fm6 · · Score: 3, Informative

    Very cute. Actually, Cameroon is an oil exporter, with an effective GDP of $40 billion. Of course, very little of this wealth has trickled down to the masses, but the country as a whole is hardly poor.