Fixing XSS vulnerability by using the proper output tags

This commit is contained in:
Nabeel Shahzad
2018-03-12 17:58:12 -05:00
parent 17f9464208
commit 8076c2d8c1
165 changed files with 1187 additions and 1187 deletions
+3 -3
View File
@@ -15,17 +15,17 @@
<body>
<table class="table table-bordered table-condensed table-striped">
@foreach($data as $row)
@if ($row == reset($data))
@if ($row == reset($data))
<tr>
@foreach($row as $key => $value)
<th>{!! $key !!}</th>
<th>{{ $key }}</th>
@endforeach
</tr>
@endif
<tr>
@foreach($row as $key => $value)
@if(is_string($value) || is_numeric($value))
<td>{!! $value !!}</td>
<td>{{ $value }}</td>
@else
<td></td>
@endif
+4 -4
View File
@@ -1,9 +1,9 @@
{!! strip_tags($header) !!}
{{ strip_tags($header) }}
{!! strip_tags($slot) !!}
{{ strip_tags($slot) }}
@isset($subcopy)
{!! strip_tags($subcopy) !!}
{{ strip_tags($subcopy) }}
@endisset
{!! strip_tags($footer) !!}
{{ strip_tags($footer) }}