Hello,
1. Cross-Site Scripting (XSS)
Authenticated users (like editors) can inject html/js code (there is no CSRF protection).
Method: POST
Vulnerable parameters: cats, hdnCatID
Example PHP callstack:
mylinkorder [/my-link-order/mylinkorder.php:160]
Verification:
--
<input type="text" name="btnCats" value="1" />
<input type="text" name="cats" value='"><img src=x onerror=alert(1) />' />
<input type="submit" />
</form>
--
--
Regards,
Marcin Probola,