5
votes
Can I implement a web user authentication system in python without POST?
You can actually do it all with GET methods. However, you'll want to use a full challenge response protocol for the logins. (You can hash on the client side using javascript. You just need to se …
2
votes
possible to detect ISPs that give user different IP address on every page request for login security?
I would set a timer so that you record not only which IP address they came from, but when they last came from it. After a user comes from the same IP address for a certain number of pageviews, say …
