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

Private IPv4 mapped regions are only matched in dot-notation #122

Open
hrjakobsen opened this issue Aug 22, 2022 · 0 comments
Open

Private IPv4 mapped regions are only matched in dot-notation #122

hrjakobsen opened this issue Aug 22, 2022 · 0 comments

Comments

@hrjakobsen
Copy link

The isPrivate function only matches IPv4 mapped addresses in compacted dot-notation.

Example

var ip = require("ip")

console.log(ip.isPrivate("::ffff:127.0.0.1"))
console.log(ip.isPrivate("::ffff:7f00:0001"))
console.log(ip.isPrivate("0:0:0:0:0:ffff:127.0.0.1"))
console.log(ip.isPrivate("0:0:0:0:0:ffff:7f00:0001"))

Expected

true
true
true
true

Actual

true
false
false
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant