Potential leak of data: Login/Password List
Detected 2 occurrence(s) of ‘\s+(email|login|user|username|name|password|pass)[\t:,;\|]+(email|login|user|username|name|password|pass)[\t:,;\|\s]+’:
=> $this->getRequest()->get('username')))
->setStatusCode(404);
return $this->getResponse()->setContent('User not found');
}
public function placesAction()
{
$em = $this->getEntityManager('read');
$dql = '
SELECT u, p
FROM
User:User u
LEFT JOIN u.places p
WHERE u.keyword=:keyword';
$user = $em->createQuery($dql)
->setParameter('keyword', $this->getRequest()->get('username'))
->getResult();
if (!$user) {
return $this->notFoundAction();
}
die(__MET
Source: http://pastebin.com/raw.php?i=bYKqee87
Tags: Login/Password List, pastebin.com
This entry was posted on Saturday, June 16th, 2012 at 18:34 and is filed under PasteMon. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.
Comments are closed.

