I am running a website, and there is a scoring system that gives you points for the number of times you play a game.
It uses hashing to prove the integrity of http request for scoring so users cannot change anything, however as I feared might happen, someone figured out that they didn’t need to change it, they just needed to get a high score, and duplicate the http request, headers and all.
Previously I’d been prohibited from protecting against this attack because it was considered unlikely. However, now that it has happened, I can. The http request originates from a flash game, and then is validated by php and php enters it into the database.
I’m pretty sure nonces will solve the issue, but I’m not exactly sure how to implement them. What is a common, and secure way of setting up a nonce system?
It’s actually quite easy to do… There are some libraries out there to do it for you:
Or if you want to write your own, it’s pretty simple. Using the WikiPedia page as a jumping off point, In pseudo-code:
On the server side, you need two client callable functions
And on the client side:
The function
makeRandomStringreally just needs to return a random number or string. The better the randomness, the better the security… Also note that since it’s fed right into a hash function, the implementation details don’t matter from request to request. The client’s version and the server’s version don’t need to match. In fact, the only bit that needs to match 100% is the hash function used inhash('sha512', $nonce . $cnonce . $data);… Here’s an example of a reasonably securemakeRandomStringfunction…