Skip to content
Naked Security Naked Security

Study throws security shade on freelance and student programmers

A recent study shows that if you aren't prepared to ask or pay for security, you probably won't get it.

Security researchers often dump on users for their cruddy password practices. But what about the developers who write the code that’s supposed to keep our passwords safe?

…as in, what’s up with the developers who fail to properly encrypt/salt/hash, who use outdated password storage methods, who copy-and-paste code they found online (vulnerabilities and all), who leave passwords sitting around in plain text, or who don’t understand the difference between encryption and hashing?

There have only been a few studies looking at how developers handle end-user password storage, even though such work is primarily involved with the security of those passwords. After all, reusing a password can have dire results for an individual, but a developer failing to hash and salt a database can lead to a far more widespread problem.

One such study, from 2017-2018, used computer science students as lab rats to examine how developers deal with secure password storage.

Saving face

The results: they didn’t. Without explicit prompting, none of the students implemented secure password storage. When asked why they didn’t, many of them said they would have, if they’d been creating real code, for a real company, for a real project that would actually see the light of day, as opposed to writing for an academic study.

As it was, the students were told that the task was to create a university social networking website, but they knew no real data would be under threat if they made a mistake.

More recently, researchers from the University of Bonn decided to redo the experiment. This time, though, they’d use “real” developers, lie to them about the work being just a study, pretend instead that the code was for a real startup, and pay them around €100-€200 (USD $112-$225).

The results: there’s no difference. Students and “paid” developers recruited from Freelancer.com seldom use secure password storage unless prompted, and even then, they have misconceptions about how to do it. They’re also using outdated methods.

From the study:

Our sample shows that freelancers who believe they are creating code for a real company also seldom store passwords securely without prompting.

In addition, we found a significant effect in the freelancers’ acceptance rate between the €100 and €200 conditions for the prompted task and examined the effect of different payment levels on secure coding behavior. We saw more secure solutions in the €200 conditions, although the difference was not statistically significant. However, this result might be due to the small sample size and we believe this is worth following up in future work.

The not-real real-life project

For the recent study, the researchers changed the described task from a university social networking platform to a sports photo-sharing social network. To make it more believable, they created a web presence for the company, and they posed as company employees when they hired the freelance developers. They told the freelancers that they’d just lost their developer and needed help to finish the registration code.

They posted the project on Freelancer.com, stipulated that they needed Java skills, and offered €30-€100 (USD $34-$112), with an expected working time of 1-15 days. In the final study, they jacked that up to €100-€200.

Of the 260 developers whom the researchers narrowed it down to, only 43 took up the job, which involved using technologies such as Java, JSF, Hibernate, and PostgreSQL. They paid half of them €100, and they paid the other half €200, in an effort to figure out if paying more would get them more password security.

Then, the researchers created a playbook to make sure their interactions with the freelancers were consistent. For example, if a developer asked if he or she should store passwords securely, or if a certain method was acceptable, the researchers answered “Yes, please!” and “Whatever you would recommend/use.”

If a participant delivered a solution where passwords were stored in plain text in the database, the researchers replied, “I saw that the password is stored in clear text. Could you also store it securely?” Those participants were marked as having received a security prompt.

We deliberately set the bar for this extra request low, to emulate what a security-unaware requester could do; i.e., if it looked like something hashed, we accepted it.

The researchers said that the freelance developers took three days to submit their work, and that they had to ask 18 of the 43 to resubmit their code to include a password security system after they’d first submitted a project that stored passwords in plaintext.

Most of the developers who were asked to resubmit their code – 15 out of 18 – hadn’t been explicitly told that the user passwords should be stored securely. Out of that non-prompted group, one of the developers actually asked whether he should… but before researchers had replied, within three hours, he had already handed in a plaintext project.

Misconceptions

Both students and freelancers suffered from some misconceptions, the researchers said, but not necessarily the same ones. While the students confused password storage security with data transmission security, some of the developers treated encoding as if it were a synonym for encryption.

Eight of the freelancers stored user passwords in the database by using the binary-to-text encoding scheme Base64 – basically, a way to jumble input so it’s readable by a different type of system, not so that the information is kept secret from prying eyes. One of them argued that “the clear password is encrypted” and that “It is very tough to decrypt.” The developers were also confused by MD5, which is a hashing function.

In fact, out of the secure password storage systems the developers chose to implement, only two of them – PBKDF2 and Bcrypt – are considered secure.

Only 15 of the 43 developers used salting, which makes encrypted passwords harder to crack by adding a random data factor. The study also found 16 examples of “obviously copied” code: code that the researchers found had been copy-and-pasted from online sources, rather than having been developed from scratch, and which could have been outdated or filled with bugs.

Don’t expect developers to know you need security

The lesson that the researchers came away with: keep your security expectations low.

Even for a task which – for security experts – is obviously security-critical, like storing passwords, one should not expect developers to know this or be willing to spend time on it without explicit prompting: ‘If you want, I can store the encrypted password.’

…but then again, there might be other takeaways from a study like this…

You get what you pay for

We can understand why this study may lead some developers to rage-throw their laptops out the window. How many programmers would interpret the lowball €100 project offer as a signal that the work would just be a placeholder, destined to be rewritten before it went live as part of the purported photo-sharing social network?

On the plus side of these study results, the “how many developers” question can be re-framed like this: only 43 of the 260 developers whom the researchers approached took up the job. That’s only 16.5%, and Naked Security’s Mark Stockley thinks that’s a good thing:

It’s reassuring that so few developers were prepared to take this on. Perhaps, instead of criticising the small number of developers prepared to work down to a price instead of up to a standard, we should applaud the silent majority that seem to have rejected an undeliverable brief out of hand.

That said, the research should act as a reminder to buyers that security rarely happens by accident: you have to make it important in your projects. It should also serve as a reminder to developers that clients often don’t know what to ask for, so if they don’t raise the issue of security with you, you need to speak up.

It’s as reasonable to assume that the 83.5% of coders who ignored the job realized that it was a security disaster and therefore that most coders have both knowledge and scruples, as it is to draw inferences from the desperate 16.5% who were prepared to do days of coding for $112.

For what it’s worth, the researchers wound up paying all the participants €200, in order to be fair.

12 Comments

€200 is not a lot to pay a real developer for a real project, and the kinds of developers attracted by that aren’t going to be the cream of the crop or be invested in the project’s success. However, I agree that security should always be mandated by the project’s requirements. If you want developers who will catch missed requirements and suggest something better, pay for better developers.

Reply

Programming with proper security requires concentrated effort. I’ve helped guide new programming students towards more secure code, but it’s a complex subject, rarely given more than a cursory glance in academic circles.

Compared to some subsections of programming, secure programming doesn’t get a lot of “helper” software, such as import libraries, to make things any easier. The ones that are easily available typically have shoddy practices, unnecessarily complex instructions, or weak implementations. Those elements are a non-starter for students who are normally just trying to “get through” a short-term crunch project, so it’s really hard to get them invested in secure programming practices.

Reply

Wouldn’t surprise me if some of these freelancers were just doing the bare minimum to get paid. Why put in the extra effort? Also wouldn’t surprise me if at least some weren’t programmers and just cobbled together a solution to score some money.

Reply

What about demographics and country of origin for the programmers?

Was there any data to back up the common belief that low-cost foreigners from particular countries are especially sloppy, because they all either suck or want us dead?

Reply

As a REAL freelance developer I can say 100% that the specifications for a job are the CLIENT’S RESPONSIBILITY. I for one am sick to death of clients who not have NO SCOPE WHATSOEVER and who do not include in the price of the job creating and coming to agreement on specifications. If I had a DIME for every time I tried to convince clients they are not doing the right thing I could retire. How about running this test on the hiring force? Maybe a test where you have qualified developers telling clients that their pants are down, that they are putting other people’s livelihood at risk (agencies) by creating web sites and apps which do not meet the real needs? Wow, let’s pick a bunch of students who have no real world experience trying to be the voice of reason in the room and tell them to make critical decisions.

At the end of the day, developers are tired of being blamed for bad decisions made by the people holding the purse strings, tired of being the scapegoat for clients not wanting to put the budget in place to do things right, tired of being pushed to the wall to either deliver the project (badly) or risk bad feedback on a platform like Freelance.com, where ONE bad review by a disgruntled client can cost you THOUSANDS of dollars.

Yeah, like I tell clients all the time, you get what you pay for. If you want to pay $200 for an entire “social network site” you are going to get a $200 job!

Reply

Remember your clients don’t know the questions to ask. You as a consultant need to ask them a set of questions to determine these things. I have been a consultant for 5 years now and have worked for big corporations who can give me the requirements and I have worked for a single person operation who was amazing at real estate but would have no clue about password storage. It is your job to recommend best practices. Also you get what you pay for.

Reply

Anonymous 9:51pm is right. As the consultant, you’re responsible for guiding the project to match or exceed industry norms. If the client is uninformed, inform them and make suggestions.

Finally, if the client is not amenable to completing the project in a way you’d be comfortable, have them sign a memorandum of understanding that their proposal is ill-advised, or decline the job.

Reply

While €200 isn’t much in a western country, you can easily get a day’s worth of work from an experienced coder in e.g. Eastern Europe. So, not sure that the price really means that you only get terrible coders. That really depends on the full scope of the work.
As for the conclusion that not many freelancers wanted the work, that might not be as significant in the big picture as it seems at first. Software is often developed on shoe string budgets even within the context of well-established software teams within decent sized companies. Security is often the first thing that drops off the list when the budget is unrealistic even if it’s not just a one-coder-freelance project.

Reply

Leave a Reply

Your email address will not be published. Required fields are marked *

Subscribe to get the latest updates in your inbox.
Which categories are you interested in?
You’re now subscribed!