Skip to content

Instantly share code, notes, and snippets.

@durbon
Created May 29, 2012 13:39
Show Gist options
  • Save durbon/2828427 to your computer and use it in GitHub Desktop.
Save durbon/2828427 to your computer and use it in GitHub Desktop.
Ataques de fuerza bruta a formularios web: formulario html ejemplo
<form id='login' action='login.php' method='post' accept-charset='UTF-8'>
<fieldset >
<legend>Genbeta Dev Acceso restringido</legend>
<label for='username' >Usuario :</label>
<input type='text' name='username' id='username' maxlength="50" />
<label for='password' >Contraseña :</label>
<input type='password' name='password' id='password' maxlength="50" />
<input type='submit' name='Submit' />
</fieldset>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment