LeakedIn Logo
Stories About Data Leaks and Related Stuff

Potential leak of data: Login/Password List

0 votedvote

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: ,

Comments are closed.