Skip to content

Commit 031ef68

Browse files
committed
fix(security): correct RFC1918 test label for IPv4-compat IPv6
1 parent 91b6477 commit 031ef68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/sim/lib/core/security/input-validation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ describe('isPrivateOrReservedIP', () => {
627627
['::a9fe:a9fe', '169.254.169.254 (cloud metadata)'],
628628
['::7f00:1', '127.0.0.1 (loopback)'],
629629
['::7f00:0001', '127.0.0.1 (zero-padded)'],
630-
['::a:0', '10.0.0.0 (RFC1918)'],
630+
['::a00:1', '10.0.0.1 (RFC1918)'],
631631
['::ac10:1', '172.16.0.1 (RFC1918)'],
632632
['::e000:1', '224.0.0.1 (multicast)'],
633633
['::192.168.1.1', 'dotted form ::192.168.1.1'],

0 commit comments

Comments
 (0)