├── .coverage ├── .coveragerc ├── .gitchangelog.rc ├── .github └── workflows │ ├── auto_docs.yaml │ ├── auto_version.yaml │ ├── black.yml │ ├── stale.yml │ └── unit_tests.yml ├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── _config.yml ├── _etc └── systemd │ └── system │ ├── cvesearch.db_init.service │ ├── cvesearch.db_init.target │ ├── cvesearch.db_repopulate.service │ ├── cvesearch.db_repopulate.target │ ├── cvesearch.db_updater.service │ ├── cvesearch.db_updater.timer │ └── cvesearch.web.service ├── bin ├── __init__.py ├── cve_doc.py ├── cve_refs.py ├── db_dump.py ├── dump_last.py ├── search.py ├── search_cpe.py └── search_fulltext.py ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── favicon.ico │ ├── changelog │ └── changelog.rst │ ├── conf.py │ ├── database │ └── database.rst │ ├── docker │ └── docker.rst │ ├── getting_started │ └── installation.rst │ ├── index.rst │ ├── license │ └── license.rst │ ├── software │ └── software.rst │ └── webgui │ ├── plugins.rst │ └── webgui.rst ├── etc ├── .schema_version ├── auth.txt.sample ├── configuration.ini.sample ├── nginx.conf.sample ├── sources.ini.sample └── wsgi.ini.sample ├── lib ├── ApiRequests.py ├── Authentication.py ├── CVEs.py ├── Config.py ├── DatabaseHandler.py ├── DatabaseLayer.py ├── DatabasePluginBase.py ├── DatabasePlugins │ ├── __init__.py │ ├── config.py │ └── mongodb.py ├── LogHandler.py ├── Plugins.py ├── Query.py ├── Singleton.py ├── Sources_process.py ├── Toolkit.py ├── User.py ├── __init__.py ├── authenticationMethods │ └── readme.md ├── cpe_conversion.py └── cpelist.py ├── pytest.ini ├── requirements-dev.txt ├── requirements.prod ├── requirements.system ├── requirements.txt ├── sbin ├── __init__.py ├── db_blacklist.py ├── db_cpe_browser.py ├── db_fulltext.py ├── db_mgmt_admin.py ├── db_mgmt_capec.py ├── db_mgmt_cpe_dictionary.py ├── db_mgmt_cpe_other_dictionary.py ├── db_mgmt_create_index.py ├── db_mgmt_cwe.py ├── db_mgmt_json.py ├── db_mgmt_ref.py ├── db_notification.py ├── db_ranking.py ├── db_updater.py └── db_whitelist.py ├── test ├── __init__.py ├── runners │ ├── __init__.py │ ├── cli_test_runner.py │ └── web_test_runner.py ├── test_data │ └── setup_test_data.py ├── unit │ ├── __init__.py │ ├── notest_cve_doc.py │ ├── notest_dump_last.py │ ├── test_db_dump.py │ ├── test_search.py │ └── test_search_cpe.py └── web │ ├── __init__.py │ └── notest_web.py └── web ├── VERSION ├── __init__.py ├── admin ├── __init__.py └── views.py ├── auth ├── __init__.py ├── forms.py └── views.py ├── helpers ├── __init__.py ├── app_plugin.py ├── common.py ├── flask_authentication.py ├── flask_database.py └── server_side_datatables.py ├── home ├── __init__.py ├── utils.py └── views.py ├── index.py ├── plugins ├── __init__.py └── hello_world │ ├── DISABLED │ ├── __init__.py │ ├── info.json │ └── templates │ └── hello.html ├── restapi ├── __init__.py ├── admin.py ├── auth.py ├── browse_vendor.py ├── capec.py ├── cpe_convert.py ├── cve.py ├── cwe.py ├── dbinfo.py ├── query.py └── search_vendor.py ├── run.py ├── set_version.py ├── static ├── css │ ├── all.min.css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── custom │ │ ├── admin.css │ │ ├── auth.css │ │ ├── browse.css │ │ ├── capec.css │ │ ├── cve.css │ │ ├── cwe.css │ │ ├── filter.css │ │ └── plugins.css │ ├── dataTables.bootstrap4.min.css │ ├── style.css │ ├── svg-with-js.min.css │ └── sweetalert2 │ │ ├── bootstrap-4.min.css │ │ └── bootstrap-4.scss ├── img │ ├── ajaxload.gif │ ├── cve.png │ └── favicon.ico ├── js │ ├── all.min.js │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ ├── clipboard.min.js │ ├── custom │ │ ├── CVEsDataTable.js │ │ ├── admin.js │ │ ├── cve.js │ │ ├── filter.js │ │ ├── list.js │ │ ├── listmanagement.js │ │ ├── oidcLogin.js │ │ ├── plugins.js │ │ ├── scripts.js │ │ └── statusses.js │ ├── dataTables.bootstrap4.min.js │ ├── jquery-3.7.1.min.js │ ├── jquery-3.7.1.min.map │ ├── jquery.dataTables.min.js │ ├── popper.min.js │ ├── popper.min.js.map │ └── sweetalert2.min.js └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── templates ├── 404.html ├── admin.html ├── bookmarked.html ├── browse.html ├── browse_vendor.html ├── capec.html ├── cve.html ├── cwe.html ├── error.html ├── index.html ├── layouts │ ├── auth_base.html │ └── master-page.html ├── linked.html ├── list.html ├── listmanagement.html ├── login.html ├── login_old.html ├── register.html ├── requiresAuth.html ├── search.html └── subpages │ ├── breadcrumbs.html │ ├── filters.html │ ├── menu.html │ └── table.html └── wsgi.py /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.coverage -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.github/workflows/auto_docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.github/workflows/auto_docs.yaml -------------------------------------------------------------------------------- /.github/workflows/auto_version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.github/workflows/auto_version.yaml -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_config.yml -------------------------------------------------------------------------------- /_etc/systemd/system/cvesearch.db_init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_etc/systemd/system/cvesearch.db_init.service -------------------------------------------------------------------------------- /_etc/systemd/system/cvesearch.db_init.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_etc/systemd/system/cvesearch.db_init.target -------------------------------------------------------------------------------- /_etc/systemd/system/cvesearch.db_repopulate.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_etc/systemd/system/cvesearch.db_repopulate.service -------------------------------------------------------------------------------- /_etc/systemd/system/cvesearch.db_repopulate.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_etc/systemd/system/cvesearch.db_repopulate.target -------------------------------------------------------------------------------- /_etc/systemd/system/cvesearch.db_updater.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_etc/systemd/system/cvesearch.db_updater.service -------------------------------------------------------------------------------- /_etc/systemd/system/cvesearch.db_updater.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_etc/systemd/system/cvesearch.db_updater.timer -------------------------------------------------------------------------------- /_etc/systemd/system/cvesearch.web.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/_etc/systemd/system/cvesearch.web.service -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/cve_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/bin/cve_doc.py -------------------------------------------------------------------------------- /bin/cve_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/bin/cve_refs.py -------------------------------------------------------------------------------- /bin/db_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/bin/db_dump.py -------------------------------------------------------------------------------- /bin/dump_last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/bin/dump_last.py -------------------------------------------------------------------------------- /bin/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/bin/search.py -------------------------------------------------------------------------------- /bin/search_cpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/bin/search_cpe.py -------------------------------------------------------------------------------- /bin/search_fulltext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/bin/search_fulltext.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/_static/favicon.ico -------------------------------------------------------------------------------- /docs/source/changelog/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/changelog/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/database/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/database/database.rst -------------------------------------------------------------------------------- /docs/source/docker/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/docker/docker.rst -------------------------------------------------------------------------------- /docs/source/getting_started/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/getting_started/installation.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/license/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/license/license.rst -------------------------------------------------------------------------------- /docs/source/software/software.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/software/software.rst -------------------------------------------------------------------------------- /docs/source/webgui/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/webgui/plugins.rst -------------------------------------------------------------------------------- /docs/source/webgui/webgui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/docs/source/webgui/webgui.rst -------------------------------------------------------------------------------- /etc/.schema_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/etc/.schema_version -------------------------------------------------------------------------------- /etc/auth.txt.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/etc/auth.txt.sample -------------------------------------------------------------------------------- /etc/configuration.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/etc/configuration.ini.sample -------------------------------------------------------------------------------- /etc/nginx.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/etc/nginx.conf.sample -------------------------------------------------------------------------------- /etc/sources.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/etc/sources.ini.sample -------------------------------------------------------------------------------- /etc/wsgi.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/etc/wsgi.ini.sample -------------------------------------------------------------------------------- /lib/ApiRequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/ApiRequests.py -------------------------------------------------------------------------------- /lib/Authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/Authentication.py -------------------------------------------------------------------------------- /lib/CVEs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/CVEs.py -------------------------------------------------------------------------------- /lib/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/Config.py -------------------------------------------------------------------------------- /lib/DatabaseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/DatabaseHandler.py -------------------------------------------------------------------------------- /lib/DatabaseLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/DatabaseLayer.py -------------------------------------------------------------------------------- /lib/DatabasePluginBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/DatabasePluginBase.py -------------------------------------------------------------------------------- /lib/DatabasePlugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/DatabasePlugins/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/DatabasePlugins/config.py -------------------------------------------------------------------------------- /lib/DatabasePlugins/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/DatabasePlugins/mongodb.py -------------------------------------------------------------------------------- /lib/LogHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/LogHandler.py -------------------------------------------------------------------------------- /lib/Plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/Plugins.py -------------------------------------------------------------------------------- /lib/Query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/Query.py -------------------------------------------------------------------------------- /lib/Singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/Singleton.py -------------------------------------------------------------------------------- /lib/Sources_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/Sources_process.py -------------------------------------------------------------------------------- /lib/Toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/Toolkit.py -------------------------------------------------------------------------------- /lib/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/User.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/authenticationMethods/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/authenticationMethods/readme.md -------------------------------------------------------------------------------- /lib/cpe_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/cpe_conversion.py -------------------------------------------------------------------------------- /lib/cpelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/lib/cpelist.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | 3 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/requirements.prod -------------------------------------------------------------------------------- /requirements.system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/requirements.system -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/requirements.txt -------------------------------------------------------------------------------- /sbin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbin/db_blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_blacklist.py -------------------------------------------------------------------------------- /sbin/db_cpe_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_cpe_browser.py -------------------------------------------------------------------------------- /sbin/db_fulltext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_fulltext.py -------------------------------------------------------------------------------- /sbin/db_mgmt_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_admin.py -------------------------------------------------------------------------------- /sbin/db_mgmt_capec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_capec.py -------------------------------------------------------------------------------- /sbin/db_mgmt_cpe_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_cpe_dictionary.py -------------------------------------------------------------------------------- /sbin/db_mgmt_cpe_other_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_cpe_other_dictionary.py -------------------------------------------------------------------------------- /sbin/db_mgmt_create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_create_index.py -------------------------------------------------------------------------------- /sbin/db_mgmt_cwe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_cwe.py -------------------------------------------------------------------------------- /sbin/db_mgmt_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_json.py -------------------------------------------------------------------------------- /sbin/db_mgmt_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_mgmt_ref.py -------------------------------------------------------------------------------- /sbin/db_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_notification.py -------------------------------------------------------------------------------- /sbin/db_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_ranking.py -------------------------------------------------------------------------------- /sbin/db_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_updater.py -------------------------------------------------------------------------------- /sbin/db_whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/sbin/db_whitelist.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/runners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/runners/cli_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/runners/cli_test_runner.py -------------------------------------------------------------------------------- /test/runners/web_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/runners/web_test_runner.py -------------------------------------------------------------------------------- /test/test_data/setup_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/test_data/setup_test_data.py -------------------------------------------------------------------------------- /test/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/notest_cve_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/unit/notest_cve_doc.py -------------------------------------------------------------------------------- /test/unit/notest_dump_last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/unit/notest_dump_last.py -------------------------------------------------------------------------------- /test/unit/test_db_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/unit/test_db_dump.py -------------------------------------------------------------------------------- /test/unit/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/unit/test_search.py -------------------------------------------------------------------------------- /test/unit/test_search_cpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/unit/test_search_cpe.py -------------------------------------------------------------------------------- /test/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/web/notest_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/test/web/notest_web.py -------------------------------------------------------------------------------- /web/VERSION: -------------------------------------------------------------------------------- 1 | 5.0.3.dev3 -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/admin/__init__.py -------------------------------------------------------------------------------- /web/admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/admin/views.py -------------------------------------------------------------------------------- /web/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/auth/__init__.py -------------------------------------------------------------------------------- /web/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/auth/forms.py -------------------------------------------------------------------------------- /web/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/auth/views.py -------------------------------------------------------------------------------- /web/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpers/app_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/helpers/app_plugin.py -------------------------------------------------------------------------------- /web/helpers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/helpers/common.py -------------------------------------------------------------------------------- /web/helpers/flask_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/helpers/flask_authentication.py -------------------------------------------------------------------------------- /web/helpers/flask_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/helpers/flask_database.py -------------------------------------------------------------------------------- /web/helpers/server_side_datatables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/helpers/server_side_datatables.py -------------------------------------------------------------------------------- /web/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/home/__init__.py -------------------------------------------------------------------------------- /web/home/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/home/utils.py -------------------------------------------------------------------------------- /web/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/home/views.py -------------------------------------------------------------------------------- /web/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/index.py -------------------------------------------------------------------------------- /web/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/plugins/hello_world/DISABLED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/plugins/hello_world/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/plugins/hello_world/__init__.py -------------------------------------------------------------------------------- /web/plugins/hello_world/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/plugins/hello_world/info.json -------------------------------------------------------------------------------- /web/plugins/hello_world/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/plugins/hello_world/templates/hello.html -------------------------------------------------------------------------------- /web/restapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/__init__.py -------------------------------------------------------------------------------- /web/restapi/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/admin.py -------------------------------------------------------------------------------- /web/restapi/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/auth.py -------------------------------------------------------------------------------- /web/restapi/browse_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/browse_vendor.py -------------------------------------------------------------------------------- /web/restapi/capec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/capec.py -------------------------------------------------------------------------------- /web/restapi/cpe_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/cpe_convert.py -------------------------------------------------------------------------------- /web/restapi/cve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/cve.py -------------------------------------------------------------------------------- /web/restapi/cwe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/cwe.py -------------------------------------------------------------------------------- /web/restapi/dbinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/dbinfo.py -------------------------------------------------------------------------------- /web/restapi/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/query.py -------------------------------------------------------------------------------- /web/restapi/search_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/restapi/search_vendor.py -------------------------------------------------------------------------------- /web/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/run.py -------------------------------------------------------------------------------- /web/set_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/set_version.py -------------------------------------------------------------------------------- /web/static/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/all.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/static/css/custom/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/admin.css -------------------------------------------------------------------------------- /web/static/css/custom/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/auth.css -------------------------------------------------------------------------------- /web/static/css/custom/browse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/browse.css -------------------------------------------------------------------------------- /web/static/css/custom/capec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/capec.css -------------------------------------------------------------------------------- /web/static/css/custom/cve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/cve.css -------------------------------------------------------------------------------- /web/static/css/custom/cwe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/cwe.css -------------------------------------------------------------------------------- /web/static/css/custom/filter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/filter.css -------------------------------------------------------------------------------- /web/static/css/custom/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/custom/plugins.css -------------------------------------------------------------------------------- /web/static/css/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/style.css -------------------------------------------------------------------------------- /web/static/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/svg-with-js.min.css -------------------------------------------------------------------------------- /web/static/css/sweetalert2/bootstrap-4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/sweetalert2/bootstrap-4.min.css -------------------------------------------------------------------------------- /web/static/css/sweetalert2/bootstrap-4.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/css/sweetalert2/bootstrap-4.scss -------------------------------------------------------------------------------- /web/static/img/ajaxload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/img/ajaxload.gif -------------------------------------------------------------------------------- /web/static/img/cve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/img/cve.png -------------------------------------------------------------------------------- /web/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/img/favicon.ico -------------------------------------------------------------------------------- /web/static/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/all.min.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /web/static/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/clipboard.min.js -------------------------------------------------------------------------------- /web/static/js/custom/CVEsDataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/CVEsDataTable.js -------------------------------------------------------------------------------- /web/static/js/custom/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/admin.js -------------------------------------------------------------------------------- /web/static/js/custom/cve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/cve.js -------------------------------------------------------------------------------- /web/static/js/custom/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/filter.js -------------------------------------------------------------------------------- /web/static/js/custom/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/list.js -------------------------------------------------------------------------------- /web/static/js/custom/listmanagement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/listmanagement.js -------------------------------------------------------------------------------- /web/static/js/custom/oidcLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/oidcLogin.js -------------------------------------------------------------------------------- /web/static/js/custom/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/plugins.js -------------------------------------------------------------------------------- /web/static/js/custom/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/scripts.js -------------------------------------------------------------------------------- /web/static/js/custom/statusses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/custom/statusses.js -------------------------------------------------------------------------------- /web/static/js/dataTables.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/dataTables.bootstrap4.min.js -------------------------------------------------------------------------------- /web/static/js/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /web/static/js/jquery-3.7.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/jquery-3.7.1.min.map -------------------------------------------------------------------------------- /web/static/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /web/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/popper.min.js -------------------------------------------------------------------------------- /web/static/js/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/popper.min.js.map -------------------------------------------------------------------------------- /web/static/js/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/js/sweetalert2.min.js -------------------------------------------------------------------------------- /web/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /web/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /web/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /web/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /web/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /web/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /web/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /web/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /web/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /web/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /web/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/404.html -------------------------------------------------------------------------------- /web/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/admin.html -------------------------------------------------------------------------------- /web/templates/bookmarked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/bookmarked.html -------------------------------------------------------------------------------- /web/templates/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/browse.html -------------------------------------------------------------------------------- /web/templates/browse_vendor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/browse_vendor.html -------------------------------------------------------------------------------- /web/templates/capec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/capec.html -------------------------------------------------------------------------------- /web/templates/cve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/cve.html -------------------------------------------------------------------------------- /web/templates/cwe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/cwe.html -------------------------------------------------------------------------------- /web/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/error.html -------------------------------------------------------------------------------- /web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/index.html -------------------------------------------------------------------------------- /web/templates/layouts/auth_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/layouts/auth_base.html -------------------------------------------------------------------------------- /web/templates/layouts/master-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/layouts/master-page.html -------------------------------------------------------------------------------- /web/templates/linked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/linked.html -------------------------------------------------------------------------------- /web/templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/list.html -------------------------------------------------------------------------------- /web/templates/listmanagement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/listmanagement.html -------------------------------------------------------------------------------- /web/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/login.html -------------------------------------------------------------------------------- /web/templates/login_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/login_old.html -------------------------------------------------------------------------------- /web/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/register.html -------------------------------------------------------------------------------- /web/templates/requiresAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/requiresAuth.html -------------------------------------------------------------------------------- /web/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/search.html -------------------------------------------------------------------------------- /web/templates/subpages/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/subpages/breadcrumbs.html -------------------------------------------------------------------------------- /web/templates/subpages/filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/subpages/filters.html -------------------------------------------------------------------------------- /web/templates/subpages/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/subpages/menu.html -------------------------------------------------------------------------------- /web/templates/subpages/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/templates/subpages/table.html -------------------------------------------------------------------------------- /web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adulau/cve-search/HEAD/web/wsgi.py --------------------------------------------------------------------------------