43
Awlex
7y

30 chars for your email address? You've got to be kidding me (mine has 32)

Comments
  • 6
    maybe this is a client side only checkπŸ˜‰ then you could trick it out πŸ‘Œ
  • 1
    I hate when people validate email addresses by anything other than sending an email to it.
  • 1
    @moagggi how would you trick that out?:)
  • 4
    @japsel either remove the client side JavaScript check (via debugging or attribute editing) or Fiddler and stop the post-request, edit the (most time plain) body and then continue sending it... πŸ˜‰
    PS: if it is not even a post request the site isn't worth registering!
  • 0
    @moagggi ah thanks!
  • 0
    @pajaja well, it's good to at least check whether it's properly formatted with type="email"
  • 2
    Only 10 char for password???
  • 0
  • 3
    Uhh 6-10 password length, I bet they send your password in plain text as a welcome email
  • 2
    @620hun Yes, sorry I wasn't specific in my comment. I was talking about people who use their own understanding of email address format and write regexps for validation
  • 1
    @pajaja as long as the regex follows the RFC stamdard irs no problem though
  • 0
    Maybe the SQL-DB has Varchar(30).
    If they have no serverside-check they can cut of the last characters.
  • 0
    @moagggi not possible, that's a mobile app
  • 0
    Check RFC describing how does the proper e-mail address look like :-D
  • 2
    @mt3o its a pain in the ass, from the top of my head I think this would be a valid email adress.

    "+!=/_-"@someDomain.net

    But its probably impossible to use it anywhere.
Add Comment