Category: Security

  • Must remember to salt my hashes

    While a sha-256 hash may seem unbreakable, for many input strings it takes seconds to crack. If you don’t believe me, try the following or simply read this webpage:

    $ python
    >>> import hashlib
    >>> print hashlib.sha256('megabrain').hexdigest()
    f53c51616f4c7943a4117afa1d0ba193f9af901c6ce175a2207a594e71c98ef5
    

    Go to crackstation.net, paste the hash into the text area, click “crack hashes” and see it the admittedly super lame password cracked in a second. The basic concept behind the cracking is to precompute hashes for a lot of passwords, and doing reverse lookups – from hashcode to password. This way, it really does not make any difference how “good” your hashing algorithm is. This is not an attack against hashing algorithms, but an attack against common hashcodes. In the wild, you are more likely to encounter the hash of “megabrain” than the hash of “2f2f0a446f828f”. While you should encourage everybody you meet to choose strong passwords, it is perhaps more sustainable to strengthen the security around weak passwords.

    Salting

    This is where salts come in, as weak passwords can be made stronger by salting. A salt is just a sequence of bytes, e.g. “c039b8f8a8…” that you concatenate with a password before computing a password hash. It is ineffective to use the same salt for all passwords, so by all means read this page to get the inside scoop on how to do this correctly.

    $ python
    >>> os
    >>> import hashlib
    >>> password = 'megabrain'
    >>> salt = os.urandom(32)
    >>> stored_hash = hashlib.sha256(salt + password).hexdigest()
    

    If you try to crack the stored_hash on crackstation.net, you will see that it is not successful. So the moral of the story is, a bad password + a good salt = a good password. Users only have to remember their (bad) password, while you should remember the good salt.

    To authenticate as user with a salted password, you will again combine the salt and password before comparing to a stored hash:

    >>> password_to_authenticate = 'megabrain'
    >>> if hashlib.sha256(salt + password_to_authenticate).hexdigest() == stored_hash:
    >>>     print "User has been authenticated!"
    >>> else:
    >>>     print "Wrong password!"
    
  • The scale of the Danish cyber effort

    How much money does Denmark spend on cyber defense, compared to the U.S? In total and per citizen. This is what I’ll look at in this post. I’ll also try to get an initial idea of what is going on. Why am I doing this? Actually, just out of curiosity, and to kill some time before I have my hair cut.

    Picking up the paper-paper (Politiken) this morning I read a short opinion-piece about the intelligence branch of the danish armed forced (FE: Forsvarets Efterretningstjeneste), and in particular the new Center for Cybersecurity. The concern is that this new center is going to spy on ordinary Danish citizens (NSA-style). It made me curious, and I decided to investigate for myself.

    Web soldiers during combat. Not entirely sure that’s not World of Warcraft.

    In 2011 the center was established, with a fairly modest annual budget of 35 million DKK a year (out of a 90 million DKK budget in 2014 for cyber efforts by the Danish Ministry of Defense; increased to 150 million DKK in 2016). This is a modest budget, given the amount of money truly skilled IT-professionals charge an hour and what IT equipment costs in general, but also compared to what other institutions in Denmark receive. For example the Danish Geodata Agency, which I’ve had the great pleasure of working for, has annual budget of more than 200 million DKK.

    So 90 million DKK for cyber defense versus 200 million DKK for geographical data (2014).

    In the United States, the Defense Department allocates $4.7 billion on the annual budget for “cyber efforts”. Making the currency conversion, that is 25 billion DKK versus 90 million DKK, a ration of 277:1.

    Red square is Danish budget, blue square is U.S. budget:

    The population of the United States is 313 million people. The population ratio between the U.S. and Denmark is approximately 62:1. The United States thus spends roughly 4.5 times more money per capita on cyber efforts than Denmark.

    Dollars spent on cyber efforts per person in the U.S and in Denmark:

    When trying to understand the motivation for national cyber efforts, Danish independent media seems to focus on the threat posed by industrial espionage (from abroad?) against Danish companies (1, 2, 3). This is surely a real threat, and should be a primary mission IMO.

    The stated mission of the center, as described on the homepage for the center, is a bit more vague. It goes something like this:

    Styrke Danmarks modstandsdygtighed mod trusler rettet mod samfundsvigtig informations- og kommunikationsteknologi (ikt); Sikre forudsætningerne for en robust ikt-infrastruktur i Danmark; Varsle om og imødegå cyberangreb med henblik på at styrke beskyttelsen af danske interesser.

    I’m not really sure what that means concretely. What the paper-paper (Politiken) is concerned about is that the center is going to spy on Danish and foreign citizens. Given the modest annual budget and the usual burn-rate in public administration, I think this is going to be a rather weak threat to our privacy. Another question is, what should the primary mission of the center be, and how should that mission be accomplished? In any event, 90 million DKK do not go a long way towards anything. That being said, I’d certainly curious about what the money IS spent on. If I learn, I’m not sure I’ll post it on my personal blog, so don’t hold your breath.

    This was primarily a way to pass some time before I have my hair cut (in five minutes).

  • The stuff of spy movies #2

    The spy-files

    Hadn’t heard about The Wikileaks Spy Files before today. This post is a follow up on the previous post on surveillance software. Who knows, maybe I have some of that on my computer as I’m typing this. Better smile and wave at the webcam :-)

    (more…)

  • The stuff of spy movies #1

    Reporters without borders (RSF) have a website on topic: surveillance.rsf.org/en/. The topic being malware that can be used to spy on you through your own computer. It is frightening and intriguing at the same time.

    (more…)