How to Prepare for and Survive a Computer Virus Epidemic
The best defense is a good offense. Learn how to take preventative measures than will, in most cases, keep your data and systems attack free.
Join the DZone community and get the full member experience.
Join For FreeBaseline Security
A security baseline means the security controls you apply irrespective of risk level. The things that everybody should do and that will actually stop almost every cyberattack. Yes, almost every attack, say like 90% of them. And it doesn’t even require you to buy a lot of expensive consulting services or other snake oil to fix it. Here we go, this should be the minimum baseline for everyone:
- Patch your software as fast as you can whenever a new security patch comes out. Operating systems normally do this automatically if you do not configure your system otherwise. Sometimes organizations need to check compatibility for critical systems, and such, but the main rule is: patch everything as fast as you can.
- Do not allow users to perform regular work using an account with administrator rights. Most users don’t even need admin rights at all, but if they do, give them two accounts. Perform work using a standard account with limited privileges.
- Run a firewall that is configured to block all incoming traffic (unless you need it).
- If you run an organization use application whitelisting. Do not allow execution of unauthorized code, or at least code running from unauthorized locations (like USB media or downloaded email attachments).
- Backup everything. See below for details. This doesn’t stop any attacks but it saves the day when you are under siege. It is like a secret superweapon that more or less guarantees criminals won’t get their payday.
None of these will require you to buy any new software or new services. So just do it – it will reduce the chance of having a very bad day by 90%.
Awareness Training
Most cyberattacks spread through some form of social engineering, and in most cases, this is an email with a malicious link or attachment. Train your people to spot the danger, and get it into your organization’s culture that file sharing is not done via email attachments. Provide them with real collaboration tools instead. This would further reduce the chance of a very bad day by another 90%.
If you want to be sure, you can scrub attachments and disable links in emails – but people may feel that is a little extreme and start using private email accounts instead, which is completely outside of the organization’s control, so only do this if you really have a compliance culture in place. Most organizations don’t.
Backups and Restore Testing
Ok, so you can reduce the likelihood of getting hit, but that only goes that far. Sooner or later, you will reach a day when you end up having to recover systems and remove a virus infection. Ransomware is icky because they encrypt and make your files useless, so in most of these cases, your AV program cannot save you. So how can you avoid paying criminals? Here’s how.
Backup your data with reasonable frequency and retention. And verify the backups. If you run a backup of your files every few hours, and you do an offline/offsite every night, and you keep the rolling backup (online) for 30 days, and the offline backups for 180 days, it will be very hard to put you in a hard spot. If you generate important data very fast, increase the backup frequency.
Make sure you also verify backup integrity. An easy way to make sure you are safe is to do binary image disk backups as an offline backup and to do a hash of the image that is stored separately in a different offline secure location. This way you can make sure your offline backups really stay the way they were when you copied them by checking the hash. Do the same for the rolling backup – this way you can check if the cryptovirus has changed something on your backup.
Many companies back up their data but they never test if they are able to restore their data. So to be sure that everything works the day the shit hits the fan, do regular restore testing. Try to restore your system from scratch using various backups to make sure everything works as it should. If it doesn’t, review your backup practice and find you what you need to change to make it work.
Response: Security Monitoring, Escalation, and Crisis Intervention Teams
In addition to these technical things, you need a response team. The team should be ready to respond in a well-prepared and structured way. Typically, you would go through a series of steps:
- Identify the threat and classify it as an incident or not.
- Contain the problem. Make sure it does not spread (disconnect from network if feasible).
- Collect evidence. Create multiple binary images of the infected system, and store hashes of them. Some you will use for forensic analysis, some are collected as evidence and are not to be touched.
- Eradicate the attacker from your system. Normally this means to format everything and to restore from a safe backup.
- Test your restored system. Any signs of reinfection or problems? If not, bring it online step by step. One server or computer at the time. Monitor closely for strange behavior.
- Lessons learned: what did you do well, what should you have done differently? Collect experiences and share them with your peers. This is the way we learn. This is what we should be better at than the bad guys. I’m not entirely sure we are better than them at shared learning, though.
Would It Have Helped in the Cases of the Petya Mutant and WannaCry?
You bet! First of all, WannaCry only worked on computers that were either beyond end-of-life versions of Windows, or unpatched versions of newer operating systems. Patching would have kept everyone safe.
What about Petya? The attack is still ongoing. It spreads using the EternalBlue exploit (that the NSA wrote and lost), which Microsoft issued a patch for in March. In other words, if people had followed good baseline security practice, they wouldn’t have a problem now, most likely (you can never really be sure if there is another zero-day, but probably not).
So, who’s been affected? Just small and unknown companies? Nope. Here are a few examples:
- Rosneft (a Russian oil giant).
- Ukraine: Government, power companies, airports, supermarkets, and also the Chernobyl nuclear power plant. That one, yes.
- Maersk: One of the largest shipping companies in the world.
To remember what to do please keep this mini-poster handy.
Here’s a picture telling you how to prepare for and survive almost any type of cyberattack. First, you make it difficult for the bad guys by keeping your systems patched, not giving regular users admin rights, denying execution of applications that are not approved, and giving people the training they need to spot and avoid social engineering attacks. Then you start reducing the impact for the day when the inevitable happens: segregate your networks and control traffic in and out of each subnet/VLAN using firewalls (with logging). Take backups – rolling and offsite/offline. Use strict firewall rules and test that you can actually restore when you need to. Then you can sleep well, reasonably sure that you will not have to dance to the hacker’s tune.
Published at DZone with permission of Hakon Olsen, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
VPN Architecture for Internal Networks
-
Design Patterns for Microservices: Ambassador, Anti-Corruption Layer, and Backends for Frontends
-
How To Check IP Addresses for Known Threats and Tor Exit Node Servers in Java
-
Mastering Time Series Analysis: Techniques, Models, and Strategies
Comments