Hack This Site.co.uk - Main 6
Objectives
no Objectives given
Solution
So we need to login as Ronald.
We could setup a proxy to tamper the data and have it send Ronald as the answer when submitting, however I just pulled up inspector edited to HTML to show another option for Ronald and then selected that user from the dropdown
here is the orignal source code for the section we need to modify
<div class='level-form'>
<form method="POST">
<fieldset>
<label for="user">Username:</label>
<select id="user" name="user">
<option>John</option>
<option>Petter</option>
<option>David</option>
<option>Sam</option>
</select>
<input type="submit" value="Submit" class="button">
</fieldset>
</form> </div>
</div>
</div>
once I found that that section in inspector I right clicked and chose 'Edit as HTML'
added this to the list
<option>Ronald</option>
then selected Ronald from the drop down
Boom bob's your uncle
Objectives
no Objectives given
Solution
So we need to login as Ronald.
We could setup a proxy to tamper the data and have it send Ronald as the answer when submitting, however I just pulled up inspector edited to HTML to show another option for Ronald and then selected that user from the dropdown
here is the orignal source code for the section we need to modify
<div class='level-form'>
<form method="POST">
<fieldset>
<label for="user">Username:</label>
<select id="user" name="user">
<option>John</option>
<option>Petter</option>
<option>David</option>
<option>Sam</option>
</select>
<input type="submit" value="Submit" class="button">
</fieldset>
</form> </div>
</div>
</div>
once I found that that section in inspector I right clicked and chose 'Edit as HTML'
added this to the list
<option>Ronald</option>
then selected Ronald from the drop down
Boom bob's your uncle
Comments
Post a Comment