You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Windows ping command use inet_addr standard which recognizes octal and hexadecimal ipv4 addresses
e.g. 0xC00002EB => 192.0.2.235; 011.012.013.014 => 9.10.11.12
It would be great if this app could maintain parity with the functionality of traditional ping apps.
I'm going to close this because Rust doesn't support it, and according to this PR (rust-lang/rust#83652) it says:
This confusion can lead to many security vulnerabilities. Therefore, in
IETF RFC 6943, it suggests to disallow octal/hexadecimal format in Ipv4
string all together.
Windows ping command use
inet_addr
standard which recognizes octal and hexadecimal ipv4 addressese.g. 0xC00002EB => 192.0.2.235; 011.012.013.014 => 9.10.11.12
It would be great if this app could maintain parity with the functionality of traditional ping apps.
This gist provides a good reference
The text was updated successfully, but these errors were encountered: