That is not a valid IPv4 address.
192.168.1.010/24- Why:
- An octet with a leading zero is ambiguous. The traditional inet_aton reads 010 as octal 8, while most modern parsers read it as 10 — a disagreement that has been the basis of real SSRF filter bypasses.
- Fix:
- Write octets without leading zeroes: 192.168.1.10.