12345678910111213141516171819202122232425 |
- import unittest
- import unittest.mock as mock
- from Test.GenericTest import GenericTest
- from Test.Lib import test_pcap_ips
- sha_default = 'a45bd543ae7416cdc5fd76c886f48990b43075753931683407686aac2cfbc111'
- """
- CURRENT COVERAGE
- Name Stmts Miss Cover Missing (lines)
- ---------------------------------------------------------------------------
- Attack/JoomlaRegPrivExploit.py 127 4 97% 62, 71, 116, 123
- """
- class UnitTestJoomla(GenericTest):
- def test_default(self):
- self.generic_test([['JoomlaRegPrivExploit']], sha_default)
- if __name__ == '__main__':
- unittest.main()
|