Earlier quoted context omitted.
Imagining that the release is true, this will do strange things for pay bargaining. Imagine if you could look up your colleagues before asking for a rise? On the other hand, I don't recall anything really horrific on that form. Enough data to steal my identity and take out a mortgage in my name, yes. Enough to embarrass me? no...
There may not be anything in there to embarass me but there is unequivocally enough in there for someone to steal my identity and ruin a credit rating I've been working extremely hard to build over the last three years.
LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
61–70 of 156 posts
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#62Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#63With the amount of hacking that is flooding the news recently, I would like to learn about database security. What are some good books/tutorials/videos on how to make databases more secure?
I believe that most databases are secure, especially the open source ones. What you should be careful about is the things surrounding the database: the .php files (or whatever) that read/write the database, and the system it is running on. Basic security practice for the web: NEVER trust user input: check and recheck all the GET/POST variables, check that numbers are numbers, that strings are correct strings (they ha…
It's not characters that get you, it's lack of escaping or escaping for the wrong context (e.g. magic_quotes won't work for HTML)
• For SQL use prepared statements exclusively (never let "oh, it's just a number so I don't need to" fool you)
• Escaping doesn't differ between "trusted" and "untrusted" data (and these boundaries are too easy to break eventually).
Just escape everything, always. In PHP it means every `echo $var` is a likely vulnerability and `echo htmlspecialchars($var, ENT_QUOTES)` (in HTML except script) or `json_encode($var)` (in script) is a must.
Obviously, you should do defense in depth, so input validation is great and some filtering just-in-case may be warranted, but escaping alone (assuming done well) is sufficient for security, while filtering alone is not.
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#64Earlier quoted context omitted.
There may not be anything in there to embarass me but there is unequivocally enough in there for someone to steal my identity and ruin a credit rating I've been working extremely hard to build over the last three years.
What info from the census would enable someone to steal an identity? From the looks of it there's only DoB and address in terms of personal info...
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#65Earlier quoted context omitted.
Why would jurisdiction enter into someone in the UK suing the company that processed the UK census data? Thier data. I don't know if antihero is in the UK, but if they aren't, people in the UK should do it instead. I am disturbed that my data could leak like this.
I'm in the UK and for some crazy reason filled out my census correctly, so yeah, I think there's grounds for DPI lawsuit action.
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#66Given LulzSec seems to post their hacks on twitter, that there's no way of validating who posted the PasteBin item and that the Office of National Statistics hasn't reported the loss, its probably best to wait and see something a little more convincing.
I wrote the article and have been trying to trace the authenticity of the release. I am still waiting to hear back from the Office of National Statistics, which at the time were unaware of who LulzSec even were. I contacted them a little over two hours ago, I haven't received a response, yet.
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#67If true, this will be a massive coup and regardless of how they obtained the records, LulzSec will get all of the significant negative attention they so badly crave. I submitted my census info via the online form and given the amount of detail I included I would be terrified if that info was leaked.
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#68http://twitter.com/#!/channel4news/status/83129762142363649
19-year-old suspected of being mastermind behind computer hacking group LulzSec arrested in Wickford, Essex. #c4news
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#69Earlier quoted context omitted.
There's jurisdiction for that?
Yes, they will probably be the information controller under the DPA and have to be extreamlly careful that our data is safe. Even keeping a copy in a non EU country is very hard.
Re: LulzSec supposedly claims its biggest coup yet: The entire UK 2011 Census
#70Earlier quoted context omitted.
Knowing a little of the internals of ONS... It may take them a while to figure out what a "computer" is and how it might be "hacked". You could be waiting some time :) ahem.
Just got off the phone to them. Issuing a statement very soon. Will update both the article and on HN.