5 Major Hospital Hacks: Horror Stories From the Cybersecurity Frontlines (ieee.org)
the_newsbeagle writes: We don't often get insider accounts of hacks against major institutions like hospitals because they immediately go into damage control mode. But at a SXSW talk, a couple of experts told tales out of school. The experts, [John Halamka, CIO of the Boston hospital Beth Israel Deaconness, and Kevin Fu, a University of Michigan engineering professor, recounted incidents in which hackers downloaded patient X-rays to China, took down entire networks, fooled Harvard doctors, and more.
Critical systems shouldn't be exposed to outside world. Duh.
ELOI, ELOI, LAMA SABACHTHANI!?
No one buys a smoke alarm until after they have had a fire. The simply do not see the risk, and do not trust the people telling them about it. I see it all the time with my clients...
The solution to this problem is known, but nobody seems to know about it...
https://en.wikipedia.org/wiki/...
Looking at the first part of the headline "5 Major Hospital Hacks", I was expecting an article showing me 5 creative/unknown ways to improve my hospital stay.
Oh well, back to Buzzfeed...
Medical information is considered confidential and private. This confidentiality and privacy was obviously breached if the information unexpectedly, and without the consent of the patient and/or the patient's doctor(s), was transferred to China. From there it could easily be made public.
Even if nothing ever happens with the medical information, the mere fact that confidentiality and privacy were breached is more than enough damage to get very upset about.
"At a recent Black Hat conference, a diabetic man demonstrated how to spoof a wireless insulin pump, causing a life-threatening situation"
How about designing a wireless insulin pump that can't be accessed by unauthorized devices?
I work for an EMR vendor. FYI, the HITECH Act obligates companies to disclose breaches only in situations where PHI (patient data) is accessed. Our infrastructure could be co-opted into a Russian Bitcoin mining farm, but as long as patient data isn't touched, we don't have to let anyone know.
What a lot of people don't realize is that many clinics are small businesses. Small businesses tend to make small business decisions. Doctors won't replace those workstations running Windows XP or Vista if they plan to retire in a few years--that's wasted money. We've noticed that not maintaining support contracts for critical infrastructure is a popular cost-saving measure as well.
Penny pinchers are a problem, as is entrusting responsibility to Billy Bob at Local Computer Guy's and Cable TV Repair's. Yes Billy, we can tell you haven't made a successful backup in six months, and the UPS at the customer site has been failing for twelve. No Billy, it's not ok to leave those ports exposed on the Internet. People rag on the cloud being someone else's computer, but cutting Billy out of the loop is a net positive.
If you want to go down that road, I'm "damaged" every time someone says something that offends me.
You are potentially damaged every time someone says something that offends you. Your life is a little bit worse as a result of their action. However, in the case of offensive speech, the other party would also be damaged if they were gagged to protect your sensibilities, while you might also benefit in other ways as a result of being exposed to the initial offensive idea. Most Western societies have decided, to varying degrees, that the damage caused by accepting offensive speech is less than the damage caused by restricting freedom of speech and sharing of new ideas, and so their laws side with the lesser evil in most cases.
This is not some inherent universal truth, a black and white matter of right and wrong. In much of Europe, for example, holocaust denial is illegal. In most Western nations, defamation is considered harmful and can be punished by law. In particular, defamation typically doesn't require that some concrete harm has been caused to the victim; we understand that telling lies that misrepresent the good character of another human being has the potential to cause them great harm in the future, and that is enough.
The real trouble with these arguments about "actual damage" is that many issues around rights and freedom and liberties, including respect for privacy, are matters of principle and generality. In the limit, if no-one has any privacy any more, then no-one can really think or act independently any more either. Our fundamental ability to behave as we wish by default has been destroyed and we are merely part of some global machine, required to conform, never pushing boundaries, never exploring radical new ideas, never growing as a person or advancing humanity as a species and culture. You can't point to any one incremental invasion of privacy and say it was the straw that broke the camel's back, yet the camel was still broken.
If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
The 5 "horror stories" are just regular hacks that happened in an hospital context. Nothing along the lines of "hacking insulin pumps to kill patients". TFA doesn't mentions any health-related harm. Only the potential problems caused by the resulting delays are mentioned.
Here are the "horror stories"
1- Stolen (as in copied) X-ray pictures
2- DDoS causing temporary internet outage
3- Doctors getting scammed for Amazon gift cards
4- Spam sending malware causing a temporary ban of the hospital mail servers
5- The most serious one : a ransomware caused the hospital network to be down for 1 week, and cost another $17000
Sadly the only way to alter behaviour is to create an environment where misbehaviour results in sanctions. This means that patient data escaping from a clinic should result in the suspension of your licence to practice medicine if you are a small clinic, and stupid fines if you are large. And a reward for whistle blowers who report it - with a discount on the fines if the mistake is reported promptly. Allow companies to insure against the fines - but encourage the insurers to test their clients...
I was interested more details on the Mass General incident with their payroll portal. But I could not find any references to it outside of this mention. Has anyone had better luck, or better searching skills?
This posting is provided 'AS IS' without warranty of any kind, implied or otherwise.
> OS out there runs every line of code with the full privileges of a user account at all times, there's no way for a user to limit the scope of what a program does at run time.
> The solution is to use an operating system that is designed from the ground up to simply ask which files the user wishes to operate on, instead of blindly trusting the program to do the right thing
That change from giving permissions to the user (discretionary access control) to instead assigning them to the program + user (mandatory access control) is what SELinux does. The admin basically sets "program X, when run by user Y, can access files labeled Z, read only". When it first came out it was a pain in the butt. Nowadays the RPM packages typically have good policies included, so it's nearly transparent. There is a bit of a learning curve for admins, and better (easier) tools and documentation would be helpful.
Totally useless and a nuisance on these surgeon-gods. Makes a hell lot of sense, your shit-thinking, Hillary.
Having an admin set up a static set of privileges on each and every program isn't a sustainable approach... what's needed for general purpose use is called the "power box", in which the operating system directly asks the user about which files to open, etc... instead of trusting the application to do it.
Users can generally decide correctly what files to access, etc.. you don't have to have an admin do it.