Quantcast
Viewing all articles
Browse latest Browse all 2663

Potential leak of data: Simple Password

Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: o.test import TestCase class DevViewsTests(TestCase): fixtures = ['device/fixtures/test_device.json'] def setUp(self): self.client = Client() self.username = 'cws' self.email = 'alain.sturzenegger@gmail.com' self.password = 'cws123' self.test_user = User.objects.create_user(self.username, self.email, self.password) login = self.client.login(username=self.username, password=self.password) self.assertEqual(login, True) def test_device_list(self): u Source: http://pastebin.com/raw.php?i=8ewATtD4

Viewing all articles
Browse latest Browse all 2663

Trending Articles