Last week, I tried to register for a service and was really surprised by a password limit of 16 characters. Why on earth yould you impose such strict limits? Never heard of correct horse battery staple?
ADD FIELD PASSWORD VARCHAR(16)
SELECT * FROM users WHERE name = "$name" OR password = "$password"
sqlquery = "INSERT INTO users (username, password) VALUES ('" + username + "', '" + password + "')"
What could go wrong?
Password=a");drop table users;--
Alas, it's longer than 16 characters. Protection works!
They often don't allow semicolons but it's never stopped me from checking
Christopher Null feels his pain.
Only the hottest memes in Cybersecurity
ADD FIELD PASSWORD VARCHAR(16)
SELECT * FROM users WHERE name = "$name" OR password = "$password"
What could go wrong?
Password=a");drop table users;--
Alas, it's longer than 16 characters. Protection works!
They often don't allow semicolons but it's never stopped me from checking
Christopher Null feels his pain.