기술 자료

  1. Problems
  2. URL that contains "@" in password
만든 날짜
수정 날짜

기사 187

URL that contains "@" in password

From the RFC 1738:

"...Only alphanumerics [0-9a-zA-Z], the special characters "$-_.+!*'()," [not including the quotes - ed], and reserved characters used for their reserved purposes may be used unencoded within a URL."

You have to hex encode the @ in the URL:
user: myuser
password: h@t
host: myhost

To url => hex encode unsafe characters =>
ftp://myuser:h%40t@myhost

References
RFC 1738
URL Encoding

키워드

관련 기사


What do you think about this topic? Send feedback!