Live data from Hacker News

A Hacker Has Wiped a Spyware Company’s Servers

motherboard.vice.com

91–100 of 120 posts

Re: A Hacker Has Wiped a Spyware Company’s Servers

#91

Earlier quoted context omitted.

> We put thieves in prison...In the same way society has a reason to put strict limits on surveillance On one hand, we have a stylised burglar. On the other, a stylised lockpicking tool maker. The former is illegal; the latter is more complicated. I am conservative about expanding the scope of the law. You criminalise surveillance apps in one decade and in the next, a security researcher disclosing a bug gets bitten.…

We've decided that privacy and freedom from surveillance is highly valued and deserving protection. The target audience of that company is teenagers of helicopter parents. Whatever they have on their phones isn't privileged or valuable information, so the civil damages approach doesn't work too well. Some may have (against all advice) nudes on them, but I'd rather not wait until those are available to the public, and…

My suggestion is to require spyware like this to put up an obvious indication on the screen of the device that spyware is active on it.

That still allows parents and employees, the supposed target audience, to use the software for its alleged intended purpose, but renders it useless for the illegal use cases.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#92
post #67

Earlier quoted context omitted.

Ah thank you for the clarification. I was thinking along the lines of a right to repair where maintenance tasks such as replacing filters are convenient. I would not attribute that to regulation as much as practicality in even mechanics working on the cars.

Weren't there some BMWs that required a mechanic with a special tool just to refill the DEF tank?

Is this getting a bit far afield from trying to balance phone owner responsibility with safety and ownership?

Re: A Hacker Has Wiped a Spyware Company’s Servers

#93

I see no reason to praise the hacker. He destroyed a legitimate company's private data for no purpose other than his flawed moral reasoning. The company provides a way for parents to monitor their children and other legitimate business practices. Obviously, the software can be used for nefarious purposes but so can almost any other software. U.S. representatives and senators try to ban encryption using the same exact…

I see a legitimate business opportunity, a phone walking service. You collect the children's phones and take them to the mall, the library or wherever teenagers go these days, and meanwhile the kids can enjoy life without parental surveillance. You do wonder what the 24-hour panopticon does to adolescents' mental health and to the health of the parent-child relationship.

That's how my friends and I grew up. You left the house --- you were just GONE --- until you came back. Short of hiring a private investigator, your parents really had no precise idea of what you were up to.

Of course, they did tend to find out the important stuff anyway. The parent grapevine was definitely alive and well.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#94

I see no reason to praise the hacker. He destroyed a legitimate company's private data for no purpose other than his flawed moral reasoning. The company provides a way for parents to monitor their children and other legitimate business practices. Obviously, the software can be used for nefarious purposes but so can almost any other software. U.S. representatives and senators try to ban encryption using the same exact…

> legitimate business practices

Whenever I read this phrase, it always has a sense something like legal, therefore ethical or legal, therefore OK, and.. (this is not an easy sentence to finish) I wonder where people learn to think like that. OK, apart from the pressure of the entire commercial/corporate/advertising apparatus.. Maybe it's surprising it isn't more common. I guess it's the norm, in some circles. I'm naive I guess, but I'd rather die than think like that. A friend of mine used the phrase once, and..that felt like the end of the friendship.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#95
post #78

Earlier quoted context omitted.

Isn't Google supposed to be reviewing the apps? The real question is: who gets to say in what someone's phone is going to be doing: the programmer, the manufacturer or the phone's owner. Most everyone would agree that the owner should have a word in it, and that the manufacturer should have no say at all. Germany takes another approach: no one gets to do surveillance outside strict limits, privacy is highly regarded…

>Most everyone would agree that the owner should have a word in it, and that the manufacturer should have no say at all. Isn’t setting the defaults behaviour ‘Having a say’, and who else but the manufacturer gets to do that? Sorry but this suggestion doesn’t make it past even 2 seconds of considered thought. Another few seconds - who gets to decide what privacy controls the phone even has, if not the manufacturer? Do…

> who gets to decide what privacy controls the phone even has

Regulatory bodies and / or standards organisations.

Some kind of "This devices meets or exceeds the International Organization for Standardization of mobile device security..."

We don't even have a voluntary one of those.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#96
post #87
post #48

Earlier quoted context omitted.

Do you have a recommended security checklist for something like this? I remember seeing an old github repo with a bunch of good information but I cannot seem to find it and my search results are... unhelpful at best.

You wont like it, but... How would you feel being asked for a checklist for 'good software development' or something similar by a cooking chef? Hire skilled and dedicated DevOps/SRE/SysAdmin/hype-of-the-week person. ;)

100% this. I’ve been transitioning to doing more devops/admin work for the past several months and it’s amazing the stuff people are willing to put into production. Like no, maybe we shouldn’t be committing that secret to Github. Dedicated operations critters are essential for any kind of service.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#97
post #75

Earlier quoted context omitted.

It should be mentioned that none of that should ever make its way into a Git repo in the first place. If a secret is committed to Git, it's compromised, period. Suck it up and generate a new secret.

Agreed ... use a pre-commit hook to scan your repository for high-entropy strings before they are forever enshrined in your history ( https://github.com/dxa4481/truffleHog ).

To be fair, though, history can be rewritten, albeit sometimes with some difficulty.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#98
post #76

Earlier quoted context omitted.

As a regular Android user, I'll say that Android's permission model is simply awful. There's no way (in stock) to return blank data, so apps will simply shut down or silently malfunction if you refuse permissions. The grouping of permissions lumps "can portscan your network" and "run hidden in the background when your phone boots" under "Other", which you can't disable. J2ME had a more refined security model back in…

There are so many applications I'd love to install but ... why do they insist on asking for permissions that they simply don't need for their stated functionality. Of course you want your SSH terminal to have ties to the social networks .

“I just logged into my server! ”

Yeah, that’s frustrating. Mobile app permissions are a gross nightmare.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#99
post #44
post #2

This is one of those cases where I probably should feel bad for the company being repeatedly hacked to the point of being ripe for being shut down, but I just can't muster the will right now. If you are in the business of collecting data without users' explicit permission, and can't protect that data from being accessed or deleted, you shoudln't be in business.

I feel like this is a better way of putting it: "If you are in the business of collecting data without users' explicit permission you shoudln't be in business."

Half of the internet economy would probably disappear... for the better.

Re: A Hacker Has Wiped a Spyware Company’s Servers

#100
post #75

Earlier quoted context omitted.

Agreed ... use a pre-commit hook to scan your repository for high-entropy strings before they are forever enshrined in your history ( https://github.com/dxa4481/truffleHog ).

To be fair, though, history can be rewritten, albeit sometimes with some difficulty.

If a secret has ever been in Git then you probably can't know where it's been copied to and should treat it as likely to have been leaked.
Post reply on HN