Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

InternetAddress validation is not conforming to RFC822 #747

Open
gopuneet opened this issue Mar 28, 2025 · 1 comment
Open

InternetAddress validation is not conforming to RFC822 #747

gopuneet opened this issue Mar 28, 2025 · 1 comment
Labels
duplicate This issue or pull request already exists TCK

Comments

@gopuneet
Copy link

Describe the bug
InternetAddress checkAddress validation is not conforming to RFC822 due to this line:

It should be if (c <= 040 || c >= 0177) to prevent characters above Octal 177 / Decimal 127 being accepted as valid.

Reference links:

To Reproduce
Steps to reproduce the behavior:

new InternetAddress("testä[email protected]", true);

or 

InternetAddress address = new InternetAddress("testä[email protected]");
address.validate();

The above code doesn't throw AddressException

Expected behavior

The expection is for this error to be thrown

throw new AddressException(
"Local address contains control or whitespace", addr);

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Mail server:

  • Protocol being used: [e.g. smtp, imap, pop3, etc.]
  • Vendor/product: [e.g. Microsoft Exchange]
  • Mail service URL: [e.g. gmail.com]

Additional context
Add any other context about the problem here.

@jmehrens jmehrens added the duplicate This issue or pull request already exists label Mar 30, 2025
@jmehrens
Copy link
Contributor

jmehrens commented Mar 30, 2025

Duplicate of: #374

Related: #589

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
duplicate This issue or pull request already exists TCK
Projects
None yet
Development

No branches or pull requests

2 participants