I currently have a website that utilizes a JavaScript function to validate a text input with 5 characters.
The HTML code for this functionality is as follows:
<p class="form-control-static ret">
Input your Text:
<input type="text" name="text_input" id="text_input" maxlength="5" value="">
<button class="validate-button" id="btn">Check!</button>
</p>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").click(function(e){
e.preventDefault();
location.href = "https://www.url_here?sc=" + $('#text_input').val();
});
});
</script>
The created URL includes the 5 characters from the text input directly.
Examples:
I am interested in creating a Macro in Excel that tries all URLs with different options and pastes the texts that return True into a spreadsheet. Is there an easier way to achieve this goal?
All I need is an automated dictionary attack.