Skip to content

Commit 7ced01a

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: (29 commits) Fix #53778 [PropertyInfo] Add missing test fix tests [Security][Validators] Review translations. [validator] Updated Dutch translation [FrameworkBundle] Fix wiring ConsoleProfilerListener [HttpKernel] Fix link to php doc [Validator] Update sr_Cyrl 120:This value is not a valid slug. [Validator] Update sr_Latn 120:This value is not a valid slug. 6.4 Missing translations for Italian (it) #59419 tests(notifier): avoid failing SNS test with local AWS configuration [Validator] Missing translations for Brazilian Portuguese (pt_BR) [Translation][Validator] Review Russian translation (114 - 120) Review validator-related persian translation with id 120 [Scheduler] Clarify description of exclusion time [HttpFoundation][FrameworkBundle] Reset Request's formats using the service resetter [Mailer] Fix SMTP stream EOF handling on Windows by using feof() [Translations] Make sure PL translations validators.pl.xlf follow the same style [Validator] Checked Turkish validators translations and confirmed [VarDumper] Fix blank strings display ...
2 parents b5567e7 + d0492d6 commit 7ced01a

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

IpUtils.php

+10
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,16 @@ public static function checkIp6(string $requestIp, string $ip): bool
182182
*/
183183
public static function anonymize(string $ip): string
184184
{
185+
/**
186+
* If the IP contains a % symbol, then it is a local-link address with scoping according to RFC 4007
187+
* In that case, we only care about the part before the % symbol, as the following functions, can only work with
188+
* the IP address itself. As the scope can leak information (containing interface name), we do not want to
189+
* include it in our anonymized IP data.
190+
*/
191+
if (str_contains($ip, '%')) {
192+
$ip = substr($ip, 0, strpos($ip, '%'));
193+
}
194+
185195
$wrappedIPv6 = false;
186196
if (str_starts_with($ip, '[') && str_ends_with($ip, ']')) {
187197
$wrappedIPv6 = true;

RequestStack.php

+7
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,11 @@ public function getSession(): SessionInterface
104104

105105
throw new SessionNotFoundException();
106106
}
107+
108+
public function resetRequestFormats(): void
109+
{
110+
static $resetRequestFormats;
111+
$resetRequestFormats ??= \Closure::bind(static fn () => self::$formats = null, null, Request::class);
112+
$resetRequestFormats();
113+
}
107114
}

Tests/IpUtilsTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ public static function anonymizedIpData()
147147
['[2a01:198::3]', '[2a01:198::]'],
148148
['::ffff:123.234.235.236', '::ffff:123.234.235.0'], // IPv4-mapped IPv6 addresses
149149
['::123.234.235.236', '::123.234.235.0'], // deprecated IPv4-compatible IPv6 address
150+
['fe80::1fc4:15d8:78db:2319%enp4s0', 'fe80::'], // IPv6 link-local with RFC4007 scoping
150151
];
151152
}
152153

Tests/RequestStackTest.php

+14
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,18 @@ public function testGetParentRequest()
6767
$requestStack->push($secondSubRequest);
6868
$this->assertSame($firstSubRequest, $requestStack->getParentRequest());
6969
}
70+
71+
public function testResetRequestFormats()
72+
{
73+
$requestStack = new RequestStack();
74+
75+
$request = Request::create('/foo');
76+
$request->setFormat('foo', ['application/foo']);
77+
78+
$this->assertSame(['application/foo'], $request->getMimeTypes('foo'));
79+
80+
$requestStack->resetRequestFormats();
81+
82+
$this->assertSame([], $request->getMimeTypes('foo'));
83+
}
7084
}

0 commit comments

Comments
 (0)