👁️RECONOCIMIENTO PASIVO
AUDITORIA DE: ((Laboratorio: XSS almacenado en contexto HTML sin nada codificado))
RECONOCIMIENTO PASIVO
<form action="/post/comment" method="POST" enctype="application/x-www-form-urlencoded">
<input required="" type="hidden" name="csrf" value="5aGK2T2ryPOp8qacwVPwWi9aaiShRntn">
<input required="" type="hidden" name="postId" value="1">
<label>Comment:</label>
<textarea required="" rows="12" cols="300" name="comment"></textarea>
<label>Name:</label>
<input required="" type="text" name="name">
<label>Email:</label>
<input required="" type="email" name="email">
<label>Website:</label>
<input pattern="(http:|https:).+" type="text" name="website">
<button class="button" type="submit">Post Comment</button>
</form>
CONCLUSION: VEMOS EL FORMULARIO DE QUE POR METODO POST ENVIA LOS COMENTARIOS DE LOS USARIOS EN EL SITIO, VEMOS COMO CON ACTION /post/comment HACE UN LALMADO A LA FUNCION QUE RECIBE LOS DATOS EN EL SERVIDOR
Last updated