Is there a way to make a secure enough system for voting without having to log in. Now I use cookies to determine if a person has voted, and also to insert ip users into the database.
If this user deletes his cookies, he will be able to vote again. This is why I am checking if the user ip exists in the database and if this IP has voted in the last 30 seconds. Thus, he will have to delete his cookies and change his IP address in order to vote again.
I know that there is no 100% fault tolerant solution for this, but is there a safer way to do this?
source
share