test_Joomla.py 610 B

1234567891011121314151617181920212223
  1. import unittest
  2. import Test.GenericTest as GenericTest
  3. sha_default = 'a45bd543ae7416cdc5fd76c886f48990b43075753931683407686aac2cfbc111'
  4. """
  5. CURRENT COVERAGE
  6. Name Stmts Miss Cover Missing (lines)
  7. ---------------------------------------------------------------------------
  8. Attack/JoomlaRegPrivExploit.py 127 4 97% 62, 71, 116, 123
  9. """
  10. # TODO: get 100% coverage
  11. class UnitTestJoomla(GenericTest.GenericTest):
  12. def test_joomla_default(self):
  13. self.generic_test([['JoomlaRegPrivExploit']], sha_default)
  14. if __name__ == '__main__':
  15. unittest.main()