-
Notifications
You must be signed in to change notification settings - Fork 146
Closed
Description
laravel-blog-tutorial/resources/views/blog/single.blade.php
@extends('main')
@section('title', "| $post->title")
@section('content')
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>{{ $post->title }}</h1>
<p>{{ $post->body }}</p>
<hr>
<p>Posted In: {{ $post->category->name }}</p>
</div>
</div>
@endsection
line 3 $post->title
is not escaped ... and vulnerable for xss ?
Metadata
Metadata
Assignees
Labels
No labels