Example #1
0
 def test_not_too_many_ignores(self):
     config = Config(['/cgi-bin/'],[],[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst.DB_FILE, config, url)
     
     # Go through all the lines        
     generator = nikto_parser.test_generator()
     [i for (i,) in generator]
     
     self.assertLess(len(nikto_parser.ignored), 30, len(nikto_parser.ignored))
Example #2
0
    def test_parse_db_line_raw_bytes(self):
        config = Config(['/cgi-bin/'], [], [], [], [])
        url = URL('http://moth/')
        pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
        nikto_parser = NiktoTestParser(pykto_inst._db_file, config, url)

        line = '"006251","0","1","/administraƧao.php","GET","200","","",""'\
               ',"","Admin login page/section found.","",""'
        try:
            [_ for _ in nikto_parser._parse_db_line(line)]
        except TypeError:
            self.assertTrue(True)
        else:
            self.assertTrue(False)
Example #3
0
 def test_parse_db_line_raw_bytes(self):
     config = Config(['/cgi-bin/'],[],[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst.DB_FILE, config, url)
     
     line = '"006251","0","1","/administraƧao.php","GET","200","","",""'\
            ',"","Admin login page/section found.","",""'
     try:
         [_ for _ in nikto_parser._parse_db_line(line)]
     except TypeError:
         self.assertTrue(True)
     else:
         self.assertTrue(False)
Example #4
0
    def test_parse_db_line_admin_dirs(self):
        admin_dirs = ['/adm/', '/admin/']

        config = Config(['/cgi-bin/'], admin_dirs, [], [], [])
        url = URL('http://moth/')
        pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
        nikto_parser = NiktoTestParser(pykto_inst._db_file, config, url)

        line = u'"0","0","","@ADMIN","GET","200"'\
                ',"","","","","","",""'
        nikto_tests = [i for i in nikto_parser._parse_db_line(line)]

        self.assertEqual(len(nikto_tests), 2)

        self.assertEqual(admin_dirs, [nt.uri.get_path() for nt in nikto_tests])
Example #5
0
    def test_parse_db_line_cgidirs(self):
        config = Config(['/cgi-bin/'], [], [], [], [])
        url = URL('http://moth/')
        pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
        nikto_parser = NiktoTestParser(pykto_inst._db_file, config, url)

        line = u'"0","0","","@CGIDIRS","GET","200"'\
                ',"","","","","","",""'
        nikto_tests = [i for i in nikto_parser._parse_db_line(line)]

        self.assertEqual(len(nikto_tests), 1)

        nikto_test = nikto_tests[0]

        self.assertEqual('/cgi-bin/', nikto_test.uri.get_path())
Example #6
0
 def test_parse_db_line_cgidirs(self):
     config = Config(['/cgi-bin/'],[],[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst.DB_FILE, config, url)
     
     line = u'"0","0","","@CGIDIRS","GET","200"'\
             ',"","","","","","",""'
     nikto_tests = [i for i in nikto_parser._parse_db_line(line)]
     
     self.assertEqual(len(nikto_tests), 1)
     
     nikto_test = nikto_tests[0]
 
     self.assertEqual('/cgi-bin/', nikto_test.uri.get_path())
Example #7
0
 def test_parse_db_line_no_vars(self):
     config = Config([],[],[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst.DB_FILE, config, url)
     
     line = u'"0","0","","/docs/","GET","200"'\
             ',"","","","","","",""'
     nikto_tests = [i for i in nikto_parser._parse_db_line(line)]
     
     self.assertEqual(len(nikto_tests), 1)
     
     nikto_test = nikto_tests[0]
 
     self.assertEqual('/docs/', nikto_test.uri.get_path())
Example #8
0
 def test_parse_db_line_no_vars(self):
     config = Config([],[],[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst._db_file, config, url)
     
     line = u'"0","0","","/docs/","GET","200"'\
             ',"","","","","","",""'
     nikto_tests = [i for i in nikto_parser._parse_db_line(line)]
     
     self.assertEqual(len(nikto_tests), 1)
     
     nikto_test = nikto_tests[0]
 
     self.assertEqual('/docs/', nikto_test.uri.get_path())
Example #9
0
 def test_parse_db_line_admin_dirs(self):
     admin_dirs = ['/adm/', '/admin/']
     
     config = Config(['/cgi-bin/'],admin_dirs,[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst.DB_FILE, config, url)
     
     line = u'"0","0","","@ADMIN","GET","200"'\
             ',"","","","","","",""'
     nikto_tests = [i for i in nikto_parser._parse_db_line(line)]
     
     self.assertEqual(len(nikto_tests), 2)
     
     self.assertEqual(admin_dirs,
                      [nt.uri.get_path() for nt in nikto_tests])
Example #10
0
 def test_parse_db_line_admin_users_two(self):
     admin_dirs = ['/adm/', '/admin/']
     users = ['sys', 'root']
     
     config = Config([],admin_dirs,[],[],users)
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst.DB_FILE, config, url)
     
     line = u'"0","0","","@ADMIN@USERS","GET","200"'\
             ',"","","","","","",""'
     nikto_tests = [i for i in nikto_parser._parse_db_line(line)]
     
     self.assertEqual(len(nikto_tests), 4)
     
     self.assertEqual(['/adm/sys', '/adm/root', '/admin/sys', '/admin/root'],
                      [nt.uri.get_path() for nt in nikto_tests])
Example #11
0
 def test_parse_db_line_admin_users_two(self):
     admin_dirs = ['/adm/', '/admin/']
     users = ['sys', 'root']
     
     config = Config([],admin_dirs,[],[],users)
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst._db_file, config, url)
     
     line = u'"0","0","","@ADMIN@USERS","GET","200"'\
             ',"","","","","","",""'
     nikto_tests = [i for i in nikto_parser._parse_db_line(line)]
     
     self.assertEqual(len(nikto_tests), 4)
     
     self.assertEqual(['/adm/sys', '/adm/root', '/admin/sys', '/admin/root'],
                      [nt.uri.get_path() for nt in nikto_tests])
Example #12
0
    def test_parse_db_line_basic(self):
        '''
        This test reads a line from the DB and parses it, it's objective is to
        make sure that DB upgrades with update_scan_db.py do not break the code
        at pykto.py.
        '''
        config = Config(['/cgi-bin/'], [], [], [], [])
        url = URL('http://moth/')
        pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
        nikto_parser = NiktoTestParser(pykto_inst._db_file, config, url)

        line = u'"000003","0","1234576890ab","@CGIDIRScart32.exe","GET","200"'\
                ',"","","","","request cart32.exe/cart32clientlist","",""'
        nikto_tests = [i for i in nikto_parser._parse_db_line(line)]

        self.assertEqual(len(nikto_tests), 1)

        nikto_test = nikto_tests[0]

        self.assertEqual(nikto_test.id, '000003')
        self.assertEqual(nikto_test.osvdb, '0')
        self.assertEqual(nikto_test.tune, '1234576890ab')
        self.assertEqual(nikto_test.uri.url_string,
                         'http://moth/cgi-bin/cart32.exe')
        self.assertEqual(nikto_test.method, 'GET')
        self.assertEqual(nikto_test.match_1, 200)
        self.assertEqual(nikto_test.match_1_or, None)
        self.assertEqual(nikto_test.match_1_and, None)
        self.assertEqual(nikto_test.fail_1, None)
        self.assertEqual(nikto_test.fail_2, None)
        self.assertEqual(nikto_test.message,
                         'request cart32.exe/cart32clientlist')
        self.assertEqual(nikto_test.data, '')
        self.assertEqual(nikto_test.headers, '')

        generator = nikto_parser.test_generator()
        cart32_test_from_db = [i for (i, ) in generator if i.id == '000003'][0]

        self.assertEqual(cart32_test_from_db.uri, nikto_test.uri)
        self.assertEqual(cart32_test_from_db.match_1, nikto_test.match_1)
        self.assertEqual(cart32_test_from_db.message, nikto_test.message)
Example #13
0
    def test_parse_db_line_basic_w3af_scan_database(self):
        '''
        This test reads a line from the w3af scan database and parses it, it's
        objective is to make sure that we can read both formats (or better yet,
        that both files: the one from nikto and the one we have are in the same
        format).
        
        https://github.com/andresriancho/w3af/issues/317
        '''
        config = Config([], [], [], [], [])
        url = URL('http://moth/')
        pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
        nikto_parser = NiktoTestParser(pykto_inst._extra_db_file, config, url)

        # Go through all the lines
        generator = nikto_parser.test_generator()
        nikto_tests = [i for (i, ) in generator]

        self.assertLess(len(nikto_parser.ignored), 30,
                        len(nikto_parser.ignored))

        self.assertEqual(len(nikto_tests), 3)

        nikto_test = nikto_tests[0]

        self.assertEqual(nikto_test.id, '900001')
        self.assertEqual(nikto_test.osvdb, '0')
        self.assertEqual(nikto_test.tune, '3')
        self.assertEqual(nikto_test.uri.url_string, 'http://moth/debug.seam')
        self.assertEqual(nikto_test.method, 'GET')
        self.assertIsInstance(nikto_test.match_1, type(re.compile('')))
        self.assertEqual(nikto_test.match_1_or, None)
        self.assertEqual(nikto_test.match_1_and, None)
        self.assertEqual(nikto_test.fail_1, None)
        self.assertEqual(nikto_test.fail_2, None)
        self.assertEqual(nikto_test.message,
                         'JBoss Seam Debug Page is available.')
        self.assertEqual(nikto_test.data, '')
        self.assertEqual(nikto_test.headers, '')
Example #14
0
 def test_parse_db_line_basic(self):
     '''
     This test reads a line from the DB and parses it, it's objective is to
     make sure that DB upgrades with update_scan_db.py do not break the code
     at pykto.py.
     '''
     config = Config(['/cgi-bin/'],[],[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst.DB_FILE, config, url)
     
     line = u'"000003","0","1234576890ab","@CGIDIRScart32.exe","GET","200"'\
             ',"","","","","request cart32.exe/cart32clientlist","",""'
     nikto_tests = [i for i in nikto_parser._parse_db_line(line)]
     
     self.assertEqual(len(nikto_tests), 1)
     
     nikto_test = nikto_tests[0]
 
     self.assertEqual(nikto_test.id, '000003')
     self.assertEqual(nikto_test.osvdb, '0')
     self.assertEqual(nikto_test.tune, '1234576890ab')
     self.assertEqual(nikto_test.uri.url_string, 'http://moth/cgi-bin/cart32.exe')
     self.assertEqual(nikto_test.method, 'GET')
     self.assertEqual(nikto_test.match_1, 200)
     self.assertEqual(nikto_test.match_1_or, None)
     self.assertEqual(nikto_test.match_1_and, None)
     self.assertEqual(nikto_test.fail_1, None)
     self.assertEqual(nikto_test.fail_2, None)
     self.assertEqual(nikto_test.message, 'request cart32.exe/cart32clientlist')
     self.assertEqual(nikto_test.data, '')
     self.assertEqual(nikto_test.headers, '')
     
     generator = nikto_parser.test_generator()
     cart32_test_from_db = [i for (i,) in generator if i.id == '000003'][0]
     
     self.assertEqual(cart32_test_from_db.uri, nikto_test.uri)
     self.assertEqual(cart32_test_from_db.match_1, nikto_test.match_1)        
     self.assertEqual(cart32_test_from_db.message, nikto_test.message)
Example #15
0
 def test_parse_db_line_basic_w3af_scan_database(self):
     '''
     This test reads a line from the w3af scan database and parses it, it's
     objective is to make sure that we can read both formats (or better yet,
     that both files: the one from nikto and the one we have are in the same
     format).
     
     https://github.com/andresriancho/w3af/issues/317
     '''
     config = Config([],[],[],[],[])
     url = URL('http://moth/')
     pykto_inst = self.w3afcore.plugins.get_plugin_inst('crawl', 'pykto')
     nikto_parser = NiktoTestParser(pykto_inst._extra_db_file, config, url)
     
     # Go through all the lines        
     generator = nikto_parser.test_generator()
     nikto_tests = [i for (i,) in generator]
     
     self.assertLess(len(nikto_parser.ignored), 30, len(nikto_parser.ignored))
     
     self.assertEqual(len(nikto_tests), 3)
     
     nikto_test = nikto_tests[0]
 
     self.assertEqual(nikto_test.id, '900001')
     self.assertEqual(nikto_test.osvdb, '0')
     self.assertEqual(nikto_test.tune, '3')
     self.assertEqual(nikto_test.uri.url_string, 'http://moth/debug.seam')
     self.assertEqual(nikto_test.method, 'GET')
     self.assertIsInstance(nikto_test.match_1, type(re.compile('')))
     self.assertEqual(nikto_test.match_1_or, None)
     self.assertEqual(nikto_test.match_1_and, None)
     self.assertEqual(nikto_test.fail_1, None)
     self.assertEqual(nikto_test.fail_2, None)
     self.assertEqual(nikto_test.message, 'JBoss Seam Debug Page is available.')
     self.assertEqual(nikto_test.data, '')
     self.assertEqual(nikto_test.headers, '')