- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
ID: php-security/laravel-response-write
Language: PHP
Severity: Error
Category: Security
CWE: 79
Injecting unsanitized data into responses can lead to several security vulnerabilities, including Cross-Site Scripting (XSS) attacks. XSS attacks occur when a malicious script is injected into a trusted website, which can compromise the data integrity or steal sensitive information.
To comply with this rule, always sanitize or validate data before including it in a response. PHP provides several built-in functions such as filter_var()
, htmlspecialchars()
, and strip_tags()
that can be used for sanitizing data.
<?php
class UserController extends Controller
{
public function test0($data)
{
return response('Data is '.$data, 200)->header('Content-Type', 'text/html');
}
public function test1($data)
{
return response("Data is {$data}")
->withHeaders([
'Content-Type' => "text/html",
]);
}
}
Route::get('/endpoint/{data}', function ($data) {
return response("Data is {$data}")
->cookie($cookie)
->withHeaders([
'Content-Type' => 'text/html',
]);
});
<?php
class UserController extends Controller
{
public function test0($data)
{
$content = sanitize($data);
return response('Data is '. $content, 200)->header('Content-Type', 'text/html');
}
public function test1($data)
{
$content = validate($data);
return response("Data is {$content}")
->withHeaders([
'Content-Type' => "text/html",
]);
}
}
Route::get('/endpoint/{data}', function ($data) {
$var = sanitize($data);
return response("Data is {$var}")
->cookie($cookie)
->withHeaders([
'Content-Type' => 'text/html',
]);
});
|
|
For more information, please read the Code Analysis documentation
Identify code vulnerabilities directly in yourVS Code editor
Identify code vulnerabilities directly inJetBrains products