Slashdot Mirror


The UK Is About to Legalize Mass Surveillance [Update] (vice.com)

From a report on Motherboard: On Tuesday, the UK is due to pass its controversial new surveillance law, the Investigatory Powers Act, according to the Home Office. The Act, which has received overwhelming support in both the House of Commons and Lords, formally legalizes a number of mass surveillance programs revealed by Edward Snowden in 2013. It also introduces a new power which will force internet service providers to store browsing data on all customers for 12 months. Civil liberties campaigners have described the Act as one of the most extreme surveillance laws in any democracy, while law enforcement agencies believe that the collection of browsing data is vital in an age of ubiquitous internet communications. "The Investigatory Powers Act 2016 will ensure that law enforcement and the security and intelligence agencies have the powers they need in a digital age to disrupt terrorist attacks, subject to strict safeguards and world-leading oversight," a statement from the Home Office reads. Much of the Act gives stronger legal footing to the UK's various bulk powers, including "bulk interception," which is, in general terms, the collection of internet and phone communications en masse. In June 2013, using documents provided by Edward Snowden, The Guardian revealed that the GCHQ taps fibre-optic undersea cables in order to intercept emails, internet histories, calls, and a wealth of other data. Update: "Snooper's charter" bill has become the law. The home secretary said:"The Investigatory Powers Act is world-leading legislation, that provides unprecedented transparency and substantial privacy protection. "The government is clear that, at a time of heightened security threat, it is essential our law enforcement and security and intelligence services have the power they need to keep people safe. The internet presents new opportunities for terrorists and we must ensure we have the capabilities to confront this challenge. But it is also right that these powers are subject to strict safeguards and rigorous oversight."

394 comments

  1. Encrypt! by Anonymous Coward · · Score: 0

    If you're sending anything important in plain text over the Internet these days, you're as good as asking the government to read it.

    1. Re:Encrypt! by Anonymous Coward · · Score: 1

      Governments have the power to get root certificates in which case they can man-in-the-middle anything that relies on this, which is a hell of a lot of software. Browsers being the most prominent but tons of software depends on X509 certs with globally trusted roots.

    2. Re:Encrypt! by mark-t · · Score: 1

      Would it then be illegal to utilize an encryption protocol that you invented yourself? How would they even know, particularly if your encryption protocol has a layer of steganography?

    3. Re:Encrypt! by coastwalker · · Score: 2

      Who cares what you send, they know how you think because an algorithm looks at the web sites you visit and decides which box you belong in. It must be a right pain switching all the Russian site readers out of the terrorist box and moving all the Arab news site readers in to replace them to align with Trump. Expect Tor and VPN to be made illegal shortly.

      --
      Facts are history now plebs have politics for religion on social media.
    4. Re:Encrypt! by Oswald+McWeany · · Score: 4, Insightful

      Talking about putting people in boxes. If you use Tor, expect the government to be looking at you a little closer. Surely you must have something to hide if you have Tor.

      It's like putting a box in the break room with a note saying "do not peak" written on it. Everyone is going to open the box. Use Tor and the government is going to want to see what you're doing.

      --
      "That's the way to do it" - Punch
    5. Re:Encrypt! by Anonymous Coward · · Score: 5, Insightful

      You and I don't need to invent anything. We can create our own encryption keys, exchange them, and securely communicate.

      The problem is the HTTPS infrastructure is broken by design, which is what the original poster was talking about.

      The absolute irony is that visiting a site with a self-signed certificate shows the user a warning error (I understand why, don't worry) yet the resulting HTTPS exchange is actually immune to any and all eavesdropping. When visiting a site with a cert authority signed certificate, no error is displayed, yet this connection is vulnerable to anyone who has broken/intercepted the chain of trust. This includes state actors, but also businesses, and anyone that can get their certs onto your system, or can influence the signing authorities to give them the keys.

      At this point some rabid net admin for a large corporation will chime in with "it's my network" etc... but the point is that we have been training users for years to interpret HTTPS as being "secure" and "safe" when it actually isn't. Just like we have been encouraging users to update Windows, yet now Microsoft have broken that trust with their forced updates and broken/mislabeled updates. The internet is currently broken and indeed has been broken maliciously by state actors. Are we going to just accept that as "good enough" and live with it? What exactly was so terrible about the internet in 1990 or 2000, before the NSA got their hooks in and started fucking everything up?? Can we point to a global reduction in crime, violence, terrorism, or child pornography, due to the valliant efforts of the NSA and similar outfits abroad?

      At the **very very least** prior to this bill in the UK passing, anyone with half a mind should take note of the current state of UK society and crime. In ten years time, once the full ramifications of these new laws come to pass, look around again and make a comparison. My prediction, for what it's worth, is everything will be exactly the same (in which case what was the point?) or it will be much much worse.

    6. Re:Encrypt! by roertel · · Score: 2

      It starts Thursday in the US: (From Techdirt)

      the DOJ wants permission to break into "compromised" computers and poke around inside them without the permission or knowledge of the owners of these computers. It also wants to treat anything that anonymizes internet users or hides their locations to be presumed acts of a guilty mind.

    7. Re:Encrypt! by mark-t · · Score: 2

      Everyone has something to hide, whether they use Tor or not. Quite literally, everyone. Having something to hide, however, does not mean that one is doing or has done anything wrong, it only means that they want something to be private,

    8. Re:Encrypt! by TheRaven64 · · Score: 5, Informative

      The absolute irony is that visiting a site with a self-signed certificate shows the user a warning error (I understand why, don't worry) yet the resulting HTTPS exchange is actually immune to any and all eavesdropping. When visiting a site with a cert authority signed certificate, no error is displayed, yet this connection is vulnerable to anyone who has broken/intercepted the chain of trust

      Not quite. Both connections are entirely safe from passive eavesdropping. Even if I've compromised a root cert that you're using, that doesn't let me decrypt TLS traffic. It does mean that if I am actively performing a man in the middle attack on you, then you won't notice, because during the initial key exchange you'll connect to me and establish a secure connection and I'll connect to the remote server and establish a secure connection. You'll trust me because I'll use a cert signed by one that I trust. The difference between this and a self-signed cert is that when the server uses a self-signed cert, there's no need for me to compromise a root cert that you trust: I can still perform the MITM attack and you won't know the difference.

      Certificate pinning protects you from this to a degree: If you connect to a server twice and the certificate changes, then there may be a problem. On the other hand, there might not be, and with a self-signed cert, you can't revoke it if it's compromised and you can't easily advertise the fact that this is a replacement cert from the same person (unless you properly self-sign, rather than simply not signing, and people pin your signing cert).

      Certificate transparency protects in both cases, by providing a public log of all of the certificates that have been seen by people connecting to the server. If the server operator sees a cert that they didn't issue, or if you see a cert that's not the same one that other people are seeing, then something is wrong.

      --
      I am TheRaven on Soylent News
    9. Re:Encrypt! by Oswald+McWeany · · Score: 3, Insightful

      I'm not disagreeing with your statement. I'm just saying, by going out of your way to hide, "the man" is going to want to snoop all that much more- they're going to jump to assumptions. That's what the man does.

      --
      "That's the way to do it" - Punch
    10. Re:Encrypt! by slack_justyb · · Score: 1

      it only means that they want something to be private

      Yeah I think you're missing the central axiom here. Stanly G-Man doesn't really know if your Tor is "Hey I just want to privately watch my squid fetish" or if it is "Hey here's the blueprints for where to put the bomb." Seeing how they'll tend to look similar at cursory glance. So if you do have something you want to hide, because it's just easier to assume you are the next bin Laden in waiting and then breathe the customary/belittling sigh of relief where you are not, they'll just go ahead and sit in on that tentacle scene with you.

    11. Re:Encrypt! by mark-t · · Score: 1

      I couldn't directly tell from the page you linked to. How do they define "compromised"?

    12. Re:Encrypt! by Anonymous Coward · · Score: 0

      And with all this HTTPS everywhere malarkey, people (even mediocre sysadmins) have been trained to ignore the castration-politicization of the free Internet that this rather naive movement represented.

      Remember that old "if it's free, you're the product" bit when you're buying into the craze and slapping down LetsEncrypt certificates on everything you've got.

    13. Re: Encrypt! by Anonymous Coward · · Score: 0

      Use Signal for all calls and messages. Not even any metadata.

    14. Re:Encrypt! by Anonymous Coward · · Score: 1

      The point of using a box and encouraging others to do so is both privacy and let them know "it's not ok to snoop on me". The larger the "This person is using VPN" box to tick is the less you can assume about it.

    15. Re:Encrypt! by sce7mjm · · Score: 1

      How do they define "compromised"?

      Windows 10?

    16. Re:Encrypt! by Freischutz · · Score: 1

      Governments have the power to get root certificates in which case they can man-in-the-middle anything that relies on this, which is a hell of a lot of software. Browsers being the most prominent but tons of software depends on X509 certs with globally trusted roots.

      Huh??? a certificate signed by a CA contains only the public key so unless your certificate authority generated your private key for you and stored it the root certificate won't do the NSA a damn bit of good.

    17. Re:Encrypt! by ooloorie · · Score: 1

      Governments have the power to get root certificates in which case they can man-in-the-middle anything that relies on this, which is a hell of a lot of software. Browsers being the most prominent but tons of software depends on X509 certs with globally trusted roots.

      They just rely on root certificates for authentication of public web pages. People rely on them when they don't have any other way of exchanging keys. They don't make the cryptographic protocols or keys themselves insecure.

    18. Re:Encrypt! by Maritz · · Score: 4, Interesting

      The whole idea that this has anything to do with combating terrorism is just the Big Lie. It is about power. Terrorism and children are just the justification for the feeble minded and ignorant.

      --
      I do not want your cheap brainburning drugs. They are useless for work. And I am a working man today.
    19. Re:Encrypt! by Anonymous Coward · · Score: 0

      Although you can also create a self-signed certificate that you trust yourself. That then allows you to spot if someone else attacks it in future, providing it was ok on the first attempt. Someone else can similarly trust the same certificate.

      Or even create a self-signed CA. Of limited use though since it only helps you - you can't share it with even one other person because it breaks *their* chain of trust as you could then sign anything.

    20. Re:Encrypt! by sacrilicious · · Score: 1

      And with all this HTTPS everywhere malarkey

      I call bullshit on you. The EFF's HTTPS-Everywhere is not "malarkey".

      I don't know if you're trying to imply that HTTPS-Everywhere forces people to use HTTPS (it doesn't) and that therefor more people are self-signing certs which is would somehow be bad (it isn't)... I can only guess, because your post reads like buzzword bingo, and seems quite intent on undermining confidence in encrypting.

      bull SHIT, brother.

      --
      - First they ignore you, then they laugh at you, then ???, then profit.
    21. Re:Encrypt! by richardkettle4 · · Score: 1

      Just a general remark: it is a sad time when we are even have to discuss this. I agree, if you use Tor you must be doing something wrong: that is the default position and also, expect our governments to be monitoring it.

    22. Re:Encrypt! by WaffleMonster · · Score: 1

      I call bullshit on you. The EFF's HTTPS-Everywhere is not "malarkey".

        I don't know if you're trying to imply that HTTPS-Everywhere forces people to use HTTPS (it doesn't) and that therefor more people are self-signing certs which is would somehow be bad (it isn't)... I can only guess, because your post reads like buzzword bingo, and seems quite intent on undermining confidence in encrypting.

        bull SHIT, brother.

      Honestly I fundamentally don't get any of this. It makes no logical sense to me.

      Let's encrypt (LE) runs some kind of agent that does some voodoo to automatically renew certs on a quarterly basis.

      Commercial cert providers that cost what $10/yr allow you to put something in a folder on your unsecured website to verify possession. LE does essentially the same thing programmatically depending on responses from *unsecured* protocols.

      All of these systems depend on totally unsecured communications channels to build trust which on it's face makes about as much sense as asking a liar if they are being truthful. Nothing about the current system makes sense to me.

      If certs want to be free why not just let them be free without requiring these weird agents and piecemeal expiry periods? What's the point in that?

      What EFF and others should have done was work to build consensus to move CA function to the domain registrars / make DANE usable and put an end to this senseless, redundant, counterproductive and dangerous system of CA's we have today.

      What they did instead was make CA's even more dangerous by forcing them to compete with free.

    23. Re:Encrypt! by mSparks43 · · Score: 1

      i agree

      now please send me your credit card number, its expiry date and ccd code.

      plus the login details to your bank.

      or just maybe.

      the only ones with nothing to hide are those with nothing to lose. Aka the terrorista.

    24. Re:Encrypt! by Oswald+McWeany · · Score: 1

      Jenny Tutone
      8675309 8675309
      09/2019
      125

      --
      "That's the way to do it" - Punch
    25. Re:Encrypt! by Anonymous Coward · · Score: 0

      Can't one buy a net appliance that performs deep inspection of HTTPS packets provided the client browsers have the certs installed? My understanding is that this device basically performs a MITM attack on every HTTPS connection and logs everything to disk for future inspection if required. Such an appliance can be sold to businesses and installed as transparent proxies on their uplink. Anyone with real experience care to comment on that?

    26. Re: Encrypt! by Anonymous Coward · · Score: 0

      Knowing governments, something along the lines of "able to be broken into."

    27. Re:Encrypt! by Anonymous Coward · · Score: 0

      with regards to freedom and privacy.... many things are already worst than 20 years ago, and to thik that in the sixties people were dreaming wit changing the world, HA...now they want Trump, Brexit and Marie Le Pen

    28. Re:Encrypt! by grcumb · · Score: 2

      If you're sending anything important in plain text over the Internet these days, you're as good as asking the government to read it.

      What a completely ------ thing to say to someone like -------! I can't figure out why people like you always ---- and ----- when you could be ---ing. Seriously, do you even ---- it? I for one trust out ----- over----s completely. Rule Brit------!!!

      (and now I have to write a bunch of other useless prose to get by Slashdot's junk filters. Which is a really useless filter. I mean just because goatse ASCII is a thing doesn't mean no one ever had any legitimate uses for copious punctuation. My word, are we really reduced to such silliness? How much more of this do you think will be required before the filter finally lets this past? Probably a little more still. Hang on, let me preview.... Nope. still not enough. If this doesn't improve soon, I'm just going to load up a Tolstoy eBook and start pasting in sections of Anna Karenina, but then again that would probably just set off the plagiarism filter. Heathens have no appreciation for satire, I tell you.)

      --
      Crumb's Corollary: Never bring a knife to a bun fight.
    29. Re:Encrypt! by Anonymous Coward · · Score: 0

      At the **very very least** prior to this bill in the UK passing, anyone with half a mind should take note of the current state of UK society and crime. In ten years time, once the full ramifications of these new laws come to pass, look around again and make a comparison. My prediction, for what it's worth, is everything will be exactly the same (in which case what was the point?) or it will be much much worse.

      And who pray tell will report these seditious lies about the Utopian state of our future society where all wrong doing is detected before it even happens, the perpetrators are arrested and punished automatically with an accuracy of nearly 100%? Surely you aren't trying to spread these lies are you?

    30. Re:Encrypt! by Anonymous Coward · · Score: 0

      Of course. Authoitarian puritanism isn't anywhere near as dead as it should be.

    31. Re:Encrypt! by Fragnet · · Score: 1

      Who knows. It certainly could be the foundations of something really quite sinister. On the other hand it could be just what it claims to be: aid to prevent and track down evildoers [sic]. We've been here before in the UK with CCTV. It's become something of a cliche to say it's Orwellian. But you know, the world is changing. Absolutely everybody and their mum has an HD video camera permanently on their person. What can I do about that to protect my privacy? Seemingly nothing.

    32. Re:Encrypt! by ATMAvatar · · Score: 1

      The implication is that an actor with ill-intent (like the NSA) obtains the CA's private key and uses it to generate certificates of their own for MITM attacks. Any browser that trusts the CA will automatically trust the new certificates, and the user will be none-the-wiser.

      This has already happened several times, resulting in browser vendors pushing out updates that removes compromised CAs from their trusted lists.

      --
      "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
    33. Re:Encrypt! by Anonymous Coward · · Score: 0

      >It's like putting a box in the break room with a note saying "do not peak" written on it.

      Or even 'peek'!

    34. Re:Encrypt! by Anonymous Coward · · Score: 0

      I don't know why everyone gets so worked up. Apparently the government is more vulnerable to nefarious data acquisition and than the average citizen. Every month you hear about someone hacking into a government related system and downloading information. And they certainly cannot secure their e-mail systems. The US government is more transparent then anytime since the country was founded. The Constitution and Bill of Rights are a work in progress. The Bill of Rights declared all men are created equal while slavery was still in vogue. We as society are still trying to fulfill that proclamation. The sad thing is that almost no one really studies US history so they cannot recognize the incremental progress that has been made.

    35. Re:Encrypt! by TheRaven64 · · Score: 1

      Yup, they exist. They do require that you install their root cert on the client device though - I'm not aware of any vendors that have a pre-compromised one (though you can install your own, and I'm sure that intelligence services do). Certificate Transparency would protect you here, because you'd be seeing different certs to anyone else (except people behind the same proxy). Similarly, certificate pinning will work if you've connected to the site from a different location first. Self-signed certs won't help without certificate pinning, because you will just see a self-signed cert in both cases (unless the box signs even unsigned certs, in which case you might notice that you're not prompted that the encrypted connection is untrusted when it's been MITM'd).

      --
      I am TheRaven on Soylent News
    36. Re:Encrypt! by lrichardson · · Score: 1

      Two thoughts/questions:

      What's to stop people from going full on proxy/Tor ? The only IP addresses recorded are worthless.

      Is there any limit to how much information each ISP must record? The articles talk about 'A Year'. Can someone write a small app to simply run through a list of a couple of dozen websites - all with extremely long URLs - for a couple of hours after you finish browsing, racking up a Gig or two of storage? Just a thought for something that would make this technically unfeasible.

    37. Re:Encrypt! by sacrilicious · · Score: 1

      Just to be clear: I was responding to a comment about HTTPS-Everywhere, which -- although stewarded by EFF the way Lets Encrypt is -- is a totally different thing. The first is a browser plugin that attemps HTTPS by default, the second is a cert-issuing program.

      I don't have a position on LE, and indeed your post suggests you may have researched it more than I as I'm not acquainted with the description of its inner workings that you give. I'm not saying that I therefor condone thinking LE is confusing or wrong-headed, just that I don't have a position on it at the moment.

      --
      - First they ignore you, then they laugh at you, then ???, then profit.
    38. Re:Encrypt! by sacrilicious · · Score: 1

      Let's encrypt (LE) runs some kind of agent that does some voodoo to automatically renew certs on a quarterly basis.... If certs want to be free why not just let them be free without requiring these weird agents and piecemeal expiry periods? What's the point in that?

      Stray thought: if they renew every 3 months as you describe, I wonder if that's intended to be a substitute for the cert-revocation abilities that come with CAs?

      --
      - First they ignore you, then they laugh at you, then ???, then profit.
  2. Doubleplusgood! by rantrantrant · · Score: 5, Insightful

    It's a beautiful thing, the destruction of civil society :)

    1. Re:Doubleplusgood! by Anonymous Coward · · Score: 1, Insightful

      You know what makes you so pathetic? The fact that we've got the closest thing to a moderate entering the white house (you have researched his actual positions and not just taken CNN at their word, right?) that we've had in a very long time, and you're going all godwin just because he's not particularly PC. Should we start calling Churchill a nazi as well since he wasn't particularly PC?

    2. Re:Doubleplusgood! by Anonymous Coward · · Score: 3, Insightful

      calling pussygrabbing not Pc is a bit of an understatement.

    3. Re:Doubleplusgood! by Anonymous Coward · · Score: 1

      And with the good ol' US of A, with the nazis taking control, will be soon to follow out founding fathers, the Brits..

      As soon as Obama gets Bush out of the White House, our problems with an out-of-control government will be over.

      Did you know Bush is planning on using drones to assassinate US citizens!!!!?!?!

    4. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Said in every locker room every day. And not just in the guy's locker room - women are just the same when guys aren't around.

    5. Re:Doubleplusgood! by DavidHumus · · Score: 1

      Only if you consider demonstrated, utter contempt for rule of law to be moderate, not to mention appointments based solely on loyalty to Der Donald.

    6. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Maybe when you're 10 years old and don't know any better. As far as I can tell, Trump is a grown man.

    7. Re:Doubleplusgood! by PopeRatzo · · Score: 1

      he's not particularly PC

      I don't know if you follow the news over there in Russia, but apparently President-Elect Urinal Cake is very PC when it comes to burning the American flag.

      https://twitter.com/realDonald...

      Of course, he'll have to deal with that pesky Constitution, but I'm sure Trump won't let that stand in his way.

      --
      You are welcome on my lawn.
    8. Re:Doubleplusgood! by Wycliffe · · Score: 2, Insightful

      calling pussygrabbing not Pc is a bit of an understatement.

      As opposed to Bill Clinton, Kennedy, etc... who are actually documented as womanizers? Yes, Trump might be a womanizer but you would be hard pressed to name a president that wasn't. Really the only difference between Trump and most other former presidents is that he says in public what other presidents say and do in private. That's what most Trump supporters realize that the left doesn't seem to understand. Sure, Trump is an asshole but so were all the other presidents. They were just better at hiding it.

    9. Re:Doubleplusgood! by Wycliffe · · Score: 1

      It's a beautiful thing, the destruction of civil society :)

      Sadly, I expect it to continue to get worse and worse until it gets bad enough that the "resistance" decides to reset society with an EMP bomb or some such weapon like the tv show "Revolution".

    10. Re:Doubleplusgood! by Jason+Levine · · Score: 1

      The Constitution and two Supreme Court rulings. One (Texas vs Johnson) which says that flag burning is an expression of your First Amendment rights and another (Afroyim vs Rusk) that says that the government can't revoke your citizenship as punishment for a crime. (Trump mulled removing someone's citizenship as "punishment" for flag burning.) Even Scalia recognized that flag burning was covered by the First Amendment

      Yes, he'll get at least one Supreme Court appointment, but - at best (for him, not us) - he'd need to have the law passed, have it immediately challenged in court, and have it work up to the Supreme Court in the hopes that it wouldn't get struck down along the way.

      --
      My sci-fi novel, Ghost Thief, is now available from Amazon.com.
    11. Re: Doubleplusgood! by Anonymous Coward · · Score: 0

      Trump's "positions" are made up on the spot and about as long-lasting. He's a classic bullshitter.

    12. Re:Doubleplusgood! by Anonymous Coward · · Score: 1

      Only if you consider demonstrated, utter contempt for rule of law to be moderate, not to mention appointments based solely on loyalty to Der Donald.

      Would modifying statutory deadlines in Obamacare by executive fiat also be utter contempt for the rule of law?

      Or are you a hypocrite?

    13. Re:Doubleplusgood! by Grishnakh · · Score: 1

      Trump comes off as a moderate with some of the things he casually says, and personally I don't really care much about the PC stuff or locker-room comments. But what contradicts your claims about him being a moderate are the people he surrounds himself with, such as Steve Bannon from Breitbart, and other far-right wackos like that, plus his own running mate, religious wacko Pence.

    14. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      As goes Great Britain, so goes California.

      As goes California, so goes the rest of the US.

      It might take a few years, but it will happen.

      Of course, with the change in Washington, D.C., to a regime that favors "Law and Order", it might take even less than that.

      You have not privacy. Get over it.

    15. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Die in a fire bootlicker

    16. Re:Doubleplusgood! by squiggleslash · · Score: 1

      He started his campaign by demonizing and scapegoating immigrants. He continued by demonizing members of a minority religion and proposed policies actively harmful to them. He actively encouraged, promising to pay the legal fees for, supporters to attack protestors, who were at the time standing silently holding banners criticizing Trump's previous comments. He has continued along these lines, and before the election itself even started making threats to prosecute his political opponent over charges long since investigated and dismissed by not only law enforcement, but by hostile congressional committees. He even - for reasons that remain peculiar - managed to insert barely concealed anti-Semitic language in his last round of election ads.

      What about him makes you say he's the "closest thing to a moderate"? Because I'm not seeing it. He's the closest thing to Mussolini we've seen win the Presidency (or even get close to winning the Presidency.) Is he as bad as Mussolini? Mussolini started in a country that had descended into lawless anarchy, and could get away with a lot more than Trump can. So it's hard to really make a direct comparison, but we know what drives both.

      I appreciate many don't like Clinton. I don't either. Depending on how many conspiracy theories you believe about her, she's either an honest, female, version of Richard Nixon, or, well, just as bad as Richard Nixon. But even Nixon vs Mussolini is no contest.

      What's frightening is that while all of this was acknowledged before the election, now he's one many seem to feel the need to fall in line and pretend it's not happening. Oh no, it must instead be the media's fault, the "lying press"... now where have I heard that phrase before?

      --
      You are not alone. This is not normal. None of this is normal.
    17. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      No, it's not.

    18. Re:Doubleplusgood! by dmbasso · · Score: 4, Interesting

      Sure, Trump is an asshole

      IMHO that's the least relevant part of his personality. What is worrisome is the scammer part. How many other presidents ran scams like Trump University?

      --
      `echo $[0x853204FA81]|tr 0-9 ionbsdeaml`@gmail.com
    19. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Clinton Foundation for one.

    20. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      they're already going after several other SCOTUS decisions, whats one more? man, i really hope the tech industry in canada doesn't tank...

    21. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      sorry buddy, but your faux appeal to maturity falls flat. Most locker rooms have that kind of talk regardless of sex.

    22. Re:Doubleplusgood! by CrimsonAvenger · · Score: 1

      have it immediately challenged in court,

      Have it immediately challenged in court in two different jurisdictions, each under a different Court of Appeals, you mean?

      And then get different results in the two Appeals Courts....

      Sorry, the Donald isn't going to get Flag Burning criminalized. Not without eight years in office, plus a sea-change in the composition of ALL the Appellate Courts. Which will take longer than eight years, unless someone starts assassinating Appellate Court judges....

      --

      "I do not agree with what you say, but I will defend to the death your right to say it"
    23. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      You know what makes you so pathetic? The fact that we've got the closest thing to a moderate entering the white house (you have researched his actual positions and not just taken CNN at their word, right?)

      Your "moderate" recently tweeted that flag burners should be jailed or deported.

    24. Re:Doubleplusgood! by DavidHumus · · Score: 2

      Why do conservatives have so much difficulty distinguishing between sexual assault and consensual sex?

    25. Re:Doubleplusgood! by umghhh · · Score: 1

      There is indeed a chance we get nazis in power in US after Trump takes over. Then again they were there before, are there now and would have taken power if the second candidate had won. They all are just different shades of brown. Not sure if this is true for this Stein person (if that is in fact a person) but greens in Europe are brown too..They are all great democrats if one were to believe what they say they believe in. Looking a little bit closer you can seen broken cross behind nice scenery. Looking at their deeds usually confirms their affinity to some shade of brown.

    26. Re:Doubleplusgood! by umghhh · · Score: 1

      This is even worse than you have thought. There are women that like it (i.e. being grabbed by the private parts) too. Shocking or?

    27. Re:Doubleplusgood! by umghhh · · Score: 1

      This is the view I could subscribe to. I had a short discussion with my female colleague about this and that ended very fast. Ever since I am called a redneck around here. Not sure why. I did not say that was a good thing nor I said the women subjected to the treatment should not complain. There is an issue there but it is not what liberal media made it to be. I suppose we will get rid of this at some point but I am not sure that the society that will, will be so nice to be in if you are a man, Some are like this already.

    28. Re: Doubleplusgood! by Anonymous Coward · · Score: 0

      They grab pussy? Pics please.

    29. Re: Doubleplusgood! by Anonymous Coward · · Score: 0

      Why do liberals have so much trouble differentiating between pay-for-play bribery and "charitable foundations"?

    30. Re:Doubleplusgood! by grcumb · · Score: 1

      Said in every locker room every day. And not just in the guy's locker room - women are just the same when guys aren't around.

      I say this with all the respect this statement deserves: Fuck you it is.

      As someone who's spent more time in locker rooms than a lot of you, I have never once in my life heard someone bragging about forcing himself on women, and that 'they let you do it.' And you know what? Even if in some twisted world this actually is the reality, it's still fucking sick. It's describing criminal behaviour. Someone grabs any woman's pussy where I'm in a position to see it, they're going to be physically restrained until the cops come. Not kidding.

      If you're cool with someone acting like a total asshole to someone else, then you need to check your attitude, because only an asshole would think that was alright. So fuck you, and fuck your normalisation of criminal behaviour. That's my sister, asshole.

      --
      Crumb's Corollary: Never bring a knife to a bun fight.
    31. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Maybe when you're 10 years old and don't know any better. As far as I can tell, Trump is a grown man.

      I spotted the sitzpinkler metrosexual candy ass that all the girls want - as a FRIEND. While they go FUCK guys like Trump.

      Did you notice how HAWT!! the women are that Trump marries?

      And you think you need to tell Trump how to treat women? As if you'd ever touch Ivana or Melania with a ten-foot pole, much less your four-inch one.

    32. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Sure, Trump is an asshole

      IMHO that's the least relevant part of his personality. What is worrisome is the scammer part. How many other presidents ran scams like Trump University?

      Bill Clinton, Richard Nixon, Eisenhower, and I'm sure that's not a complete list.

    33. Re:Doubleplusgood! by Wycliffe · · Score: 1

      There is an issue there but it is not what liberal media made it to be.

      The issue is that he did it not that he admitted to it. The other problem I have with the liberal media is bringing up stuff that happened 10, 20, or even 30 years ago. Everyone has a past. Both Clinton and Obama were anti-gay just a few years ago and the media is talking about Trump discriminating against black people 30 years ago. If you don't allow people with pasts you either end up with someone like Clinton who has had a fake persona for years, someone like Obama that appears out of nowhere with no past at all, or someone like Trump who has no political experience. I would much rather see a candidate that has grown, made a few mistakes, changed their position where they realized it was a mistake, and is a better person now because of it than all the fake BS that we get now.

    34. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Because consent would imply their victim is a person on the same level they are.

    35. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Just because you know your wife is having consensual sex with another man doesn't make you an expert on the subject.

    36. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      name a president that wasn't: Jimmy Carter. I'd bet that neither Reagan and Obama were womanizers either, though it's possible they were just really good at covering it up.

    37. Re:Doubleplusgood! by AmiMoJo · · Score: 1

      Because that's traditionally how guys had sex. They had to earn it, with dating and gifts and by beating other men. Thus they were entitled to it once they had made sufficient effort.

      It is this sense of entitlement that is behind most of this "casual" sexual assault. Trump is so successful, he is entitled to grab women's genitals, he has earned it.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    38. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      One wonders when they will get around to relabeling the place "Airstrip One".

    39. Re:Doubleplusgood! by Anonymous Coward · · Score: 0

      Being a womanizer is not the same as bragging about literally sexually assaulting people. You're fucking delusional.

    40. Re:Doubleplusgood! by Wycliffe · · Score: 1

      Being a womanizer is not the same as bragging about literally sexually assaulting people. You're fucking delusional.

      Please explain to me what the difference between bragging about being able to use your power to take advantage of women and what Bill Clinton did which was *actually* use his power to take advantage of women. I'm not a fan of Trump and didn't vote for him but trying to say that what he said is somehow worse than Bill Clinton *did* is idiotic. I realize that it was Bill and not Hillary but Hillary has plenty of her own problems. If you want people to vote based on the character of candidates then you need to give people candidates who actually have *some* character. When your only choices are two deplorable characters then people have no choice but to vote on the issues and ignore the character of the candidates.
      --
      For the record, I think someone like Kasich or Sanders would have easily beat Trump or Clinton because they at least appear to be normal people with morals. Kasich lost because the republican primary had too many candidates and really needed some form of runoff voting. Sanders lost because Clinton and the DNC flat out cheated and rigged the entire primary against him.

  3. Time to become a heap of neutrinos... by Anonymous Coward · · Score: 5, Funny

    ... at least until they legalize mass-less surveillance too.

    1. Re:Time to become a heap of neutrinos... by ContextSwitch · · Score: 1

      Ha, the government may well know my mass, but they'll never, NEVER, know my momentum.

    2. Re:Time to become a heap of neutrinos... by jamiesan · · Score: 1

      Did you realize you were going 65 in a 55?

    3. Re:Time to become a heap of neutrinos... by cyberchondriac · · Score: 1

      That's why they develop Heisenberg compensators in the 23rd century. ;)

      --

      Look back up at my post, now look back down, you're on the Internet. Now look back up. I'm a signature.
    4. Re:Time to become a heap of neutrinos... by Shane_Optima · · Score: 1

      ... at least until they legalize mass-less surveillance too.

      Neutrinos have mass. Best be a photon. This has the additional benefit that no one will ever see you coming.

    5. Re:Time to become a heap of neutrinos... by tomxor · · Score: 1

      Until you smack into their cornea and become a draconian brain wave through phototransduction!

    6. Re:Time to become a heap of neutrinos... by Anonymous Coward · · Score: 0

      An almost fanatical devotion to the Pope works for me.

    7. Re:Time to become a heap of neutrinos... by Anonymous Coward · · Score: 0

      This has the additional benefit that no one will ever see you coming.

      This is exactly what I hope for when "browsing" the web.

    8. Re:Time to become a heap of neutrinos... by Anonymous Coward · · Score: 0

      You will find it difficult to keep it together until they do.

  4. Greener Grass by Anonymous Coward · · Score: 0

    The silver lining in all this, is the UK will still have a better broadband experience than Americans.

    1. Re:Greener Grass by Fly+Swatter · · Score: 2

      The UK has advertisement free web viewing ?

      And their websites don't occasionally have a script that pegs the cpu and makes the browser a sluggish mess ?

      Really, 'broadband experience' has little do with connection speed once you pass 5mbit unless the website is horribly bloated.

      To keep slightly on topic, if surveillance and logging is noticeable to the common citizen, then they are doing it wrong.

    2. Re:Greener Grass by ThatsMyNick · · Score: 1

      Most websites are bloated (looks suspiciously at /.), so yeah it will help. Faster the average the speeds get, the more bloated websites become, unless you choose to browse the slimmed down mobile version.

  5. Oopsie by Anonymous Coward · · Score: 0

    Folks from the UK better not look at this page as it may contain keywords not approved by their overlords. You from the UK and already got this page open? Too late. So sad. You are now on a list...well, maybe 30+ of them since virtually all bureaucratic groups there can get a sniff of what you are doing now. Maybe it is better this way anyway - the elite absolutely worship the China model so I guess it is only natural to force the rest of civilization back several hundred years of civil progress.

    1. Re:Oopsie by Anonymous Coward · · Score: 0

      You reveal your ignorance with your weak troll attempt. They will store records of what websites people visit, but not which pages they visit, much less form data or other interactions. Really not very fine-grained stuff at all. They will not know what keywords you may have looked at, if they don't even know what pages you looked at on a site.

    2. Re: Oopsie by Anonymous Coward · · Score: 0

      That's hilarious. You don't actually believe that do you?

    3. Re:Oopsie by Kierthos · · Score: 1

      Also, I given to understand that the entire thing can by bypassed by using a VPN. Not that the vast majority of people affected by this will use a VPN, simply because they don't have the requisite knowledge.

      --
      Mr. Hu is not a ninja.
  6. And us too - soon by Anonymous Coward · · Score: 5, Insightful

    FBI and NSA Poised to Gain New Surveillance Powers Under Trump

    All because you sheeple want to feel safe.

    "People want to be slaves" - Academy Award nominated director I work out with.

    Face it, the people don't want to really be free. They want to feel safe above all else. They are so afraid of terrorism when the fact is they are most likely to die from complications of their obesity or from a car accident because they were distracted while they were updating their facebook page.

    1. Re:And us too - soon by Zurkeyon3733 · · Score: 1

      You got this from the website of a closet liberal, and former democrat. Who only switched sides for a better chance of winning his seat... Bloomberg is a POOR EXCUSE for an American, and if you are listening to him on what comes next you might be disappointed... Cause he is full of shit.

    2. Re:And us too - soon by Maritz · · Score: 0, Troll

      Face it, the people don't want to really be free. They want to feel safe above all else.

      Deeply pathetic isn't it? The same kind of overt, sickening displays of cowardice got Trump elected. White people afraid of Mexicans, Muslims, whatever else. Spineless fuckers.

      It's been said since the dawn of civilization and we still don't get it. Safety is the tyrants' tool. We already have absurd levels of safety - now to be thrown away due to a demagogue.

      There will be a lot less Trump and Brexit cheerleaders on here in 4 years.

      --
      I do not want your cheap brainburning drugs. They are useless for work. And I am a working man today.
    3. Re:And us too - soon by Anonymous Coward · · Score: 0

      He's still correct though, and you're still "steve jackson" - a nobody. Who should listen to you and why? Heh.

    4. Re:And us too - soon by Anonymous Coward · · Score: 0

      I'm surprised the inbred Trump supporter has been assisted with getting on a computer and making Slashdot shitposts!

    5. Re:And us too - soon by frank_adrian314159 · · Score: 2

      There will be a lot less Trump and Brexit cheerleaders on here in 4 years.

      Don't count on it. Kansas is still red after the past dozen+ years of disastrous economic performance due to governance based on conservative economic principles. It never changes the idiots minds - there's always someone else to blame their problems on rather than facing the reality: Their economic principles shrink rather than grow economies.

      --
      That is all.
    6. Re:And us too - soon by richardkettle4 · · Score: 1

      I have lived in the rain forests of the Congo (DR) for years, the people are free. Free to die brutally at the hands of rebels. Do not think it is as simple as saying 'we are free', it is not and you are a bad observer of life to even think so.

    7. Re:And us too - soon by Hognoxious · · Score: 1

      *Sigh*. Fewer cheerleaders.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    8. Re:And us too - soon by Anonymous Coward · · Score: 0

      The majority of people are inferior to any standard of excellence. It is a matter of logical necessity.

      So, yes, most people (and hence, most voters) are thoughtless and cowardly compared to those of us who are brave and thoughtful.

    9. Re:And us too - soon by Anonymous Coward · · Score: 0

      Who should listen to anyone just because they're 'someone'? Heh.

    10. Re:And us too - soon by alvinrod · · Score: 1

      I don't think that's something really that unique to Republicans (also for what it's worth red/blue only became associated with Republicans/Democrats in the 2000 election and previously the Republicans used blue in their party's branding, but that's besides the point) as there are plenty of places that have been Democrat strongholds for decades that are in just as bad of shape (do neither sides economic policies work?). The real crux of the problem is that when any one party maintains control to that degree or has no real challengers, they have no incentive to do better. We look at something like the Comcast or other cable monopolies and see how shit the service is so why do we expect something different from political parties?

      The stupidest part about it is that the first past the post voting system all but ensures that we see this outcome. I don't mean to say Democrats and Republicans exactly as you see them today, but two parties that are becoming increasingly polarized as there's no real room for anything in the middle. We've seen it historically in that the United States has always had two dominant parties with any third party being little more than a flash in the pan or one that eventually cannibalized an existing party and took it over. Were this to happen frequently enough, the system would be better, but the existing parties have been around far too long and with the exception of the crossover during the civil right's movement haven't changed much at all.

      We need a system where it's possible to have more than two parties because it will allow people to find something that's a better fit. If you want both the right to own a gun and to have an abortion, there's really no viable party for you, but with a system that isn't first-past-the-post, it becomes possible for those more nuanced parties to exist, which means the existing parties lose their monopoly status and have to be more responsible to the voters instead of to a small number of moneyed interests.

    11. Re:And us too - soon by Tharkkun · · Score: 1

      FBI and NSA Poised to Gain New Surveillance Powers Under Trump

      All because you sheeple want to feel safe.

      "People want to be slaves" - Academy Award nominated director I work out with.

      Face it, the people don't want to really be free. They want to feel safe above all else. They are so afraid of terrorism when the fact is they are most likely to die from complications of their obesity or from a car accident because they were distracted while they were updating their facebook page.

      We have freedom though. There's not a single thing in life I couldn't do outside of driving and drinking ages that I've been restricted from doing. There's this perception that your freedom is being taken away just because the government can see what you're doing. Quite frankly they don't give a flying fuck unless you're doing bad things.

    12. Re:And us too - soon by Altrag · · Score: 1

      They want to feel safe above all else.

      Absolutely true. The problem is that this isn't a black and white issue, or even a simple high/low spectrum. Its a curve. Too much "protection" and people start fearing the police and military just as much as too little protection has them fearing criminals.

      Most people don't want to be slaves. They just want to be left the hell alone -- by all sides.

    13. Re:And us too - soon by nmb3000 · · Score: 1

      We have freedom though.

      "Freedom" is a loose concept that's made up of a collection of personal and collective rights. Among many, included are the right to privacy, the right to anonymous speech, and the protection against the unwarranted search of your effects. These are protected by law and legal precedent in the US because they are all critical to creating and maintaining a free society.

      Mass government surveillance is a crack in the larger edifice of freedom and the chilling effects it causes will tend to make those cracks spread and get larger. And to make it all worse, the return on investment -- freedoms for promised security -- is a joke.

      As others point out, we are orders of magnitude more likely to die in a car crash than an act of terror and yet people complain every day about seat belt laws. A rational re-evaluation of priorities is desperately needed today.

      --
      "What do you despise? By this are you truly known." --Princess Irulan, Manual of Muad'Dib
      /)
    14. Re:And us too - soon by Anonymous Coward · · Score: 0

      That sounds a lot like Illinois...

    15. Re:And us too - soon by Razed+By+TV · · Score: 1

      Face it, the people don't want to really be free. They want to feel safe above all else. They are so afraid of terrorism when the fact is they are most likely to die from complications of their obesity or from a car accident because they were distracted while they were updating their facebook page.

      I wonder about this.
      Who would take one for the team, if it meant no mass surveillance?
      Who would accept the cost in lives from the unstopped terrorism that could* result from a lack of surveillance? (*I know this is a stretch)
      Who would be willing to die, if it meant their family would be free from surveillance?

      Why not ask people in countries torn by terrorism? Would they exchange terrorism for excessive surveillance?

    16. Re:And us too - soon by hughbar · · Score: 1

      Actually this goes as far back as Hobbes, you give up your freedom to a sovereign in return for 'protection'. I'm a Brit, old, and reasonably fed up with this shit. Whilst I know that I can't shut Theresa May's (now being called the Pry Minister on Twitter) government out, I can create (and encourage others to create) a great deal of friction dropping gmail for a German privacy-enhanced mail service, starting to use VPN, and being more active with my public key (not that people use it much, but it's symbolic protest as well).

      I'd encourage others to do the same, though it means spending a little more. I haven't anything much to hide, but as the famous placard in the doctors strike said I am really rather fed up with this. Here, these are fighting words.

      --
      On y va, qui mal y pense!
    17. Re:And us too - soon by Anonymous Coward · · Score: 0

      Oh, I agree -- but how appropriate in a story about sadly lost causes.

    18. Re:And us too - soon by Daniel+Klugh · · Score: 1

      A nobody? Steve Jackson made Car Wars!
      (and a little thing called GURPS)

      --
      Daniel Klugh
    19. Re:And us too - soon by Anonymous Coward · · Score: 0

      What you describe resembles the PRC now with exception of orange air, forced abortions and land grabs.
      Bloomburg is part of the problem, so many media outlets are own by so few and so become propagandists.
      Trump has not been in the Whitehouse yet and Bloomburg of course lets Obama administration off of the hook yet rights erosion of unheard of levels occurred under Obama.

  7. Encrypt everything! by Freischutz · · Score: 3, Insightful

    Encrypt everything! ... They may be able to crack the encryption in the end but it will make their lives much, much, much more difficult.

    1. Re:Encrypt everything! by 110010001000 · · Score: 1

      You don't need to crack the encryption. They have access to the unencrypted endpoints.

    2. Re:Encrypt everything! by Anonymous Coward · · Score: 0

      No, we need false data generators. More noise to signal.

    3. Re:Encrypt everything! by Anonymous Coward · · Score: 1

      It makes me want to create a browser plugin that sends my daily browsing history directly to Theresa May's email address.

    4. Re:Encrypt everything! by Anonymous Coward · · Score: 2, Interesting

      No, we need to do everything.

      Share connections.
      Encrypt everything.
      Create false data.
      Move to a system more secure by design. Whether that's Freenet, Tor, Onion, or similar, or something entirely new and different.
      Speak to friends and family about privacy and security and what it will mean to live with neither.

      Personally I've been pointing out to many folks here in the UK "didn't we fight a cold war against this shit?" Didn't people die and didn't we cause suffering all around the world (mostly via proxy wars) for the ideas of "freedom". And now we're prepared to just give it away? I've then been asking people whether they agree or disagree, and then calling them out for their shallow meaningless existence. I'm burning through friends at the moment, but that's the price to pay...

    5. Re:Encrypt everything! by Anonymous Coward · · Score: 0

      Encrypt everything! ... They may be able to crack the encryption in the end but it will make their lives much, much, much more difficult.

      That's what NSA said! Encrypt everything, so that they get more government money and significance!

    6. Re:Encrypt everything! by Freischutz · · Score: 2

      You don't need to crack the encryption. They have access to the unencrypted endpoints.

      That only works for endpoints they have already compromised. What the security services are currently more interested in is something completely different, they are interested in using this data for threat detection and to identify potential assets. If you have ever watched that CBS show 'Persons of interest', that kind of an AI with that kind of access is the wet dream of the NSA, GHQ, FSB and every other security service with a bit of ambition. For that purpose they are monitoring, warehousing and data mining enormous volumes of (currently) unencrypted data. If every byte of traffic on the internet were encrypted as of tomorrow they'd have immense trouble doing this. Even if we assume that they have access to every root certificate every person's primary key and can generally decrypt everything, simply the added computational cost of decryption such enormous amounts of data would make their operation much more expensive and headache inducing because they'd now have to obtain enormous numbers of private keys or crack encryption before the data is even in a state where they can start monitoring, warehousing and data mining it. This would seriously inhibit the ability of security services to detect hidden or emerging threats, actors which the security services had no idea that they even exist and that, if you remember, is one of the primary purposes of all of this monitoring, detecting threats as they emerge. The ability the security services gained to monitor in an Orwellian fashion every move every citizen makes is just gravy, a bonus (albeit a very very useful one) which I'm sure they use with wild abandon to blackmail citizens whenever needed.

    7. Re: Encrypt everything! by Anonymous Coward · · Score: 1

      Look, I don't mean to sound defeatist but we lost. Not the battle, the war. You and me can scream our throat hoarse warning people, we'll just be ignored. Or derided. Hell, some "concerned citizen" may decide to report us for "suspicious behavior". We can encrypt and what good does if we're the only ones, we only attract attention. Preaching to a public that does not want to be preached to or lectured only leads to ostracism. Is it really worth it to sacrifice our social lives for a cause nobody gives a damn about? We lost. Get over it.

    8. Re:Encrypt everything! by EzInKy · · Score: 1

      Why not just vote with your feet? If you don't like the rules in one place you move to another. Isn't that how free markets are supposed to work?

      --
      Time is what keeps everything from happening all at once.
    9. Re: Encrypt everything! by Maritz · · Score: 2

      Don't injure your hands wringing them there.

      --
      I do not want your cheap brainburning drugs. They are useless for work. And I am a working man today.
    10. Re: Encrypt everything! by rantrantrant · · Score: 1

      And just look up all the versions/copies of goatse that you can find ;)

    11. Re: Encrypt everything! by Anonymous Coward · · Score: 0

      You've misunderstood what the cold war and subsequent arms race were about. Russia was never a real threat to the west. And who got enormously rich and gained all those arms contracts under the guise of NATO?

    12. Re: Encrypt everything! by rantrantrant · · Score: 1

      Not when all the options have been chosen for you in advance.

    13. Re:Encrypt everything! by Anonymous Coward · · Score: 0

      You don't need to crack the encryption. They have access to the unencrypted endpoints.

      That only works for endpoints they have already compromised.

      I have bad news for you. The Intel Active Management component that can be enabled in every contemporary Intel-based PC is a completely separate operating system with its own TCP/IP stack and the ability to access everything that is in memory, record every keystroke, and access all connected storage devices. It is almost impossible to disable. If you erase it, then your PC shuts off automatically after 30 minutes. And yes, it's in your PC, too. As for tablets and phones, they are run by binary blobs that even third party companies can replace with a telemetry-enabled firmware.

    14. Re: Encrypt everything! by Anonymous Coward · · Score: 0

      Eat a bag of dicks. The Stasi couldn't have existed without people like you.

    15. Re:Encrypt everything! by spacepimp · · Score: 1

      They are giving them away for the same exact reasons the Soviet Union claimed to need them. The lies are the same the scapegoats are whoever is convenient.

    16. Re:Encrypt everything! by PrimaryConsult · · Score: 1

      It's not easy to leave, as it means leaving the country. That said, if people *can* leave they should. Those who are rich and those who are intelligent (aka the ones countries like to court and keep) will have no problem leaving, taking their skills and wealth with them. If a government makes too many missteps, this will happen and before you know it, you're Venezuela (or Detroit). Then, either the failed government is enlightened and starts reversing it's harmful policies, or it dissolves into irrelevance on the global stage.

    17. Re: Encrypt everything! by Anonymous Coward · · Score: 0

      The Stasi existed whether the people wanted it or not. Those institutions exist and will exist and operate no matter what we say. And the truth is that the majority does not give a damn. End of discussion. We're performing CPR on a decomposing corpse. Now you can keep fighting a battle that has been lost long ago, you can wring your hands, or you can move on with your life. Your choice.

    18. Re:Encrypt everything! by Anonymous Coward · · Score: 0

      It's easy to permanently disable on ThinkPads--it's a BIOS option.

  8. This is what happens... by 110010001000 · · Score: 4, Funny

    ...when guns are illegal. They wouldn't dare do mass surveillance in the US because gun owners would overthrow the government. Right? Right?

    1. Re:This is what happens... by Big+Hairy+Ian · · Score: 1

      ...when guns are illegal. They wouldn't dare do mass surveillance in the US because gun owners would overthrow the government. Right? Right?

      No they just wouldn't legalize it. If you think the US Government isn't doing all this behind the scenes then you're an even bigger fool than I give you credit for

      --

      Build a Man a Fire, and He'll Be Warm for a Day. Set a Man on Fire, and He'll Be Warm for the Rest of His Life.

    2. Re:This is what happens... by 110010001000 · · Score: 3, Insightful

      Whooosh

    3. Re:This is what happens... by Oswald+McWeany · · Score: 2

      What we need are guns that are built into computer monitors. Anyone can fire them from anywhere in the world rendering their internet foe dead immediately. Then no one will spy on you.

      The trick of course is getting your foe to buy a monitor that can kill them.

      --
      "That's the way to do it" - Punch
    4. Re:This is what happens... by coastwalker · · Score: 2

      The only people in recent recorded history to wave a gun at the government were in dispute over land rights with its tree hugging arm. The next nearest thing likely to happen is lynching of foreigners and brown people. So no the gun owners are largely useful idiots who only respond to primal instincts and are easily manipulated. UN tanks and FEMA death camps my backside.

      --
      Facts are history now plebs have politics for religion on social media.
    5. Re:This is what happens... by Anonymous Coward · · Score: 0

      Newsflash for someone possibly too young to remember: CRT (cathode ray tube) monitors all had guns in them. Electron guns, to be sure, but they were still called guns.

    6. Re:This is what happens... by 110010001000 · · Score: 1

      And back then we didn't have mass surveillance. Coincidence?

    7. Re:This is what happens... by AmiMoJo · · Score: 1

      Reminds me of the face-stabbing peripheral from a few years back. Still got mine.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    8. Re:This is what happens... by Anonymous Coward · · Score: 0

      ...The next nearest thing likely to happen is lynching of foreigners and brown people. So no the gun owners are largely useful idiots who only respond to primal instincts and are easily manipulated. UN tanks and FEMA death camps my backside.

      Can I get some of what you're smoking? It somehow enables you to see the "progressive" future.

    9. Re:This is what happens... by Anonymous Coward · · Score: 0

      ...when guns are illegal. They wouldn't dare do mass surveillance in the US because gun owners would overthrow the government. Right? Right?

      This kind of binary thinking can only be expected from someone with a binary username :P

      UK's guns was one of the first freedoms to disappear. The others were next. UK citizens are trading freedoms for perceived safety. More power to them.

    10. Re:This is what happens... by 110010001000 · · Score: 1

      As opposed to the US where our "freedoms" are intact, right? Right?

    11. Re:This is what happens... by lgw · · Score: 1

      because gun owners would overthrow the government. Right? Right?

      In case you slept through the US elections, gun owner just did overthrow the government. That's the entire point of democracy: a non-violent means to overthrow the government. Popular vote is a really stupid way to run a government, but the best means yet found to remove one.

      What happens next is anyone's guess. Trump is certainly not a predictable sort of guy.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    12. Re:This is what happens... by Anonymous Coward · · Score: 1

      As opposed to the US where our "freedoms" are intact, right? Right?

      Well, you have more of your freedoms than some other places (I'm Canadian, no real dog in this fight), and you'll probably lose them slower than other countries. When the time comes for people to say "enough", you'll at least have the tools to say it, as opposed to empty powerless protests that happened in the rest of the world.

    13. Re:This is what happens... by Nidi62 · · Score: 1

      because gun owners would overthrow the government. Right? Right?

      In case you slept through the US elections, gun owner just did overthrow the government.

      Really.....so a cabinet full of experienced politicians (and now the spouses of politicians) and a Congress almost completely full of re-elected members is somehow an "overthrow" of government?

      --
      The only thing necessary for evil to triumph is for it to be pitted against a slightly greater evil
    14. Re:This is what happens... by lgw · · Score: 1

      What happens next is anyone's guess. Trump is certainly not a predictable sort of guy. But Hillary will never be president! For now I'm content with that level of overthrow of the status quo.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    15. Re:This is what happens... by Anonymous Coward · · Score: 0

      Careful with that 'whoosh'. Get any higher over his head, and you'll be one of those space nutters.

    16. Re:This is what happens... by Anonymous Coward · · Score: 0

      ... ...when guns are illegal.

      This whine that Hillary/Congress is going to outlaw guns is self-delusional paranoia or white-trash hysteria.

      To outlaw guns, the US constitution must be amended, the politicians must approve a referendum, the bribes from the NRA (and super-PACs) must be outlawed, the fear-mongering and 'evil gubbermint' rhetoric must be silenced. The only opportunity for the USA to have a rational discussion on the role of firearms in modern society, is by declaring nation-wide martial law first; and that's when most voters want more gun control. Facing the double-standards and dishonesty surrounding American 'rights' will be a traumatic and time-consuming affair but the US will stay politically and culturally stagnant until that happens.

  9. Way to attract companies by Anonymous Coward · · Score: 0

    If there was any company out there that was not convinced that leaving the EU would make Great Britain THE BEST place to operate, this mass surveillance move will surely do the trick. Which company doesn't love government officials having access to its trade secrets?

  10. Benjamin Franklin by zifn4b · · Score: 5, Insightful

    "Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety."

    --
    We'll make great pets
    1. Re:Benjamin Franklin by 110010001000 · · Score: 1

      "Three may keep a secret, if two of them are dead."

    2. Re:Benjamin Franklin by Anonymous Coward · · Score: 0

      "I, for one, welcome our new overlords!"

    3. Re: Benjamin Franklin by Anonymous Coward · · Score: 0

      I don't think that quote means what you think it means...

      http://www.npr.org/2015/03/02/390245038/ben-franklins-famous-liberty-safety-quote-lost-its-context-in-21st-century

    4. Re:Benjamin Franklin by Anonymous Coward · · Score: 0

      Luckily all those shown to have been knowingly breaking the law before this Act get passes will be prosecuted to the full extent of the law in order to send the right message.

    5. Re:Benjamin Franklin by Anonymous Coward · · Score: 1

      "Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety."

      You really should read that entire letter.

      The specific "essential liberty" that Franklin was warning about giving up was, wait for it, GUN OWNERSHIP.

      Basically, during the French and Indian War (Seven Years' War for you Europeans), Quakers who abjured violence had turned down the Pennsylvania government's offer of arms and ammo with which to defend themselves from raids from French and Indian forces.

      Franklin was saying, "Fuck you. If you don't want to defend yourself, you deserve neither liberty nor safety."

    6. Re: Benjamin Franklin by PPH · · Score: 1

      Other than the fact that Franklin was talking about taxes instead of privacy, the meaning is still pretty clear. And I do get a kick out of how someone (WITTES) tries to turn Franklin's point 180 degrees around. Because 'Muh taxes.'

      WITTES: The exact quotation, which is from a letter that Franklin is believed to have written on behalf of the Pennsylvania General Assembly,

      "believed to have written" I suppose it depends on what those who are interpreting the statement believe. But not having the actual context (the letter) in hand means that anyone can claim that it means anything.

      --
      Have gnu, will travel.
    7. Re:Benjamin Franklin by Anonymous Coward · · Score: 0

      Fun fact: Benjamin Franklin was not one of the founding fathers of the UK.

    8. Re:Benjamin Franklin by Rick+Schumann · · Score: 1

      It isn't the UK citizenry that's voting for this, though, is it? It's their MP's. I doubt the majority of UK citizens wants this.

    9. Re: Benjamin Franklin by Maritz · · Score: 1

      What he thought it meant is irrelevant. It means what it means in the context of today.

      --
      I do not want your cheap brainburning drugs. They are useless for work. And I am a working man today.
    10. Re:Benjamin Franklin by Anonymous Coward · · Score: 0

      "Saved By Zero"

    11. Re:Benjamin Franklin by Falos · · Score: 2

      It doesn't matter what specific advocation Franklin was calling; the arrangement of words is a succinct, useful one.

      Useful to help others to realize, to help drop the scales from their eyes, to help them see that we are being told the bogeyterrorist will eat us if we don't go to bed on time.

      It's not like it's a well-kept secret, they only need the inclination, the curiosity to turn their head and wonder about the man behind the curtain. Their exact deductions and conclusions don't mater; as long as they're (finally) applying basic critical thinking about overt motives and questioning who actually stands to benefit from claims and changes and circumstances, they'll be close enough.

    12. Re:Benjamin Franklin by richardkettle4 · · Score: 1

      Notice he says 'essential' not all. Also, since when is Franklin a font of wisdom? You can only care about freedom AFTER you have safety. Take it from someone that has lived in warzones all over the world. Freedom is a luxury.

    13. Re:Benjamin Franklin by Anonymous Coward · · Score: 0

      As Abraham Lincoln said in 1699: "Don't believe everything you read in the Slashdot Comments section, especially by Anonymous Cowards who speak authoritatively about history."

    14. Re:Benjamin Franklin by Nidi62 · · Score: 1

      "Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety."

      Franklin was saying, "Fuck you. If you don't want to defend yourself, you deserve neither liberty nor safety."

      Uh, I think you are interpreting his statement incorrectly. By taking up offered arms they would in fact be giving up their liberty (freedom of religion) for the temporary safety offered by bearing said arms. So in fact it would seem by his statement that Franklin would be supporting the Quakers.

      --
      The only thing necessary for evil to triumph is for it to be pitted against a slightly greater evil
    15. Re:Benjamin Franklin by Anonymous Coward · · Score: 0

      And thanks to all the great technology in the hand of the rulers neither their children will have liberty nor their grandchildren or ours for that matter
      Resistance is futile, joint the collective and rejoice

    16. Re: Benjamin Franklin by Anonymous Coward · · Score: 0

      Wasn't Franklin weary of too much concentration of power?, either by the government, the banking or corporations?
      IMHO if you have an all powerful government, how is the people to keep it in check?, in the other hand if you have powerful corporations, how the peoples government will keep them in check them?
      Until there is a way for the people to have real leverage over a government strong enough to keep in check the corporations and a way to prevent corporations to manipulate the population in their own interest, corporations and government will collude for control of the masses

      I propose Bogdanovism

    17. Re:Benjamin Franklin by sdinfoserv · · Score: 1

      Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote

    18. Re:Benjamin Franklin by Anonymous Coward · · Score: 0

      Whether or not they deserve it is irrelevant in the face of the real problem: They and even those that opposed them are guaranteed to end with neither.

  11. Meh by Anonymous Coward · · Score: 0

    Whilst we simultaneously whinge about dictatorships and how evil they are we slowly become one...

    1. Re:Meh by Anonymous Coward · · Score: 0

      Kim Jong Un is probably jealous that he doesn't have that much surveillance power.

    2. Re:Meh by coastwalker · · Score: 1

      It has been happening apace ever since the end of the cold war. Extremely disappointing to discover all that rhetoric against the evils of communism was just rhetoric now that capitalism can get away with the same behavior.

      --
      Facts are history now plebs have politics for religion on social media.
    3. Re:Meh by Anonymous Coward · · Score: 0

      It has been happening apace ever since the end of the cold war. Extremely disappointing to discover all that rhetoric against the evils of communism was just rhetoric now that capitalism can get away with the same behavior.

      In so many ways, what we already have is communism. The bourgeoisie just tweaked the formula so that they end up with most of the money and power, regardless. When we already have the blending of corporatism and government alongside massive corporate consolidation, it really doesn't make much difference if we're full-bore communist or not. I lived in China for a year. Give it 20 more years down this road, and you won't be able to distinguish American capitalism from Red communism.

  12. Not just law by Anonymous Coward · · Score: 0, Troll

    but the NHS, Food Standards Agency, and a number of WTFs can access this data.

    You will also notice the extreme-left BBC not covering it, nether is the far right; in facts it's merely hidden away wherever you look.

    Furthermore, once it's collected, you can be damn sure it will be sold. Anyone doubting this should consider the DVLA, whose data was extremely and would lead to jail terms if you improperly used it, can now be purchased.

    1. Re:Not just law by Desler · · Score: 5, Informative

      The BBC has multiple stories on this. Maybe you should dislodge your head from your ass?

      From here:

      Blogger Chris Yiu compiled a list of the 48 organisations and departments that will be able to access the browsing records of individuals without a warrant.
      They include various police, military, government and NHS departments as well as the Food Standards Agency, the Gambling Commission, the Financial Conduct Authority and the Health and Safety Executive.

      I found this article in about 20 seconds.

    2. Re:Not just law by Anonymous Coward · · Score: 0

      Seconded.

      I'm in the UK and there has been no coverage of this in the past week. Shameful.

    3. Re:Not just law by Desler · · Score: 1

      Yes, there has. I posted a BBC article from yesterday that even states the very same things the GP claims they are trying to hide. Pesky "facts".

    4. Re:Not just law by PopeRatzo · · Score: 3, Insightful

      the extreme-left BBC

      You've never watched the BBC, have you?

      --
      You are welcome on my lawn.
    5. Re:Not just law by Desler · · Score: 1

      But you're bringing facts into this. The BBC is clearly trying to hide this story. Oh wait...

      'Snoopers' charter' petition hits signatures target
      'Snoopers law creates security nightmare'

    6. Re:Not just law by Bongo · · Score: 4, Funny

      He has, just from a chair over in the far right of the room.

    7. Re:Not just law by Anonymous Coward · · Score: 1

      Hey, wank-stain, that's not the UK site. Perhaps if you weren't so far up your own shitter, you'd know the difference. Fucking moronic yank. Furthermore, fcuktard, it's also hidden deep in the "tech" section, where no one but dweebs would look - not on the front page where the nation would find it, twat. Add to that you had to find it, you knew about it first, smeg for breath.

    8. Re:Not just law by Desler · · Score: 1

      Hey, wank-stain, that's not the UK site.

      UK site version. Thanks for playing.

      Perhaps if you weren't so far up your own shitter, you'd know the difference.

      Both sites have the exact same article. So what is supposed to be the difference?

      Furthermore, fcuktard, it's also hidden deep in the "tech" section, where no one but dweebs would look - not on the front page where the nation would find it, twat. Add to that you had to find it, you knew about it first, smeg for breath.

      Those goalposts sure are flying down the pitch. Keep flailing though.

    9. Re:Not just law by Anonymous Coward · · Score: 0

      You're right...

      In fact I'm positively sure I can name a single BBC series where the main character isn't asexual, gay, a cuck, or a lesbian.

      Just give me a few months to think.

    10. Re:Not just law by KozmoStevnNaut · · Score: 1

      Luther.

      --
      Eat the rich.
    11. Re:Not just law by Anonymous Coward · · Score: 0

      This was published well after the event occurred. Pretty sure the Guardian and BBC purposefully withheld any reporting on this until it has passed. Zdnet was about a week ahead of them.

  13. Why the hell not!? by Zurkeyon3733 · · Score: 0, Flamebait

    They have already banned the displaying of their own flag (Where and when it might offend a Muslim), Imported a 68% rise in crime, allowed a 6000% increase in RAPE, and hired a Muslim Mayor for London. The UK belongs to the Muslim Nation now... Its lost.

    1. Re:Why the hell not!? by vel-ex-tech · · Score: 0

      Same thing over in Dearborn, MI, too! I don't think they even let you drive through if you're white!

  14. I saw this episode by Anonymous Coward · · Score: 0

    They do it with bees.

  15. As a UK Citizen by richardkettle4 · · Score: 5, Informative

    Look, I know my browsing will be in a huge database that nobody will look at it... for now. But if this year has taught all of us anything it is that things change. If you take these powers, whoever is in power in the future can abuse them. Everyone, no matter how good intentioned, should think about how those powers might be abused in the future.

    1. Re:As a UK Citizen by Anonymous Coward · · Score: 1

      Look, I know my browsing will be in a huge database that nobody will look at it... for now. But if this year has taught all of us anything it is that things change. If you take these powers, whoever is in power in the future can abuse them. Everyone, no matter how good intentioned, should think about how those powers might be abused in the future.

      You make this sound as if the powers we've had abusing us for the last 16 years have been respectable. Anyone who doesn't "get it" until a Trump win or Brexit is never going to be an ally of freedom. They are just too shortsighted.

    2. Re:As a UK Citizen by richardkettle4 · · Score: 1

      I take your point: I was trying to say that many people just trust government, even if they do, they should always remember times will change. This year was a wake up call to those that thought things would just stay the same.

    3. Re:As a UK Citizen by Anonymous Coward · · Score: 0

      Think about your forward security: your government must now be assumed a hostile snoop, hoovering up records with reckless abandon.

      Ten years from now in a global political climate even further enmeshed in leaks, propaganda, and "information warfare", we may have some kind of successor to Have I Been Pwned: go punch in your old neighbour's details and see what freaky porn he was surfing in 2019.

      What happens when these cute little XKeyscore projects get dumped or penetrated for the open web?

    4. Re:As a UK Citizen by Anonymous Coward · · Score: 0

      If you ask me, spying (better termed stalking) IS the abuse. After all, nobody would put up with this for a second if it was coming from a random individual. So it's not a question of who or when it will be abused -- the spying program itself IS abuse.

    5. Re:As a UK Citizen by AmiMoJo · · Score: 1

      It's already been abused. The police have been using it to identify journalists sources when they were criticised. Some unknown number of people were caught using it to spy on their lovers. And that's just the stuff we know about.

      Keep in mind that a lot of stuff data collection has been happening for years, it just wasn't mandated or legal before.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    6. Re:As a UK Citizen by Anonymous Coward · · Score: 0

      Well, take the historical view and look on the bright side: It may be inevitable that power-mad politicians won't be satisfied until we all live under their thumb in a totalitarian police state much as we thought we had dodged 70 years ago ... however, at least we don't have to learn German to do it.

    7. Re:As a UK Citizen by Impy+the+Impiuos+Imp · · Score: 1

      That's the real Troll Trace from South Park coming down the pike -- the inevitable hacking of some government Internet monitoring database, and bam, every site every IP ever accessed pops up.

      Good luck if any government official goes to jail for this 1984-style grotesquerie.

      --
      (-1: Post disagrees with my already-settled worldview) is not a valid mod option.
    8. Re:As a UK Citizen by Impy+the+Impiuos+Imp · · Score: 1

      I love how people get bent out of shape over corporations doing this, when all they care about is putting you into different advertising bins so they can earn a few percent more on ads. Meanwhile they lie back, largely uncaring (if not outright massively liking) government doing far more, creating a panopticon, the type of tool exactly desired and abused by dictators.

      If you want to aavoid dicatorship in the long run, you must prevent the tools of tyrrany from being created in the first place.

      --
      (-1: Post disagrees with my already-settled worldview) is not a valid mod option.
    9. Re:As a UK Citizen by dcollins · · Score: 1

      "Look, I know my browsing will be in a huge database that nobody will look at it... for now."

      This sounds like a line of reasoning from a 90-year-old who's never heard of "computers" (and "search") before.

      --
      We know where leadership by an anti-intellectual "strongman" who scapegoats minorities and likes boisterous rallies goes
    10. Re:As a UK Citizen by richardkettle4 · · Score: 1

      Really? I run huge databases and guess what, the only data we ever see is the data we ask for.

    11. Re:As a UK Citizen by Anonymous Coward · · Score: 0

      Uh, most of the people I know that actually care about corporations doing it care EVEN MORE about the government doing it.

      The vast majority don't seem to care about either one.

    12. Re:As a UK Citizen by Anonymous Coward · · Score: 0

      Ya know, in that "huge database nobody will look at" , I wonder if there's a plugin for browsers that will randomly visit web sites, load pages, and never display them. If it's pseudo-randomized to look like regular browsing then it's easier to lose the signal. If you want to turn down the SNR for data-mining you can: 1) try to cut the signal or 2) raise the noise.

    13. Re:As a UK Citizen by Anonymous Coward · · Score: 0

      Doesn't take much imagination. Let's face it, everyone has something dodgy/embarrassing/illegal (then or now)/non-PC in their browser history*, and for the other .01% it would be trivial to "accidentally" plant something. All they need to do is strip any context and et voila instant character assassination on anyone who gets too uppity via an "accidental" leak/hack, a well-timed investigation, or an outright data release.

      *say for example that night when you naively said "no way that would be online... here, I'll prove it... wait omg wtf is that??? quick, close it! someone pass the brain bleach!

    14. Re:As a UK Citizen by RivenAleem · · Score: 2

      You forget that right now, you are not a problem for them. But know this, as soon as you are, your browser history will be used to incriminate you for whatever they can find. So remember to keep in line, don't think or do anything that might upset the government, keep your head down and your thoughts to yourself.

  16. Bad for the UK, but good for the world by nightfire-unique · · Score: 5, Insightful

    I think this is something that will ultimately hurt a lot of innocent people in the UK over the coming years.

    However, it will also help the Internet mature with new encryption and canary protocols, and more ubiquitous deployment of them, to ensure privacy and protection from all threats.

    --
    A government is a body of people notably ungoverned - AC
    1. Re:Bad for the UK, but good for the world by richardkettle4 · · Score: 2

      Wish I had mod points. Exactly right, I do not understand this self-defeating attitude by our government. Perhaps it is just ignorance of technology.

    2. Re:Bad for the UK, but good for the world by fustakrakich · · Score: 1

      All very wonderful, until the ISPs block all unauthorized encryption. Then what?

      --
      “He’s not deformed, he’s just drunk!”
    3. Re:Bad for the UK, but good for the world by richardkettle4 · · Score: 1

      The answer is this, block all you want. Now nobody will do business here.

    4. Re:Bad for the UK, but good for the world by Anonymous Coward · · Score: 0

      > encryption and canary protocols

      What is "canary protocols"? Or did you mean, encryption protocols and canary measures / alerting? Or something else?

    5. Re:Bad for the UK, but good for the world by dargaud · · Score: 1

      I was just looking on how to get my entire household onto a permanent VPN, since a yearly VPN account is now only a few 10s of dollars. Checking into the ADSL modem deep option, I see a very convenient VPN client mode. No need for an extra router to act as VPN client between local network and ADSL modem. You just tell the ADSL modem to put all traffic through the VPN. Bang, done. If Estonia or wherever that comes out today wants to spy on it, fine then.

      --
      Non-Linux Penguins ?
    6. Re:Bad for the UK, but good for the world by nightfire-unique · · Score: 1

      Oh, I meant canary measures added to more protocols (ie. HTTP); more the english sense of "the protocol for notifying a client via HTTP that the site may be compromised is <x>."

      --
      A government is a body of people notably ungoverned - AC
    7. Re:Bad for the UK, but good for the world by fustakrakich · · Score: 2

      VPNs are trivial to block. Besides, once the ISP engages in deep packet inspection, the game is over. Your 'non-compliant' (encrypted) packets will be dropped and reported to the authorities. Expect a knock on the door soon afterwards.

      --
      “He’s not deformed, he’s just drunk!”
  17. What could possibly go wrong? by Anonymous Coward · · Score: 0

    Apart from the profound consequences of the subtle chilling effect on consumption and generation of information, which is tragic, it seems inevitable that hackers will gain full and ongoing access to all of this data (given how widely within government departments this information will be made available). Individuals motivated by personal interests, operating within government or in business or in criminal organizations, will find this collected information valuable. The establishment of this surveillance mechanism will ironically putting the UK public at great risk from the very kinds of threats it was intended to help prevent, much like putting backdoors to encryption products exposes users to the risk of exploitation from anyone in the world.
     

    1. Re:What could possibly go wrong? by Anonymous Coward · · Score: 0

      The UK is fucked.

      Time to leave. But where to?

      I'm thinking of learning Spanish/Portuguese and heading to South America. A bit more freedom, a bit more chaos, a bit more personal responsibility, a lot less spying from the government.

      Or picking a country in the EU and moving there and hoping the EU convention of human rights will protect me.

      The EU is certainly not perfect, but it's much better than the cesspits of Canada/Australia/UK/USA. I'm loath to add NZ to the list because I really want to like the place, but the extra-judicial fuckery surrounding Kim Dotcoms bust makes them especially fucked.

  18. Your premise is faulty by Piata · · Score: 1

    You assume that politicians are doing the will of the people. That is incorrect. This is the government increasing the governments powers while spreading FUD to justify their actions to the populace.

    1. Re:Your premise is faulty by clickclickdrone · · Score: 1

      The politicians do the will of the corporations. The people have been a secondary concern for some time.

      --
      I want a list of atrocities done in your name - Recoil
    2. Re: Your premise is faulty by rantrantrant · · Score: 1

      The people have never been of any significant concern unless they're immediately and credibly threatening an uprising or revolution.

    3. Re:Your premise is faulty by Anonymous Coward · · Score: 0

      Which corporation wants to be liable for storing a year's worth of personal information for each customer? Idiot.

  19. Re:Safety by Anonymous Coward · · Score: 0

    What does safety have to do with it? This country was fairly safe before the internet age of mass surveillance and fairly safe after (with the occasional incident of course). Surveillance didn't save Jo Cox from a terrorist act did it?

  20. Attorney-client privilege abrogated in UK by DavidHumus · · Score: 0
    My professor, who is British, told us last night that a lawyer in the UK who becomes aware of a crime committed by a client is obligated to report it to the police.

    The road to Hell is paved with good intentions...

    1. Re:Attorney-client privilege abrogated in UK by richardkettle4 · · Score: 1

      That has always been the case, for hundreds of years

    2. Re:Attorney-client privilege abrogated in UK by richardkettle4 · · Score: 1

      You cannot defend someone if they say 'Yes, I did it'. Like any other citizen, you cannot conceal knowledge of crime, or do you think lawyers are above these laws? Clue: they are not

    3. Re:Attorney-client privilege abrogated in UK by Desler · · Score: 2

      There are multiple exceptions to attorney-client priviledge in the US as well, but don't let pesky things like "facts" get in your way.

    4. Re:Attorney-client privilege abrogated in UK by 110010001000 · · Score: 1

      Er, that sounds like a good thing to me. If you know of a crime, why would you not report it?

    5. Re:Attorney-client privilege abrogated in UK by Anonymous Coward · · Score: 0

      And his claim that it's only allowable in the UK is false. Clark v. United States gave lawyers the ability to report about crimes committed that were disclosed to them by their client.

    6. Re:Attorney-client privilege abrogated in UK by richardkettle4 · · Score: 3, Informative

      ' becomes aware of a crime committed by a client' that was your post, if you become aware of a crime, you have to report it. I am not sure what your point was, it is the same in the USA

    7. Re:Attorney-client privilege abrogated in UK by squiggleslash · · Score: 1

      You can defend them, you just can't pretend they didn't do what they told you they did.

      --
      You are not alone. This is not normal. None of this is normal.
  21. I know this seems bad but it really isn't. by JustNiz · · Score: 1

    The law doesn't change anything. They've already been doing all this stuff for years, and more probably since its not been under any control.
    At least now its out in the open and controlled/limited by visible laws. And now that its out in the open people can start viably fighting against it.

    1. Re:I know this seems bad but it really isn't. by ContextSwitch · · Score: 1

      > The law doesn't change anything. Yes it does, it requires ISPs to keep "internet connection records" whatever they are. And once they have these records they must keep them for at least a year. Can't see anything wrong with that then!

    2. Re:I know this seems bad but it really isn't. by JustNiz · · Score: 1

      What part of "theyve already been gathering this info for years" are you not getting?
      All this is doing is possibly offloading some of that effort onto ISPs.

    3. Re:I know this seems bad but it really isn't. by ContextSwitch · · Score: 1

      The bit that forces the ISPs to do it. FYI my ISP does not at present and is currently looking at ways to avoid doing so in future.

    4. Re:I know this seems bad but it really isn't. by Anonymous Coward · · Score: 0

      Because now that information is legally admissible in court.

      Do you want your browsing history to be a matter of public record? You better hope that some court case does not require a sweeping collection of ISP data then

      And I'm sure some consortium of unscrupulous non-government individuals interested in making a massive collection of user habits won't go to court over some frivolity just to expose that information

      This is ripe for abuse

    5. Re:I know this seems bad but it really isn't. by JustNiz · · Score: 1

      >> FYI my ISP does not at present

      How do you know? There are plenty of companies that are already complicit to the government and lying about it.

      Besides, even if your ISP isn't secretly already giving it to the government they already have access to everything you do so are already in a position of trust. If anything this is a good thing because there's now another layer (your ISP) between your data and the government.

    6. Re:I know this seems bad but it really isn't. by fustakrakich · · Score: 1

      Problem is that people won't fight it. In fact, history says that the majority will demand more. Authoritarianism is on the rise big time all around the planet.

      An AC has been nagging me about I2P. Now is a good time to put it to the test. Then we can find out how far the ISPs will go to block anything they can't read.

      --
      “He’s not deformed, he’s just drunk!”
    7. Re:I know this seems bad but it really isn't. by JustNiz · · Score: 1

      Yes I totally agree about the emergence of the truly wierd global phenomenon of how the sheeple are demanding to be oppressed more. It mus tbe some kind of wierd Stockholm Syndrome thing.

      As far as I'm aware, the new legislation only requires UK ISPs to record what you're doing. I don't think they've gotten to the point of actively doing anything based on that data yet but I can see that as being a logical next step, and a pretty small one. No doubt it won't be long before some clueless muppet in government will claim everyone using any kind of encryption must necessarily be doing something illegal and/or child pornographers who must be stopped at any cost because THINK OF THE CHILDREN!!.

    8. Re:I know this seems bad but it really isn't. by JustNiz · · Score: 0

      > Do you want your browsing history to be a matter of public record?

      I honestly don't care. Besides Its going to make for some very boring reading if they do. Mostly just a bunch of youtube, facebook and slashdot stuff.

      > This is ripe for abuse
      Agreed but it always has been.

    9. Re:I know this seems bad but it really isn't. by Anonymous Coward · · Score: 0

      So according to you having women being abused is the same as having a law that condone women being abused?
      There is a reason there are laws regardless of the reality of the situation
      If they do it and it is illegal, it is immoral and can be fought, if it is legal, then it is OK

    10. Re:I know this seems bad but it really isn't. by UniversalBlue · · Score: 1

      > I honestly don't care I really wish to witness the moment when all your family and yourself will be killed for something that today you "don't care" about. Really, can't wait.

    11. Re:I know this seems bad but it really isn't. by JustNiz · · Score: 1

      Me and my whole family killed because someone saw my browser history? Overdramatic much?
      And FUCK YOU for wishing that on anyone.

  22. Works in UK, not in US by Anonymous Coward · · Score: 0

    The UK government has centuries of paternalism - for the most part, people WANT to be taken care of. They moved from a monarchy to socialism, either way, someone else is making the decisions for the little people, and they're ok with that.

    The US government was build because the US was done with paternalism, but age, laziness, and rot have set in, swinging it the other way. In another generation or two, things like universal income, free healthcare and free education will feel like "rights", at which point the citizens of the US will vote away the remainder of their rights just like the people in the UK did.

  23. My suggestion is to pit the state against itself.. by Anonymous Coward · · Score: 0

    I think if citizens dropped enough FOI requests on this, would not be long before wheels fall off at various levels.

  24. There's No England Anymore by biggaijin · · Score: 0

    Freedom of speech was blocked in the UK sometime ago. Now, with this intrusive surveillance in place, freedom of association, perhaps even freedom of thought, is on the way out. Soon, the government will know everything about everyone in the UK. I wouldn't want to live there.

    1. Re:There's No England Anymore by richardkettle4 · · Score: 3, Insightful

      wow, you clearly have never been here. If you have no facts or experience, a blind ignorance helps.

    2. Re:There's No England Anymore by 110010001000 · · Score: 1

      I only live here because English food is so darn good.

    3. Re:There's No England Anymore by spacepimp · · Score: 1

      Which part of his statement was incorrect? I recall the Guardian being forced to destroy data by GCHQ. With the snoopers charter you are the one who should be supplying a substantiated refutation of his comment. Before you go and make a flippant remark about how I've obviously never been to England, realize you don't know what you are talking about and you're making shit up to fit into your own narrative.

    4. Re:There's No England Anymore by PrimaryConsult · · Score: 1

      in a similar vein: why do only the UK and Australia have sausage rolls and meat pies? They're perfect when you're only "kindof" hungry. Best we can get are Jamaican food and Taquitos, which aren't nearly half as satisfying.

    5. Re:There's No England Anymore by UniversalBlue · · Score: 1

      I hope you are kidding, otherwise I'll need to question your mental sanity. English food is garbage and I wouldn't touch it with a 10 foot pole.

  25. Gunpowder by Anonymous Coward · · Score: 0

    Where's Guy Fawkes when you need him?

    1. Re: Gunpowder by Anonymous Coward · · Score: 0

      Still dead. I have just checked.

  26. Sherlock by Anonymous Coward · · Score: 0

    It was illegal, they still did it.

    Look what they did to Turing, the man won WWII for gods sake, they still couldn't leave him alone.

    They will never stop.

  27. UK class system by Anonymous Coward · · Score: 3, Insightful

    "Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety."

    Indeed, and you might notice that Franklin was one of the founding fathers of a country specifically established to escape the tyranny of the British ruling class.

    The UK has never had an American style democratic system. Despite pretending it does to the outside world, and going around trumpeting its special relationship with the USA like they are brothers in arms, the UK is still well and truly under the control of a pseudo-hereditary ruling class that is closely associated with ancestral land ownership. Until you live here (if you are from another country) it is hard to understand just how insidious it all is. For example, the great leader of the people, Winston Churchill, grew up in the fabulously extravagant Blenheim palace that his ancestors were gifted for their actions at the battle of Waterloo. Was he a great leader? Sure. But don't kid yourself that Britain selected the best man for the job in a sort of American hopes and dreams way. They simple had the ruling elite select the best of their mates at the London smoking club. You only have to look at the last government (the Bullingdon club crew) to see how the Eton system is still alive and well, and remarkably effective at controlling power.

    I have lived here for five years now (originally from New Zealand) and it still just amazes me how many British working class people simply do not believe they can do things beyond their 'lot in life'. It is deeply ingrained into them that because, for example, they didn't go to Oxbridge, they are too dumb to understand any of this government stuff, so don't even try and just shrug their shoulders and say there is nothing they can do about it anyway. It is a sort of cultural deference to power that I do not think exists in any other western country.

    1. Re:UK class system by Anonymous Coward · · Score: 0

      The even more fascinating stuff is that frequently the people you lambast the most, frequently (if not always) have the saner view on things. So much in fact that they've had their power curtailed for refusing the house of commons to go too overboard in the past. Poms, eh? Truly Alice in wonderland, sometimes.

    2. Re: UK class system by Anonymous Coward · · Score: 0

      If only! The working class has no clue and should not be allowed to vote. Letting uneducated chumps have a say results in bad calls like Brexit. The ruling class should rule and the working class should work. Period.

    3. Re:UK class system by Anonymous Coward · · Score: 0

      Your peers get really annoyed if you try to move upwards, who the hell do you thing you are?
      Also they love the underdogs, that's it, as long as they stay underdogs
      And the land?, you buy a house and you own the brick, the land belong to the landowner and is leased to you (usually cheaply and for many years.... but again)
      They fucking won their revolution only to reinstate monarchism when they got tired of Cromwell, not before trying to make him king, (he duly refused)
      they support the unelected house of peers, the unelected queen, they love their scheming little secret societies and plots
      they fathered socialism only to throw it by the window............

      Basically they are, it is OK a little fun as long as things don't get too carry away and the commoner don't make too much noise, we are a civilized lot, chaps, and we have to be a example to the plebs

    4. Re:UK class system by Altrag · · Score: 1

      Your fallacy is assuming America has an "American style" democratic system. Sure the people get to choose who sits in the president's chair, but they have little to no say in who their (two!) candidates are. Throw in the fact that elections these days are won and lost more by media frenzies than policy platforms and they're definitely not sitting in a "best man for the job" situation either -- more of a "hopefully not absolute the worst person for the job" scenario.

  28. mass surveillance? by Anonymous Coward · · Score: 0

    Which kind? Roman or Anglican?

    1. Re:Mass Surveillance? by jittles · · Score: 1

      I don't see the point in installing cameras in Catholic churches. Church of Elvis maybe...

      Think of the children! How many alter boys would benefit from have mass surveillance?

    2. Re:Mass Surveillance? by Anonymous Coward · · Score: 0

      "Think of the children!" (No, not like that...)

    3. Re:Mass Surveillance? by Anonymous Coward · · Score: 0

      That would violate the sexual privacy of the alter boys.

      Nooo, I that was just wrong. (smack, smack -- the sweet sound of self-flagellation)

  29. Necessary by mppp · · Score: 1, Flamebait

    Mass surveillance is a necessary consequence of mass immigration from the Muslim world.

    1. Re:Necessary by richardkettle4 · · Score: 2

      Because how many murders has the UK had from muslims in the past twenty years? Compare to deaths by the IRA.

    2. Re: Necessary by mppp · · Score: 0
    3. Re: Necessary by Anonymous Coward · · Score: 0

      And yet magnitudes more people die from traffic accidents in a single year than the number of people who will die from terrorists in the UK in decades.

    4. Re: Necessary by mppp · · Score: 0

      One form of causality is a necessary consequence of something that also creates a great deal of good in our society and the other is not.

    5. Re: Necessary by Desler · · Score: 1

      Oh no!!! Not 400 arrests in the entire EU (made up of more than 740 million people). That's clearly madness. I can totally see why mass surveillance is needed. Oh wait...

    6. Re: Necessary by mppp · · Score: 0

      casualty*

    7. Re: Necessary by mppp · · Score: 0

      That's not really a sensible attitude. The scale of violence that's possible with 400 terrorists is enormous.

    8. Re: Necessary by Desler · · Score: 1

      More people die from food poisoning or simply household falls than terrorists. Your figures you posted above are also laughable.

    9. Re: Necessary by mppp · · Score: 0

      Reducing deaths from terrorist attacks is a tractable problem, the others you listed are not.

    10. Re: Necessary by richardkettle4 · · Score: 1

      You have to let the facts play out. But Muslim extremists are such a small threat it simply does not justify giving up freedom and privacy.

    11. Re: Necessary by Desler · · Score: 1

      It's clearly not since murders by people who are neither Muslims or terrorists are many, many magnitudes higher throughout the EU.

    12. Re: Necessary by mppp · · Score: 0

      The facts couldn't be clearer. We need to act. Privacy and freedom are considerably less important to people's imperative to successfully reproduce than is safety. It's really futile to champion the former when the latter is under such pressure.

    13. Re: Necessary by Desler · · Score: 1

      That's funny because food poisoning deaths were greatly reduced over the lats century via all sorts of regulations. Seems it's not quite so intractable as you claim.

      You might as well just come out and say you dislike that facts and reality don't match your narrative.

    14. Re: Necessary by mppp · · Score: 0

      Those are native issues inherent to any society and need to be addressed. Mass murder by foreign agents is not something we have to accept.

    15. Re: Necessary by Desler · · Score: 1

      The facts couldn't be clearer. We need to act.

      You've presented no such facts. More people are murdered every day by white, non-Muslim Europeans than by Muslim terrorists.

      Privacy and freedom are considerably less important to people's imperative to successfully reproduce than is safety.

      Then move to North Korea where you can have your dictatorship paradise.

      It's really futile to champion the former when the latter is under such pressure.

      And yet more than 99.9% of the population of the EU will never encounter a terrorist or be in a terrorist attack in their lifetime. Yeah, such a "pressure".

    16. Re: Necessary by Desler · · Score: 2

      Those are native issues inherent to any society and need to be addressed.

      Yes, it should. It should be addressed before the boogeyman of the "mooslem terrists".

      Mass murder by foreign agents is not something we have to accept.

      Only 175 people were killed in 2015 by terrorists in Western Europe. That's less than a day's worth of murder in the same region.

    17. Re: Necessary by mppp · · Score: 0

      It doesn't follow from the fact that there are bigger problems than Muslim terrorists that Muslim terrorists are not a problem. That's like saying because there is global warming from green house gases, we shouldn't be concerned about polluting our rivers.

    18. Re: Necessary by Desler · · Score: 1

      It doesn't follow from the fact that there are bigger problems than Muslim terrorists that Muslim terrorists are not a problem.

      And no one said otherwise. On the other hand, you've completely skewed the actual problem such that you are acting as if Muslim terrorists are killing thousands of people on a daily basis. Deaths from terrorism are a tiny fraction of one percent of the total murders in the EU.

      That's like saying because there is global warming from green house gases, we shouldn't be concerned about polluting our rivers.

      Yes, it would be.

    19. Re: Necessary by Anonymous Coward · · Score: 1

      Not to mention the fact that Muslims are widely over represented in the crime stats across Europe. The facts are played out. Islam costs more than it gives.

    20. Re: Necessary by Anonymous Coward · · Score: 0

      I'll take your accusation of something completely insane that I never suggested as concession.

    21. Re: Necessary by Desler · · Score: 1

      You've attempted to imply something of the sort. Again, more people are murdered in a single year in the EU than the last 2 decades of terrorist deaths. So until I have less of a chance to die from simply falling in the shower I'm not gonna piss my pants over the "mooslem terrists". You can go move to North Korea where you can be stripped of all your freedoms while Big Daddy Un provides your safety.

    22. Re: Necessary by Desler · · Score: 1

      Now trying to defend yourself by using AC posts? LOL!

      Not to mention the fact that Muslims are widely over represented in the crime stats across Europe.

      [citation needed]

    23. Re: Necessary by Anonymous Coward · · Score: 0

      You seem to think I support mass surveillance. I don't. I think there are better, more honest ways of dealing with Islamic terrorism.

    24. Re: Necessary by Anonymous Coward · · Score: 0

      You're attempting to strawman. I have to use AC because I'm at my post limit for my karma level.

    25. Re: Necessary by Desler · · Score: 1

      You're attempting to strawman.

      Nope, just using your own words. To quote you:

      That's not really a sensible attitude. The scale of violence that's possible with 400 terrorists is enormous.

      Except it's not as actual facts play out. In 2015, just in the UK alone, there were 6 times as many people murdered by non-terrorists as there were people killed by terrorists in all of Western Europe.

    26. Re: Necessary by Desler · · Score: 1

      You seem to think I support mass surveillance. I don't.

      And yet your posts in this thread say otherwise.

      I think there are better, more honest ways of dealing with Islamic terrorism.

      Sure you do:

      Necessary (Score:0) by mppp ( 1936232 ) Alter Relationship on Tuesday November 29, 2016 @09:29AM (#53384885)

      Mass surveillance is a necessary consequence of mass immigration from the Muslim world.

      Strange selective memory you have there.

    27. Re: Necessary by Anonymous Coward · · Score: 0

      By the Trump, Fillon and Putin, that's like almost one entire French gypsy camp living and converging illegally near a bridge! When an Englishman can't do the deed but likes to watch, and a Brussels man is lost in bureaucracy, the Frenchman does what must be done. See, I clearly proved why mass surveillance is necessary.

    28. Re: Necessary by Anonymous Coward · · Score: 1

      For example, Muslims are 8% of France's population but constitute 70% of the prison population. There are similar stats available in other European countries that haven't censored reporting on crime demographics.

      http://www.telegraph.co.uk/news/worldnews/europe/france/11352268/What-is-going-wrong-in-Frances-prisons.html

    29. Re: Necessary by Anonymous Coward · · Score: 0

      I'd prefer much more draconian measures than mass surveillance to deal with the threat of terrorism, eg, registries, inquisitions, mass deportations, etc.

    30. Re: Necessary by Anonymous Coward · · Score: 0

      Tell that to the families of the victims.

    31. Re: Necessary by goose-incarnated · · Score: 1

      While I think that mppp is a fuckwit, but minus the wit, the statement (alone):

      Mass surveillance is a necessary consequence of mass immigration from the Muslim world.

      does not tell you anything about his support for or against mass surveillance.

      Someone stating that $X is a necessary consequence of $Y in no way implies support for or against $X, regardless of whether $X is or is not a necessary consequence of $Y.

      --
      I'm a minority race. Save your vitriol for white people.
  30. When the info leaks.... by BenJeremy · · Score: 2

    It's not a matter of IF but WHEN hackers start leaking embarrassing information on the Royals and members of the government, all collected as part of this program, that their tune may change.

    Until then, the "Free world" seems to be engaged in a race to Orwell's vision of Big Brother.

    1. Re:When the info leaks.... by 110010001000 · · Score: 1

      How cute. He thinks they are going to collect the information of the elites too.

    2. Re:When the info leaks.... by Anonymous Coward · · Score: 0

      Precisely what I was thinking. These laws will last about as long as it takes hackers to hack and publish some embarrassing data.

    3. Re:When the info leaks.... by Anonymous Coward · · Score: 0

      It won't be the oligarchs, royals, elite celeb's; it'll be a massive dump of the public's data. Think about what happens after linkedin fucked up, or those commercial infidelity sites. They weren't filtered to big names, they were everyone. I deleted my linkedin account years before they were hacked, yet my details are out there in the wild because the site doesn't delete anything (like them all), it merely sets a delete_flag.

    4. Re:When the info leaks.... by Jason+Levine · · Score: 3, Insightful

      Of course they will. This way the people in charge of the information gathering can ensure that the elites keep in line and keep approving more snooping powers or else all that embarrassing information might "accidentally" be revealed to the world.

      --
      My sci-fi novel, Ghost Thief, is now available from Amazon.com.
  31. Democracy? by Anonymous Coward · · Score: 0

    I don't know what it is, but it resembles NOTHING like a democracy. It's more like a dictatorship, where those in power have the ability to crush descent as well as the terrorist.

    Pray they don't start wanting more power, because you have already relinquished your ability to stop them.

  32. this is some Orwellian shit by Anonymous Coward · · Score: 0

    Speaking as a person living in post-soviet country, you British need to step up your game. This is shameful. Organize protests (Madan), challenge public powers. Maybe It's time to start constitutional movement in Britain.

  33. Mass muslem immigration by Anonymous Coward · · Score: 1

    The fact is, islam is incompatible with Western civilization, and they are driven to impose their values (sharia) with violence. If you want mass muslem immigration, you need a surveillance state to keep them from mass murdering you.

  34. Won't do what you want by fyngyrz · · Score: 3

    They'll just raise your taxes and buy more computing power with your money if they need to. But they probably won't need to.

    In the contest between armor and weapons, armor always ends up losing. In this case, you have to recognize that at both ends of the communication, the information is unencrypted. Consequently, if they want you, and you have hardened the communication using encryption, they probably won't even try to compromise the communication. They'll compromise one or more of the computers at the endpoints of the communication. Unless your computer is running your own custom operating system, there isn't anything you can do to stop them short of disconnecting from the communications networks, which kind of puts a damper on your communications capabilities and so is actually a rather obvious form of footgun in that regard.

    The right answer is to get the opposition to stop shooting at you.

    In this case, the right answer is to get the government out of the business of tracking the citizen's locations, finances, business, and communications.

    If that can't be accomplished, then the citizens lose. Period.

    The situation here in the USA is dire. The politicians have actually convinced people that it's a good thing that they monitor their banking, their business, their communications, their location, etc. The politicians created and used many forms of hugely-blown-out-of-proportion hysterical narratives to get that accomplished. Today, the average citizen is an Orwellian-class dupe. There's no sign at all that this is going to change.

    Security today depends on never sharing anything with anyone. Outside of that, you either are already, or can be at any time, compromised by state agents fully empowered to do so. Not authorized, mind you -- this is exercise of arrogated power I'm describing -- but that no longer matters, which is another severe problem we have been presented with.

    And on that cheerful note... :)

    --
    I've fallen off your lawn, and I can't get up.
    1. Re:Won't do what you want by Anonymous Coward · · Score: 0

      That what IBM developed Think Blue for. They see the payola coming down the pipe as the various spy agencies and corporations look for something to provide meaningful answers in near real-time based on these giant datasets everybody is collecting.

  35. DVDA for your data by fyngyrz · · Score: 1

    On the contrary. Tempest

    Those high-energy electron guns... very handy for surveillance of any part of the masses one chooses, as it turned out. Of course there were many other mechanisms in play at the time.

    Today, a computer running linux, OS X, or Windows connected to the Internet is far better. It's like DVDA for your data. Leaves your data-legs split open like a thanksgiving turkey. They don't need to compromise you carrying the turkey around, either. They're sitting right at your dinner table with you.

    --
    I've fallen off your lawn, and I can't get up.
    1. Re:DVDA for your data by 110010001000 · · Score: 1

      Yeah but Tempest wasn't mass surveillance. It was targeted surveillance.

    2. Re:DVDA for your data by fyngyrz · · Score: 1

      Without going into detail, speaking as an engineer, one signal... many signals... the distinction is not a serious technical obstacle, other than money, which, again, not a serious obstacle to the state. Do you really believe this type of tech was only used 1:1?

      The feds monitor emissions from vans, from aircraft, in vehicles, and from orbit. If they want you, they already have you. I write very high end signal processing software. I assure you this has been going on for decades. We just have better computers now. They have always had the best computers money could buy, so where we are today, they were some time ago.

      It's just the way it is.

      --
      I've fallen off your lawn, and I can't get up.
  36. The islanders got their country back by OneHundredAndTen · · Score: 1

    And they are now taking another little step toward fascism. In lockstep with the US. Welcome to the 30s.

    1. Re:The islanders got their country back by richardkettle4 · · Score: 1

      you think fascists are the experts at mass surveillance? History would argue with you.

  37. Quotes, context, and originalism by fyngyrz · · Score: 2

    I don't think you understand that what Franklin meant one way, we can mean entirely another -- both can be sincere, and both uses are entirely appropriate. Nothing is lost by attributing the quote, either.

    The stance that personal liberty and immunity from government oversight of personal and consensual activities is a good thing, and that trading these off for (generally the illusion of, but very occasionally the actuality of) safety is an act so vile that it renders the trader unworthy of those liberties and immunity, is a very well established one. Franklin's words then fit such an outlook today very well, regardless of what he intended them to mean at the time.

    Words are like that. When we aren't talking about law, words are tools to be used as we see fit. As they should be.

    --
    I've fallen off your lawn, and I can't get up.
  38. Time, flowing backwards by Anonymous Coward · · Score: 0

    formally legalizes a number of mass surveillance programs revealed by Edward Snowden in 2013.

    Ladies and gentlemen, time traveling has been proved! The only other alternative is that the government officials did something illegal. Expect for the officers showing up at your door steps duly as the arrest backlog eases.

  39. The USA doesn't bother with tedious legalities by Anonymous Coward · · Score: 0

    They just do it anyway, from secret courts (i.e. kangaroo, rubber stamps that produce only documents and do what they're told).

  40. Governement Petittion - all from UK should sign by Anonymous Coward · · Score: 0

    https://petition.parliament.uk/petitions/173199

    Some of us are more equal than the rest of us exemptions for MPs, Doctors and Lawyers??
    And the most insane and huge list of groups being given access https://yiu.co.uk/blog/who-can-view-my-internet-history/
    Everyone in the UK should be fighting this draconian fascist complete invasion into such a huge part of our lives - https://petition.parliament.uk/petitions/173199

    Captcha - consent

  41. Awful by Ensign_Expendable · · Score: 1

    I feel so sorry for this person.

  42. 1933 Hitler Enabling Act by Anonymous Coward · · Score: 0

    German law before 1933 did not include provisions that allowed a single man, Adolf Hitler, to consolidate military power around himself. This british law reminds me of this enabling act, if history repeats itself - I would start speaking out against UK government.\

  43. Not people: It's a computer problem by fyngyrz · · Score: 1

    Look, I know my browsing will be in a huge database that nobody will look at it.

    The problem is not correctly posed as "nobody will look at it." This isn't a people problem.

    What "looks at it" is computer systems, programmed to look at it. What a human would consider "lost in a sea of data", a computer will have no trouble finding, characterizing, and reporting back as "this is the data you were looking for" to any interested inquiry, perfectly formatted for immediate use / subsequent action.

    So the day they make your particular fetish or recreational substance / entertainment / political stance / religion / etc. a crime, that data will immediately identify you as a vulnerable citizen. Now it comes down to what use can be made of you. Porn sweep to impress the mommies? A little pressure to get you to do X or Y? Filling the need for unpaid slave labor in prison factories? Soylent green? (I hate that damned movie, but...)

    In the US, the constitution explicitly forbids -- both to the federal government and that of the states -- going back in time and making crimes out of actions that were not crimes at the time, or increasing punishment along the same lines. These are the "ex post facto" provisions. In recent decades, a spate of such laws have been crafted and put into broad use, treating the constitutional prohibitions as irrelevant. Generally the mechanism used has been sophistry ("You absolutely will not sell hamburgers" ... "Why, that's not a hamburger! That's a ground beef sandwich!" ... "Okay then, carry on.") and pandering to intentionally crafted, hysteria-induced mommy fear (Terrorists! Drugs! Think of the children!), which is often spiced with not-very-subtle appeals to jingoism, superstition, and classist notions.

    Unless the citizens can control the government, a capability US citizens no longer have, this kind of cancerous spreading of unauthorized and forbidden exercise of power is very likely. Your data stashed in some database today renders you vulnerable to any part or parcel of perfidy by any state actor. The only sure way to prevent this is to keep your data out of these databases in the first place. And it looks like you've forfeited that option. Sorry.

    --
    I've fallen off your lawn, and I can't get up.
    1. Re:Not people: It's a computer problem by Sloppy · · Score: 1

      So the day they make your particular fetish or recreational substance / entertainment / political stance / religion / etc. a crime...

      You're an optimist, and overstating the safety and benevolence of this program. Quit sugar-coating it, you apologist! ;-)

      Peoples' fetish, substance, etc is already illegal, somewhere. And since no government (including UK) has shown itself to have the ability to store things securely (it's almost as though they employ people), it is reasonable to assume the data is (or eventually will be) globally available.

      UK citizens aren't just making a decision to totally and completely trust trust their own government forever. They are also deciding that they already fully trust the Russian government, the Chinese government, the Saudi government, criminals, etc and that they will always be able to trust those parties.

      UK is declaring that this is one big happy world without any adversarial relationships, and that "security" is a totally obsolete concept.

      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    2. Re:Not people: It's a computer problem by richardkettle4 · · Score: 2

      Apologies, but that was the point I was making. 'In the US, the constitution explicitly forbids -- both to the federal government and that of the states -- going back in time and making crimes out of actions that were not crimes at the time, or increasing punishment along the same lines' How progressive, 500 years later than Europe, but good to know you have simple logic. But any future government can change that. As for 'you've forfeited that option. Sorry.' Really? Who did and when? And how? I have no idea who you are talking about and why the FU attitude

    3. Re:Not people: It's a computer problem by Altrag · · Score: 1

      to any interested inquiry

      This is the most relevant point. Honestly, most of the data these systems collect on you could be collected by a sufficiently skilled investigator. To that end, the amount of data that they collect isn't _really_ an issue in itself. I mean it is, but its definitely not the biggest issue.

      The biggest issue is how secure that data is. If you have to go out an hire an investigator to dig up information on someone, that involves a significant amount of trust on your part, and usually lots of time and/or money as well. That tends to put a damper on spurious uses of investigative powers.

      If you just have to punch a name into a computer and its suddenly all in front of you though, it becomes second nature to just dig into anyone you feel like -- whether or not you have legal justification for doing so. Time and money are gone from the equation.

      That leaves trust. We're told constantly that these systems have strong access restrictions and abuse prevention -- but we're stuck just believing that since there's no independent audits done never mind public audits.

      And even if we trust that abusers are being caught, we have to then believe that they're being punished in any sort of significant manner. Certainly these abuses occasionally makes the news and those guys will be punished just to save face, but how many instances go unnoticed by the media and therefore minimally or even unpunished? Again, there's no independent auditing done so we just have to take them at their word.

      And then even if you get past all of that, there's the whole hacker issue to deal with. The news is constantly littered with reports of hackers breaking into our largest and (supposedly) most secure databases, both corporate and government. Why should we believe this new database is any safer?

      Sure the government will have a few wide-net filters like searching for bomb threats on Twitter or whatever but for the most part the data will just sit there until someone who has access to it takes a personal interest in you. A hacker gaining access to that kind of data though will be trolling for things like blackmail subjects that even the most untrustworthy government would have no reason to do on a large scale.

    4. Re:Not people: It's a computer problem by fyngyrz · · Score: 1

      If you just have to punch a name into a computer and its suddenly all in front of you though, it becomes second nature to just dig into anyone you feel like -- whether or not you have legal justification for doing so. Time and money are gone from the equation.

      That's a lot of words to say "Google" :)

      --
      I've fallen off your lawn, and I can't get up.
    5. Re:Not people: It's a computer problem by fyngyrz · · Score: 1

      I have no idea

      None so blind as those who will not see.

              --John Heywood, 1546 CE

      --
      I've fallen off your lawn, and I can't get up.
  44. Any difference by Anonymous Coward · · Score: 0

    Before: GCHQ watches everything you do, and keeps quiet about it.
    After: GCHQ watches everything you do, and keeps as quiet as possible about it.

    I have always assumed that everything I do on the Internet and, indeed, everything I say on the phone might turn up to haunt me if I bother the Powers that be too much. This sad reality is distasteful. The spooks believe that their job is to watch everyone, all the time, and that is what they do, legally or otherwise.

  45. Here's why by fyngyrz · · Score: 1

    If you know of a crime, why would you not report it?

    Because "crime" is not an adequate discriminator for "bad."

    Just a few obvious examples over time: Helping a slave escape from slavery was a crime. Using a fountain while being black was a crime. Having various types of wholly consensual and informed sex has been a crime. Using various drugs is a crime. Going naked in public is often a crime. There are many more examples like these.

    None of which rise to the level of "bad", except inasmuch as they demonstrate the government is bad.

    And that is why if you know of a crime, if you are a decent human being, you would definitely not report it.

    --
    I've fallen off your lawn, and I can't get up.
    1. Re:Here's why by Anonymous Coward · · Score: 0

      And that is why if you know of a crime, if you are a decent human being, you would definitely not report it.

      Yeah, because if you know someone has raped or murdered someone else the "decent" thing is to make sure to hide it from the police. *rolls eyes*

    2. Re:Here's why by Anonymous Coward · · Score: 0

      Have you always been this stupid and obtuse, or is this something new for you? Hit your head lately? Take any serious drugs?

    3. Re:Here's why by richardkettle4 · · Score: 1

      Who said this had anything to do with 'bad' or 'immoral'? Oh you, now you are arguing against yourself. You should win that argument.

    4. Re:Here's why by Anonymous Coward · · Score: 0

      And that is why if you know of a crime, if you are a decent human being, you would definitely not report it.

      Suppose I'm your lawyer and I know that you are raping your daughter. How does reporting that to the police mean that I am not a decent human being?

    5. Re:Here's why by richardkettle4 · · Score: 1

      wow, you realise that lawyers have legal obligations the same as the rest of us right? They cannot legally defend anyone knowing their guilt. Is this news to you? Really?

    6. Re:Here's why by richardkettle4 · · Score: 1

      just a p.s. good to know you think defending rapists makes you a good human being.

  46. "We the people" is bullshit by Anonymous Coward · · Score: 0

    I don't believe for a second that an individual would deliberately "oppress themselves". Common sense tells me that oppression, in any form, must come from the top down, not the bottom up. Oppression, like any relationship based on coercion, involves an aggressor and a victim, and obviously, they can't possibly be the same person.

    1. Re:"We the people" is bullshit by Nidi62 · · Score: 2

      I don't believe for a second that an individual would deliberately "oppress themselves". Common sense tells me that oppression, in any form, must come from the top down, not the bottom up. Oppression, like any relationship based on coercion, involves an aggressor and a victim, and obviously, they can't possibly be the same person.

      The trick is to make the oppressed actually want the oppression. Do this, and you can very easily have the people oppress themselves, and cheer as it happens.

      --
      The only thing necessary for evil to triumph is for it to be pitted against a slightly greater evil
  47. By clicking on this story.. by GuyNorton6803 · · Score: 1

    ...an alarm bell went off at GCHQ... By commenting on this story, it was listened to...

  48. Re:Safety by Maritz · · Score: 1

    Safety is the excuse sold to the ignorant. They suck it down, just like everything else they're sold in the UK. e.g. "leaving the EU will make the brown people go away".

    --
    I do not want your cheap brainburning drugs. They are useless for work. And I am a working man today.
  49. How? by WaffleMonster · · Score: 1

    How are ISPs supposed to get browsing history when all of the web traffic is encrypted? The best you can do is domain via SNI/public key transferred in the clear during handshake. Practically speaking you won't really get much more granularity out of that v. netflow.

    1. Re:How? by richardkettle4 · · Score: 1

      You are correct, all they can/will gather is domain name, not even deeper pages visited

  50. This is already happening in U.S. by Anonymous Coward · · Score: 0

    Just not directly by the government but by corporations. Anyone here use Alexa or Google's "Google Home"? Then you are being spied on and all your internet browsing done through those devices is being recorded and saved. Not at some government data warehouse but at some corporate data warehouse. So the government just needs to ask for this info when ever they want it.

  51. Mass Surveillance? by OhSoLaMeow · · Score: 1

    I don't see the point in installing cameras in Catholic churches.

    Church of Elvis maybe...

    --
    They can take my LifeAlert pendant when they pry it from my cold dead fingers.
  52. Surveillance not weed by TJHook3r · · Score: 1

    The US is legalising weed and all the bloody UK gets is free surveillance. Welcome to the UKSSR.

  53. You imbecel by Anonymous Coward · · Score: 0

    As opposed to Bill Clinton, Kennedy, etc... who are actually documented as womanizers?

    While they may be womanizers, they do so with consenting adults (alt-right lies about Clinton notwithstanding).

    You are engaged in a false dichotomy, equating Donald Trump's sexual assaults, rape, and intimidation of accusers with men who simply cheated on their spouses.

    But then you know this, don't you, you piece of utter alt-right shit.

    1. Re:You imbecel by Anonymous Coward · · Score: 0

      >sexual assaults, rape

      [Citation needed]

      >men who simply cheated on their spouses

      Bill Clinton is literally a rapist.

      Scaremongering dipshit.

    2. Re:You imbecel by Zak3056 · · Score: 2

      While they may be womanizers, they do so with consenting adults (alt-right lies about Clinton notwithstanding)

      So the idea that Bill Clinton lost his license to practice law for obstructing justice and perjuring himself during a sexual harassment lawsuit is just a lie?

      Not that I think that gives Trump a pass, FWIW. "Everybody is doing it" isn't a valid excuse for wrongdoing.

      --
      What part of "shall not be infringed" is so hard to understand?
    3. Re: You imbecel by Jesus+H+Rolle · · Score: 2
      sexual assaults, rape [Citation needed]

      Ivana gave a sworn deposition in which she stated that he ripped out her hair and violently raped her after a botched hair job by a doctor she recommended.

      Post divorce settlement, and just prior to the publication of an unauthorized Trump biography, she suddenly explained that "rape" meant a lack of emotional closeness and shouldn't be taken literally.

      Googleis plainly your enemy.

    4. Re:You imbecel by Wycliffe · · Score: 1

      men who simply cheated on their spouses.

      It was considerably worse than this. Bill Clinton held one of the most power positions in the world and had sex with an intern. Many teachers, professors, and military personnel have been fired and in some cases jailed for abusing considerably less power than that. Having sex with a low level subordinate is probably as close to non-consensual sex as you can get and is the reason it's highly against the rule in the military, in education, and in almost all companies.

      But then you know this, don't you, you piece of utter alt-right shit.

      I'm definitely not alt-right. I didn't even vote for Trump. I find it strange though how the main problem that anti-trump people have with Trump is that he is a bully and he spews hate and then these same anti-trump people bully Trump supporters and spew their own hate. I was curious where I stood on positions so I tried isidewith. Both Trump and Hillary were at the bottom with all three third parties at the top. I find both main parties disgusting mirrors of each other and find the mock outrage of the opposing side laughable when honestly these days it's hard to tell them apart. Hillary was the most Republican candidate in history and Trump the most liberal candidate. There was a reason that former republican presidents crossed over to vote for Hillary because they knew she would keep up the charade.

    5. Re:You imbecel by Anonymous Coward · · Score: 0

      if everyone is doing it. Maybe it is not wrong.

    6. Re:You imbecel by Zak3056 · · Score: 1

      if everyone is doing it. Maybe it is not wrong.

      That's a reasonable position, and quite true in many cases (our recent push for marijuana legalization is a good example). However, I'm not sure "grab them by the pussy" rises to that level of moral ambiguity. "Rape the girl while your state trooper bodyguard makes sure no one disturbs you" probably has issues, as well.

      --
      What part of "shall not be infringed" is so hard to understand?
  54. Make a new internet. by Dripdry · · Score: 1

    New Internet. Start it now.
    The internet has been destroyed. Not by nuclear weapons, but by internal actors.

    Pull the important stuff off of here and build a new one that's distributed. It'll be slower, sure, but with the computing power most of us have in our pockets we could probably make a good go of it.

    --
    -
    1. Re: Make a new internet. by Anonymous Coward · · Score: 0

      Are you going to build the infrastructure as well? And anyway they're not letting you do it.

  55. How did the Home Office press release end? by Anonymous Coward · · Score: 0

    "England Prevails"?

  56. Let them eat cake by Anonymous Coward · · Score: 0

    I say .. if they want to collect every URL I visit.. let them.. in fact we should ALL help them by making sure we utilise our bandwidth effectively while away from our computers by visiting as much stuff on the internet as possible.. perhaps running our own search engine indexing robots.. eventually the exabytes worth of data we generate will cause someone somewhere some pain...

  57. The give-a-shit factor. by geekmux · · Score: 1

    Zoom out the lens a bit, and the larger problem becomes rather evident, which is trying to convince the masses to give a shit enough about privacy to execute even a single extra click of effort to protect their communications. This also speaks as to how easily something blatantly called the "Snoopers Charter" still passed with arrogant colors, flying in the face of the Snowden revelations. I fully expect the next bill to be simply titled Fuck You, That's Why, with pure ignorance greasing the approval skids.

    To encrypt, or not encrypt?

    On one hand I would say that Governments have plenty of lemmings to siphon cleartext data from, potentially minimizing your target risk.

    On the other hand, a privacy zealot/encryption fan stands out like a sore thumb without raising the give-a-shit factor, potentially painting a target on your back.

    1. Re:The give-a-shit factor. by RazorSharp · · Score: 1

      On the other hand, a privacy zealot/encryption fan stands out like a sore thumb without raising the give-a-shit factor, potentially painting a target on your back.

      That's precisely why you should encrypt. If there are too many "targets" out there then it becomes an ineffective targeting system. It's like a movie with too many red herrings.

      --
      "From the depths of my skeptical and rationalist soul, I ask the Lord to protect me from California touchie-feeliedom."
    2. Re:The give-a-shit factor. by geekmux · · Score: 1

      On the other hand, a privacy zealot/encryption fan stands out like a sore thumb without raising the give-a-shit factor, potentially painting a target on your back.

      That's precisely why you should encrypt. If there are too many "targets" out there then it becomes an ineffective targeting system. It's like a movie with too many red herrings.

      You don't have to convince me of the value of encryption. You have to convince the lazy masses, hence my original point stands; the give-a-shit factor.

      People just don't care enough about security or privacy. It's not just ignorance either. It's willful ignorance.

  58. Private property by Anonymous Coward · · Score: 0

    What I don't understand is how this is legal, considering that EVERYTHING that occurs on the internet, is the result of private contractual agreements between pairs of parties.

    You have a contract with your ISP. There's your network, and there's your ISPs network. Your ISP has an agreement with a number of datacenters and a number of backbone providers. etc etc, all the way to the other side of the internet to the third party your packets are going to/from.

    Nowhere on the internet is "public". It only FEELS like it is, because all these contracts allow both you and me to get to Slashdot, despite the two of us having a completely unrelated maze of private contracts and services connecting us together.

    Technially, underneath it all, the internet is no different than the first two private entities that decided to lease a phone line between them. What right does anyone have to intercede in that without any specific claimed wrongdoing on either entities part?

    ( Plebs have no idea how everything works, and it feels like they're standing in a crowd on a public park or city street ... so their rationalization is wrong right from the get go. )

  59. A little birdie told me to use I2P by fustakrakich · · Score: 1

    Would it help here?

    --
    “He’s not deformed, he’s just drunk!”
  60. Heh by MitchDev · · Score: 1

    "The Investigatory Powers Act is world-leading legislation"

    If by that you mean "Leading the world into totalitarianism and a perpetual police state"

  61. UK MPs exempted themselves by WillAffleckUW · · Score: 1

    They specifically disallowed GCHQ email tracking for all Commons Lords and PMO originating electronic traffic.

    So, yes, you live in a Dictatorship, Lesser Britain

    --
    -- Tigger warning: This post may contain tiggers! --
    1. Re:UK MPs exempted themselves by richardkettle4 · · Score: 1

      Citation? I think you do not understand the word 'dictatorship'.

    2. Re:UK MPs exempted themselves by cs96and · · Score: 1

      "Snoopers’ Charter: Only amendment politicians have submitted to controversial bill is to stop MPs being spied on" http://www.independent.co.uk/l...

  62. Re: My suggestion is to pit the state against itse by Anonymous Coward · · Score: 0

    FOI would not be answered anymore. You can't fight the State.

  63. There is no such thing as a UK/British citizen by Anonymous Coward · · Score: 0

    While it may sound pedantic, there is no such thing as a British/UK citizen. The correct definition is a British subject.

  64. This actually makes us less safe. by FeelGood314 · · Score: 1

    The police should be fighting against this.

    This bill along with the actions of other western governments has hurried the use of strong competent encryption in our daily lives. Soon all my traffic will be over TLS, everyone's searches will by default all be done on secure servers out of reach of legitimate law enforcement. Now with this law us geeks will not only start using VPNs and onion routing more but we will teach our friends to do it. In a few years any idiotic criminal will be using encryption that will make it impossible for the police to discover their communication.

  65. browser application idea by Anonymous Coward · · Score: 0

    If "they" want to save browsing history, let's give them a lot to save.

    have a browser add on, that generates random searches and picks words from those random searches and continues to search.

    after a random number of additional searches, it clears cache and starts again.

    with this running in the background, every user will generate 100x times the data.

    and your searches will be in this mess..

    1) invest in storage companies
    2) make program
    3) profit when the government has to buy tons more storage.

  66. One thought: Free State Project by Anonymous Coward · · Score: 0

    If there is any chance in hell at fixing what we've gotten ourselves into it's going to take activists coming together to overthrow the shackles that the US, UK, and every other government is putting on us. We need to migrate enough people who care about these issues to overthrow the powers that be. Right now there is still an opportunity to create a bastion of freedom, but the time is running out.

    The reason the early Free State Project participants picked New Hampshire was because the state provided the best chance of attracting sufficient people that those who care about these issues will eventually be able to dominate politics in the state. New Hampshire is a bit better than many states already, is situated to be independent of the federal government, is wealthy, cost of living is low, etc. That doesn't mean (especially initially) that those who wish to be free are going to dominate New Hampshire. However are already having an impact on elections in the state and the politics thereof. There is no where you can move in New Hampshire today that there aren't lots of early movers (people who arrived before the kick off of the migration, which started in March of this year).

    You don't need a revolution to have a major impact, even if that is ultimately the dream of a majority of people partaking in the moment. The majority of people in prison have been incarcerated by the state and while the federal government can have the most detrimental impact it's the state's doings that impact the most number of people. This is why cannabis legalization has worked. The federal government might have the most sophisticated systems, but the state governments have the most number of officers that actually arrest and incarcerate people.

    You can make excuses for why you can't move. From "it's hard" and "I like where I am at" and "I have a good job/kids/etc". You can say "the civil war settled state independence" totally ignoring that 100 years have past and political / revolution can take different forms and be won in different ways. You can say "I just bought a house. I can't move.". Well, so have a lot of other people. I bought a house three years ago and moved last year. I sold a house and bought a new one in New Hampshire. Yes. Moving is hard, but there are lots of people doing it. The more people that move the more impact we'll be able to have and the movement itself has already proven a success- so come and join us. Unless of course you like censorship, mass surveillance, and living under a police state. I don't want to be a slave to the state. I don't think the state should setup wealth redistribution programs (welfare should be charity rather than theft via taxes) or thrust taxes upon people so high that they become dependant on the state to indoctrinate there children through public 'schooling'. I don't think the government should have any authority over whether or not you can work (start a business, become a hair dresser, etc) nor be giving people permission for people to utilize the roads under the guise of 'safety' (drivers licenses, license plates, vehicular registration, car insurance). The world is a dangerous place- but for freedom to really exist you must be willing to accept these risks. New Hampshire doesn't mandate car insurance and the world hasn't fallen apart. We even outlawed cameras and ALPR for a while and the world didn't fall apart (automatic license plate recognition)!

  67. This will be abused - inferred information by FeelGood314 · · Score: 1

    Once it is collected this information will either be too tempting not to be used or will be used to justify the cost of collecting it. Your browsing history will mined to quantify you. So maybe your exact details won't be revealed but information inferred by your habits will be used. The surveillance will reveal your income level, your likelihood to gamble, use a prostitute, voter preference and likelihood to vote, your children's likelihood to succeed in school. Companies will then selectively choose not to offer you products, government might not invest in infrastructure in your area because they might deem your area unlikely to elect their candidate, programs won't be offered at your school because another school has kids with a higher aptitude for those programs.

  68. Social control for the 21st century by CinnamonDonkey · · Score: 1

    This is nothing to do with terrorism and all about control! The internet allows the people to communicate, share, learn and oppose. Not something the government generally wants - this is about monitoring the population, detecting trends, silencing opposition and influencing thought.

  69. World-Leading Legislation by LarryRiedel · · Score: 1

    Leading the world to where?

  70. Next: UK datacenter in the US by Ransak · · Score: 1

    Soooooo, what would stop a 'coalition' of the US and the UK from abusing this to their hearts content? All the UK as to do is set up a datacenter in the UK embassy in the US, and the US to ask telcos and ISPs to route traffic through it. Just like that, two democracies that can spy on it's citizens at will and completely 'legal'.

    --
    "Powers. I have them."
    1. Re:Next: UK datacenter in the US by richardkettle4 · · Score: 1

      Welcome back! I think Snowden sort of pointed out that this has been happening for years.

  71. Is the Internet now mandatory? by WormholeFiend · · Score: 1

    Does this law prevent people from not using the internet to do whatever? Exactly.

  72. You're a naive fool. by Anonymous Coward · · Score: 0

    Every major computer processor and SoC your personal information goes through (if bought after LGA77x for Intel, Fam15h/AM4/FM2+ for AMD, or anything with TrustZone for ARM) is already under manufacturer/OEM control. Most of them have DRM provisions that can allow software to trap into 'trusted' mode to verify if you're deemed 'privileged' to use them, and will only work if an unbroken chain of trust exists in the devices. There are also known exploits in at least one implementation from each company which can allow a non-manufacturer/government malicious 3rd party to gain temporary privileged access to the system, giving greater than owner level permissions to the system, including snooping on memory, trusted keys, derandomizing your random number generator, etc.

    The internet surveillance is just a small step towards ubiquitous government control of your personal devices, and logging of your personal activities or private information, even information you believed secure from prying eyes, whether mundane or a 'threat to the health and welfare of the country'.

    If any of you are not the sort of sheeple you often complain about, now is the time to make a stand and put your money where your mouth is. Stop buying hardware you don't control from chip bootstrap up. If you are buying a piece of hardware with TrustZone style management functions, ensure those functions are not signed by the manufacturer or OEM and have mechanisms in place for you to program keys yourself if desired.

    There are many other steps that can be taken, but if the central hardware cannot be trusted, then every other mechanism is inherently compromised and not under your control.

    Break free nerdizens before you are marched to the slaughter with all the other sheeple!

  73. Stop the hysteria by richardkettle4 · · Score: 2

    Look, it is not good but: it only collects TLDN. Any closer inspection requires two levels of legal agreement. Do not think the judiciary here is passive, it is not. I have heard everything here from the UK is a dictatorship to somehow we are fascists. It is a proposal/law by people that do not understand technology. All they have done is make the haystack bigger and forced people to hide the needle better. It will not do what it claims to: hey, we have all promised that tech will solve all your problems. It does not, and cannot.

  74. Someone Convinced the Governments of Threats by Anonymous Coward · · Score: 0

    It probably amounts to some of these problems:

    1. The advisors to high ups in the government see China hacking the west, see terrorists being asses, and are scared. So they scared their bosses and recommend everything they can to monitor this crap.

    2. They believe they are doing their job and "not really hurting" the people by monitoring everything. They think they can somehow catch the badguys... maybe sometimes they do, though I don't know if it makes a big enough difference.

    3. They also are of course tricking the public into not thinking they are being violated... they say they are protecting. While yeah, I'd love terrorists and illegal porn (I don't even like the mention the type) people be stopped... it seems clear to me that we as a whole people are being violated in a huge way.

    Somebody said it before. At least we can count on hackers getting the government's data and exposing them as the asshats they are. It cuts both ways.

  75. Masses are a problem by balbeir · · Score: 1

    In particular Catholic ones. They need surveillance otherwise the altar boys are in danger.

  76. Let Them Have It by Dripdry · · Score: 1

    Let them have it.
    Let them have it all. there won't be enough people left to buy their oil, products, tv subscriptions, drugs...

    they thrive on opposition. Let the masses become poor and starved immediately. Let us turn to our neighbors, in need, and disrupt them from their Pro Sports broadcast and summer home in the mountains.
    Let us finally simply give up and let the system exhaust itself. It thrives on suffering, so let us end the suffering with us.
    The economy will grind to a screeching halt, hitting them exactly where it hurts. Let us do this before it is too late and too many of their profits come from a China, where they already have an obedient populace.

    --
    -
  77. Invest! by nospam007 · · Score: 1

    I hope you Brits at least invested heavily in your VPN company, not only the 3£ per month for their service, their business will go through the roof.

  78. Obligatory Orwell by Anonymous Coward · · Score: 0

    From TFA, quoting home secretary Amber Rudd:

    The Investigatory Powers Act is world-leading legislation, that provides unprecedented transparency and substantial privacy protection.

    She must think all UK residents are complete retards?!

    "War is peace. Freedom is slavery. Ignorance is strength." -- George Orwell, 1984

  79. George Orwell by Anonymous Coward · · Score: 0

    1984 is here

  80. Internet presents new opportunities for terrorists by Anonymous Coward · · Score: 0

    and we are going to use all of them.

  81. Trackmenot by Zelea · · Score: 1

    Use the Firefox Trackmenot extension to dilute your searches with random ones. Or even better have a daemon program performing searches in background all the time. The program could work by fetching a random page from a google query; then parsing the page and making a new query based on somne words found in that page. The longer the search strings the better because that's more storing space for the UK ISPs.

  82. Is that you, Orwell? by RazorSharp · · Score: 2

    The Investigatory Powers Act is world-leading legislation, that provides unprecedented transparency and substantial privacy protection.

    WAR IS PEACE

    FREEDOM IS SLAVERY

    IGNORANCE IS STRENGTH

    --
    "From the depths of my skeptical and rationalist soul, I ask the Lord to protect me from California touchie-feeliedom."
  83. More encryption by Anonymous Coward · · Score: 0

    Wont be perfect but it will make their lives more difficult.

  84. Allies? by siamesevodka · · Score: 1

    So does that mean nsc cia fbi can set up shop in England use the existing draconian laws passed by their Lordships and then go back down the pipe to the USA and use the same amount of spying the Brits do? They could always claim they were obeying British Law couldn't they?

  85. It's A Good Life! by Anonymous Coward · · Score: 0

    It's real good your watching us. Real Good, Now wish em in the corn field Anthony..

  86. I already know some flaws of the bill by strstr · · Score: 1

    Surveillance and investigation isn't so bad. The problem is the people doing it are corrupt, continuing to lie and deceive the public. The thing missing from the bill is the public can't investigate officials for abuse or crime, only the public are the targets and those working for the government are white listed to conceal the crime they wish and do whatever crime they wish. Its a true license to kill sort of thing.

    The other thing is they forgot to disclose they were still secretly using satellites and military radar to scan peoples homes, brains, and bodies for thought and memory extraction. They also forgot to say they have remotely interrogated and tortured the fuck out of some people and even killed people secretly with it.

    Those are the deepest secrets of this bill; the bill was passed mostly to cover up all the crime the state has done that they don't want prosecuted for and they don't want the public to ever find out the full truth.

    I know the black world and special access programs well. I know they want to hide their surveillance capabilities because they can be used on officials to uncover their conspiracies and crime all of which are being covered up and protected.

    Fix these issues then you got a bill.

    https://www.obamasweapon.com/
    https://www.drrobertduncan.com...

  87. Uhh.... by easyTree · · Score: 1

    Do I misunderstand or are our own governments subjecting us to worse conditions than the terrorists ?

    Feel free to chip in if you're a terrorist - is your every waking act taxed? Are you manipulated and lied-to from birth to death without pause? Leave your comments below.

  88. Didn't 007? by Anonymous Coward · · Score: 0

    Didn't 007 already destroy this system? http://www.007.com/spectre/

  89. Surveillance WITH Update! by tmjva · · Score: 1

    Now only if add the ability to update as well as surveil. (And why does my browser marked surveil as misspelled? It is perfectly fine.)

    Maybe I'll stop getting linkedin offers to "connect with "people you may know" that are dead.

    --
    Tracy Johnson
    Old fashioned text games hosted below:
    http://empire.openmpe.com/
    BT
  90. Mass surveillance legalized by Anonymous Coward · · Score: 0

    I think they will have one hell of a job on their hands, how many personnel are they going to employ to surveil it all. The amount of texts, phone calls, emails sent in a day is probably in the billions. They will need to target very precisely to get results as regards terrorism. The thing that bothers me is can we trust the surveillers, are they going to be totally trustworthy. For example they will have access to very sensitive material from government agencies, NHS, financial institutions, HMRC, banks, etc, which could be used for nefarious purposes. Insider trading comes to mind, the use of people's medical records, bank details, passwords, the list goes on. What safeguards will be in place to prevent misuse. Who supervises the supervisors?

  91. Everyone has something to hide..... by OutOnARock · · Score: 1

    ...except for me and my monkey....

  92. This is well beyond 1984 by Methadras · · Score: 1

    Have the English people been so cowed that they are letting this happen while they have unrepentant Sharia Jihadi Muslims living among them?