Exploit title: phpMyRecipes 1.2.2 Persistent XSS Date: 2/2013 Author: PDS - trollsandpwnies@gmail.com Severity: medium Software link: https://php-myrecipes.svn.sourceforge.net/svnroot/php-myrecipes/phpMyRecipes-main addrecipe.php and editrecipe.php are vulnerable to persistent cross site scripting. User supplied input is not sanitized before being displayed on the page. ex: $r_id = $_POST['r_id']; $r_name = $_POST['r_name']; $r_category = $_POST['r_category']; $r_servings = $_POST['r_servings']; $r_ingredients = $_POST['r_ingredients']; $r_instructions = $_POST['r_instructions']; $r_description = $_POST['r_description'] ---------------------------------------------------