├── .bettercodehub.yml ├── .codacy.yml ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── feature-request.yml │ └── question.yml └── workflows │ ├── build_ci.yml │ ├── deploy_docs.yml │ ├── docs_ci.yml │ └── ruff.yml ├── .gitignore ├── .jshintrc ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL.md ├── INSTALL.vagrant.md ├── LICENSE ├── README.md ├── docs ├── 2017-09_Hardwear_io_Slides.pdf ├── 2019-09_Hardwear_io_Slides.pdf └── _config.yml ├── docsrc ├── Makefile ├── README.md ├── _static │ └── css │ │ └── custom.css ├── conf.py ├── doc_dependencies.txt ├── images │ ├── 01_main.png │ ├── 02_upload.png │ ├── 03_firmware_view.png │ ├── 04_users_and_passwords.png │ ├── 05_cve_lookup.png │ ├── 06_binwalk.png │ ├── 07_qemu_exec.png │ ├── 08_compare.png │ ├── 09_system.png │ ├── 10_user_management.png │ ├── 11_advanced_search_result.png │ ├── 12_yara_search.png │ └── FACT_Vulnerability_Hunting.png ├── index.rst ├── main.rst ├── migration.rst └── modules │ ├── analysis.plugin.plugin.rst │ ├── analysis.plugin.rst │ ├── analysis.rst │ ├── config.rst │ ├── conftest.rst │ ├── helperFunctions.compare_sets.rst │ ├── helperFunctions.data_conversion.rst │ ├── helperFunctions.database.rst │ ├── helperFunctions.docker.rst │ ├── helperFunctions.fileSystem.rst │ ├── helperFunctions.hash.rst │ ├── helperFunctions.install.rst │ ├── helperFunctions.logging.rst │ ├── helperFunctions.merge_generators.rst │ ├── helperFunctions.object_conversion.rst │ ├── helperFunctions.pdf.rst │ ├── helperFunctions.plugin.rst │ ├── helperFunctions.process.rst │ ├── helperFunctions.program_setup.rst │ ├── helperFunctions.rst │ ├── helperFunctions.tag.rst │ ├── helperFunctions.task_conversion.rst │ ├── helperFunctions.uid.rst │ ├── helperFunctions.virtual_file_path.rst │ ├── helperFunctions.web_interface.rst │ ├── helperFunctions.yara_binary_search.rst │ ├── objects.file.rst │ ├── objects.firmware.rst │ ├── objects.rst │ ├── plugins.installer.rst │ ├── plugins.rst │ ├── scheduler.analysis.plugin.rst │ ├── scheduler.analysis.rst │ ├── scheduler.analysis.scheduler.rst │ ├── scheduler.rst │ ├── test.rst │ ├── test.unit.conftest.rst │ ├── test.unit.rst │ ├── web_interface.rest.helper.rst │ ├── web_interface.rest.rst │ └── web_interface.rst ├── pyproject.toml └── src ├── alembic.ini ├── analysis ├── PluginBase.py ├── YaraPluginBase.py ├── __init__.py └── plugin │ ├── __init__.py │ ├── addons.py │ ├── compat.py │ └── plugin.py ├── check_signatures.py ├── compare ├── PluginBase.py ├── __init__.py └── compare.py ├── compile_yara_signatures.py ├── config.py ├── config ├── fact-core-config.toml ├── imprint.html ├── migration.cfg ├── mongod.conf ├── nginx.conf └── uwsgi_config.ini ├── conftest.py ├── fact_base.py ├── firmware_import_export.py ├── flask_app_wrapper.py ├── helperFunctions ├── __init__.py ├── compare_sets.py ├── data_conversion.py ├── database.py ├── docker.py ├── fileSystem.py ├── hash.py ├── install.py ├── logging.py ├── magic.py ├── merge_generators.py ├── object_conversion.py ├── pdf.py ├── plugin.py ├── process.py ├── program_setup.py ├── tag.py ├── task_conversion.py ├── uid.py ├── virtual_file_path.py ├── web_interface.py └── yara_binary_search.py ├── init_postgres.py ├── install.py ├── install ├── __init__.py ├── apt-pkgs-backend.txt ├── apt-pkgs-common.txt ├── apt-pkgs-frontend.txt ├── backend.py ├── common.py ├── db.py ├── dnf-pkgs-backend.txt ├── dnf-pkgs-common.txt ├── dnf-pkgs-frontend.txt ├── frontend.py ├── internal_symlink_magic ├── pre_install.sh ├── pre_install_fedora.sh ├── radare │ ├── docker-compose.yml │ └── nginx │ │ ├── Dockerfile │ │ └── nginx.conf ├── requirements_backend.txt ├── requirements_common.txt ├── requirements_frontend.txt └── requirements_pre_install.txt ├── intercom ├── __init__.py ├── back_end_binding.py ├── common_redis_binding.py └── front_end_binding.py ├── manage_users.py ├── migrate_database.py ├── migrate_db_to_postgresql.py ├── objects ├── __init__.py ├── file.py └── firmware.py ├── plugins ├── __init__.py ├── analysis │ ├── __init__.py │ ├── binwalk │ │ ├── __init__.py │ │ ├── apt-pkgs-runtime.txt │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── binwalk.py │ │ ├── dnf-pkgs-runtime.txt │ │ ├── install.py │ │ ├── requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── test_plugin_binwalk.py │ │ └── view │ │ │ └── binwalk.html │ ├── cpu_architecture │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── cpu_architecture.py │ │ ├── dnf-pkgs-runtime.txt │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── install.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── dt.py │ │ │ ├── elf.py │ │ │ ├── kconfig │ │ │ │ ├── __init__.py │ │ │ │ ├── arm.py │ │ │ │ ├── mips.py │ │ │ │ └── utils.py │ │ │ ├── metadata.py │ │ │ └── metadata_detector.py │ │ ├── requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── dt.dts │ │ │ │ ├── hello_world_arm32 │ │ │ │ ├── hello_world_arm64 │ │ │ │ ├── hello_world_mips3 │ │ │ │ └── x86_executable │ │ │ └── test_plugin_cpu_architecture.py │ │ └── view │ │ │ └── cpu_architecture.html │ ├── crypto_hints │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── crypto_hints.py │ │ ├── install.py │ │ ├── signatures │ │ │ └── additional_signatures.yara │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── CRC32_table │ │ │ │ └── additional_rules_test_file │ │ │ └── test_crypto_hints.py │ │ └── view │ │ │ └── crypto_hints.html │ ├── crypto_material │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── crypto_material.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ └── key_parser.py │ │ ├── signatures │ │ │ ├── GnuPg.yara │ │ │ ├── PKCS.yara │ │ │ ├── generic.yara │ │ │ ├── ssh.yara │ │ │ └── ssl.yara │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── 0x6C2DF2C5-pub.asc │ │ │ │ ├── FP_test │ │ │ │ ├── error.der │ │ │ │ ├── generic_public_key │ │ │ │ ├── id_rsa │ │ │ │ ├── id_rsa.pub │ │ │ │ ├── id_rsa_encrypted │ │ │ │ ├── pkcs │ │ │ │ ├── pkcs12 │ │ │ │ ├── pkcs_fp.file │ │ │ │ ├── ssl.crt │ │ │ │ ├── ssl.key │ │ │ │ └── ssl_fp.file │ │ │ └── test_plugin_crypto_material.py │ │ └── view │ │ │ └── crypto_material.html │ ├── cve_lookup │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── cve_lookup.py │ │ ├── install.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── busybox_cve_filter.py │ │ │ ├── data_parsing.py │ │ │ ├── database │ │ │ │ ├── __init__.py │ │ │ │ ├── db_connection.py │ │ │ │ ├── db_interface.py │ │ │ │ ├── db_setup.py │ │ │ │ └── schema.py │ │ │ ├── group_1.txt │ │ │ ├── group_2.txt │ │ │ ├── helper_functions.py │ │ │ └── lookup.py │ │ ├── requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_busybox_cve_filter.py │ │ │ ├── test_cve_lookup.py │ │ │ ├── test_data_parsing.py │ │ │ ├── test_db_interface.py │ │ │ ├── test_db_setup.py │ │ │ ├── test_helper_functions.py │ │ │ ├── test_lookup.py │ │ │ └── test_resources │ │ │ │ └── CVE-2012-0010.json │ │ └── view │ │ │ └── cve_lookup.html │ ├── cwe_checker │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── cwe_checker.py │ │ ├── install.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── cwe_367 │ │ │ └── test_cwe_checker.py │ │ └── view │ │ │ └── cwe_checker.html │ ├── device_tree │ │ ├── __init__.py │ │ ├── apt-pkgs-runtime.txt │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── device_tree.py │ │ ├── install.py │ │ ├── internal │ │ │ ├── device_tree_utils.py │ │ │ └── schema.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── broken.dtb │ │ │ │ ├── device_tree.dtb │ │ │ │ ├── dt_embed_test.dtb │ │ │ │ ├── dtb_inside.image │ │ │ │ └── false_positive.rnd │ │ │ └── test_device_tree.py │ │ └── view │ │ │ └── device_tree.html │ ├── dummy │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── dummy.py │ │ └── routes │ │ │ ├── __init__.py │ │ │ └── routes.py │ ├── elf_analysis │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── elf_analysis.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ └── matching_template.json │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── test_data.ko │ │ │ │ └── x-pie-executable │ │ │ └── test_plugin_elf_analysis.py │ │ └── view │ │ │ └── elf_analysis.html │ ├── example_plugin │ │ ├── __init__.py │ │ └── code │ │ │ ├── __init__.py │ │ │ └── example_plugin.py │ ├── exploit_mitigations │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── exploit_mitigations.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── Hallo.o │ │ │ │ ├── Hallo.out │ │ │ │ ├── Hallo.so │ │ │ │ ├── Hallo_Canary │ │ │ │ ├── Hallo_SafeStack │ │ │ │ ├── Hallo_cfi │ │ │ │ ├── Hallo_no_pie │ │ │ │ ├── Hallo_rpath │ │ │ │ ├── Hallo_runpath │ │ │ │ └── Hallo_stripped │ │ │ └── test_plugin_exploit_mitigations.py │ │ └── view │ │ │ └── exploit_mitigations.html │ ├── file_system_metadata │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── file_system_metadata.py │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ └── mount.py │ │ ├── install.py │ │ ├── routes │ │ │ ├── __init__.py │ │ │ ├── ajax_view.html │ │ │ └── routes.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── broken.tar.gz │ │ │ │ ├── squashfs.img │ │ │ │ ├── test.tar │ │ │ │ ├── test.tar.bz2 │ │ │ │ └── test.tar.gz │ │ │ ├── test_file_system_metadata_routes.py │ │ │ └── test_plugin_file_system_metadata.py │ │ └── view │ │ │ └── file_system_metadata.html │ ├── file_type │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── file_type.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── test_plugin_file_type.py │ │ └── view │ │ │ └── file_type.html │ ├── hash │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── hash.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── ls │ │ │ └── test_plugin_hash.py │ │ └── view │ │ │ └── hash.html │ ├── hashlookup │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── hashlookup.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_hashlookup.py │ ├── information_leaks │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── information_leaks.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── path_test_file │ │ │ └── test_plugin_information_leaks.py │ │ └── view │ │ │ └── information_leaks.html │ ├── init_systems │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── init_system.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── etc │ │ │ │ │ ├── init.d │ │ │ │ │ ├── README │ │ │ │ │ └── skeleton │ │ │ │ │ ├── init │ │ │ │ │ └── baz.conf │ │ │ │ │ ├── initscript │ │ │ │ │ ├── inittab │ │ │ │ │ ├── inittab.invalid │ │ │ │ │ ├── rc.local │ │ │ │ │ ├── service │ │ │ │ │ ├── example │ │ │ │ │ └── lighttpd │ │ │ │ │ │ └── run │ │ │ │ │ ├── sv │ │ │ │ │ └── example │ │ │ │ │ │ └── run │ │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── foobar │ │ │ └── test_plugin_init_system.py │ │ └── view │ │ │ └── init_system.html │ ├── input_vectors │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── input_vectors.py │ │ ├── install.py │ │ ├── internal │ │ │ ├── config.json │ │ │ └── input_vectors_r2.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── test_domain.elf │ │ │ │ └── test_fgets.elf │ │ │ └── test_input_vectors.py │ │ └── view │ │ │ └── input_vectors.html │ ├── ip_and_uri_finder │ │ ├── __init__.py │ │ ├── code │ │ │ └── ip_and_uri_finder.py │ │ ├── install.py │ │ ├── internal │ │ │ └── interesting_uris.py │ │ ├── requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_interesting_uris.py │ │ │ └── test_ip_and_uri_finder.py │ │ └── view │ │ │ └── ip_and_uri_finder.html │ ├── ipc │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── ipc_analyzer.py │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── ghidra_headless.py │ │ │ └── ipc_analyzer │ │ │ │ ├── __init__.py │ │ │ │ ├── headless_prescript.py │ │ │ │ ├── ipc_analysis │ │ │ │ ├── __init__.py │ │ │ │ ├── analyze.py │ │ │ │ ├── decompile.py │ │ │ │ └── helper_functions.py │ │ │ │ ├── ipc_analyzer.py │ │ │ │ └── resolve_format_strings │ │ │ │ ├── __init__.py │ │ │ │ └── format_strings.py │ │ ├── install.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── ipc_shared_files_test_bin │ │ │ │ ├── ipc_shared_files_test_bin.c │ │ │ │ ├── ipc_system_test_bin │ │ │ │ └── ipc_system_test_bin.c │ │ │ └── test_ipc_analyzer.py │ │ └── view │ │ │ └── ipc_analyzer.html │ ├── kernel_config │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── kernel_config.py │ │ ├── install.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── checksec_check_kernel.py │ │ │ ├── decomp.py │ │ │ └── kernel_config_hardening_check.py │ │ ├── requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── configs │ │ │ │ │ ├── CONFIG │ │ │ │ │ ├── CONFIG.gz │ │ │ │ │ ├── CONFIG_MAGIC │ │ │ │ │ ├── CONFIG_MAGIC_CORRUPT │ │ │ │ │ └── old_config_build_file │ │ │ │ ├── random_invalid │ │ │ │ │ ├── a.image │ │ │ │ │ ├── b.image │ │ │ │ │ ├── c.image │ │ │ │ │ └── d.image │ │ │ │ └── synthetic │ │ │ │ │ ├── configs.ko │ │ │ │ │ ├── configs.ko.corrupted │ │ │ │ │ ├── gz.image │ │ │ │ │ ├── ko_failure │ │ │ │ │ └── configs.ko │ │ │ │ │ └── plain.image │ │ │ └── test_kernel_config.py │ │ └── view │ │ │ └── kernel_config.html │ ├── known_vulnerabilities │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── known_vulnerabilities.py │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ │ ├── README.md │ │ │ │ └── detect_CVE-2021-45608.py │ │ ├── install.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ └── rulebook.py │ │ ├── signatures │ │ │ └── vulnerabilities.yara │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── empty │ │ │ │ ├── netusb_not_vulnerable.elf │ │ │ │ ├── netusb_vulnerable.elf │ │ │ │ ├── sc.json │ │ │ │ ├── testfile │ │ │ │ └── xz_backdoor_test_file │ │ │ ├── test_known_vulnerabilities.py │ │ │ ├── test_rulebook.py │ │ │ └── test_vulnerabilities.py │ │ └── view │ │ │ └── known_vulnerabilities.html │ ├── linter │ │ ├── __init__.py │ │ ├── apt-pkgs-runtime.txt │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── source_code_analysis.py │ │ ├── dnf-pkgs-runtime.txt │ │ ├── install.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ │ ├── eslintrc.js │ │ │ │ └── luacheckrc │ │ │ └── linters.py │ │ ├── requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── file │ │ │ │ ├── hello_world.js │ │ │ │ ├── hello_world.php │ │ │ │ ├── hello_world.py │ │ │ │ ├── hello_world.ruby │ │ │ │ ├── hello_world.sh │ │ │ │ └── hello_world_ruby │ │ │ ├── test_js_linter.py │ │ │ ├── test_lua_linter.py │ │ │ ├── test_php_linter.py │ │ │ ├── test_python_linter.py │ │ │ ├── test_ruby_linter.py │ │ │ ├── test_shell_linter.py │ │ │ └── test_source_code_analysis.py │ │ └── view │ │ │ └── source_code_analysis.html │ ├── qemu_exec │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── qemu_exec.py │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ └── start_binary.py │ │ ├── install.py │ │ ├── routes │ │ │ ├── __init__.py │ │ │ ├── ajax_view.html │ │ │ └── routes.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── other_architectures │ │ │ │ │ ├── test_arm_static │ │ │ │ │ └── test_ppc_static │ │ │ │ ├── test_tmp_dir │ │ │ │ │ ├── test_mips_static │ │ │ │ │ └── usr │ │ │ │ │ │ └── bin │ │ │ │ │ │ ├── link_symbolic │ │ │ │ │ │ └── test_mips │ │ │ │ └── test_tmp_dir_2 │ │ │ │ │ └── fact_extracted │ │ │ │ │ └── usr │ │ │ │ │ └── bin │ │ │ │ │ └── test_mips │ │ │ ├── test_plugin_qemu_exec.py │ │ │ └── test_routes.py │ │ └── view │ │ │ └── qemu_exec.html │ ├── software_components │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── software_components.py │ │ ├── install.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── extract_os_names.py │ │ │ └── resolve_version_format_string.py │ │ ├── signatures │ │ │ ├── 00_meta_filter.yara │ │ │ ├── bootloader.yara │ │ │ ├── crypto.yara │ │ │ ├── database.yara │ │ │ ├── http_server.yara │ │ │ ├── kernel_modules.yara │ │ │ ├── lib.yara │ │ │ ├── network.yara │ │ │ ├── os.yara │ │ │ ├── phone_modem.yara │ │ │ ├── software.yara │ │ │ ├── uefi.yara │ │ │ ├── vendor_specific_hp.yara │ │ │ ├── vendor_specific_netgear.yara │ │ │ └── yara_test_rules.yara │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── fake-liblzma │ │ │ │ ├── format_string_arm-linux-gnueabihf │ │ │ │ ├── signatures │ │ │ │ │ ├── test_signature.yara │ │ │ │ │ └── test_signatures_wo_meta.yara │ │ │ │ ├── software_component_test_list.txt │ │ │ │ └── yara_test_file │ │ │ ├── test_plugin_software_components.py │ │ │ ├── test_plugin_software_components_signatures.py │ │ │ ├── test_resolve_version_format_string.py │ │ │ └── test_scan_signatures.py │ │ └── view │ │ │ └── software_components.html │ ├── strings │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── strings.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ └── string_eval.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── string_find_test_file2 │ │ │ │ └── string_find_test_file_no_strings │ │ │ ├── test_plugin_strings.py │ │ │ └── test_string_eval.py │ │ └── view │ │ │ └── printable_strings.html │ └── users_and_passwords │ │ ├── __init__.py │ │ ├── code │ │ ├── __init__.py │ │ └── password_file_analyzer.py │ │ ├── docker │ │ ├── Dockerfile │ │ └── entry.sh │ │ ├── install.py │ │ ├── internal │ │ ├── __init__.py │ │ ├── crack_password.py │ │ └── credentials_finder.py │ │ ├── requirements.txt │ │ ├── test │ │ ├── __init__.py │ │ ├── data │ │ │ ├── passwd.bin │ │ │ ├── passwd_FP_test │ │ │ └── passwd_test │ │ └── test_plugin_password_file_analyzer.py │ │ └── view │ │ └── users_and_passwords.html ├── base.py ├── compare │ ├── __init__.py │ ├── file_coverage │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── file_coverage.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── test_plugin_file_coverage.py │ │ └── view │ │ │ └── file_coverage.html │ ├── file_header │ │ ├── __init__.py │ │ ├── code │ │ │ ├── __init__.py │ │ │ └── file_header.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── test_file_header.py │ │ └── view │ │ │ └── file_header.html │ └── software │ │ ├── __init__.py │ │ ├── code │ │ ├── __init__.py │ │ └── software.py │ │ └── test │ │ ├── __init__.py │ │ └── test_plugin_software.py ├── installer.py └── mime_blacklists.py ├── scheduler ├── __init__.py ├── analysis │ ├── __init__.py │ ├── plugin.py │ └── scheduler.py ├── analysis_status.py ├── comparison_scheduler.py ├── task_scheduler.py └── unpacking_scheduler.py ├── start_fact.py ├── start_fact_backend.py ├── start_fact_database.py ├── start_fact_frontend.py ├── statistic ├── __init__.py ├── analysis_stats.py ├── time_stats.py ├── update.py └── work_load.py ├── storage ├── __init__.py ├── binary_service.py ├── db_connection.py ├── db_interface_admin.py ├── db_interface_backend.py ├── db_interface_base.py ├── db_interface_common.py ├── db_interface_comparison.py ├── db_interface_frontend.py ├── db_interface_frontend_editing.py ├── db_interface_stats.py ├── db_interface_view_sync.py ├── db_setup.py ├── entry_conversion.py ├── fsorganizer.py ├── graphql │ ├── __init__.py │ ├── hasura │ │ ├── __init__.py │ │ ├── docker-compose.base.yml │ │ ├── docker-compose.yaml │ │ ├── init_hasura.py │ │ └── restart.py │ ├── interface.py │ └── util.py ├── migration │ ├── __init__.py │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 05d8effce8b3_add_gin_index_to_analysis_result.py │ │ ├── 221cfef47173_added_oncascade_delte_for_foreign_keys.py │ │ ├── 6a1c50ade0f3_added_docstrings.py │ │ ├── 70ae1212bc03_create_indexes.py │ │ ├── 81a549a2be95_added_matching_strings_to_binary_search_.py │ │ └── a1312300d62d_add_vfp_table.py ├── query_conversion.py ├── redis_interface.py ├── redis_status_interface.py ├── schema.py └── unpacking_locks.py ├── test ├── __init__.py ├── acceptance │ ├── __init__.py │ ├── conftest.py │ ├── rest │ │ ├── __init__.py │ │ ├── test_rest_analyze_firmware.py │ │ ├── test_rest_binary_search.py │ │ ├── test_rest_compare.py │ │ ├── test_rest_download.py │ │ └── test_rest_statistic.py │ ├── run_scripts │ │ ├── __init__.py │ │ └── test_run_scripts.py │ ├── test_advanced_search.py │ ├── test_authenticated_gui.py │ ├── test_binary_search.py │ ├── test_compare_firmwares.py │ ├── test_file_download.py │ ├── test_io_routes.py │ ├── test_misc.py │ ├── test_search.py │ └── test_upload_analyze_delete_firmware.py ├── common_helper.py ├── conftest.py ├── data │ ├── __init__.py │ ├── binary_search_test │ │ ├── bi │ │ │ ├── binary_search_test_2 │ │ │ └── binary_search_test_3 │ │ └── binary_search_test │ ├── binwalk.out │ ├── broken_link │ ├── container │ │ ├── broken.zip │ │ ├── test.7z │ │ ├── test.cab │ │ ├── test.zip │ │ ├── test_zip.7z │ │ └── with_key.7z │ ├── files │ │ ├── get_files_test │ │ └── zero_byte │ ├── generic_carver_test │ ├── get_files_test │ │ ├── generic folder │ │ │ └── test file 3_.txt │ │ ├── testfile1 │ │ └── testfile2 │ ├── helperFunctions │ │ └── ros_header │ ├── logs_frontend │ ├── plugin_system │ │ └── plugins │ │ │ └── analysis │ │ │ ├── __init__.py │ │ │ ├── crashes_during_import │ │ │ ├── __init__.py │ │ │ └── code │ │ │ │ ├── __init__.py │ │ │ │ └── plugin_one.py │ │ │ ├── crashes_during_instantiation │ │ │ ├── __init__.py │ │ │ └── code │ │ │ │ ├── __init__.py │ │ │ │ └── plugin_one.py │ │ │ ├── none_valid_plugin │ │ │ └── no_code_in_here │ │ │ ├── plugin_one │ │ │ ├── __init__.py │ │ │ └── code │ │ │ │ ├── __init__.py │ │ │ │ └── plugin_one.py │ │ │ └── plugin_two │ │ │ ├── __init__.py │ │ │ └── code │ │ │ └── __init__.py │ ├── regression_one │ ├── regression_two │ ├── symbolic_link_representation │ ├── test_data_file.bin │ ├── test_executable │ ├── user_test.db │ ├── version_string_finder_testfile │ ├── vfp_test.zip │ ├── yara_binary_search_test_rule │ ├── yara_magic.yara │ ├── yara_matches │ ├── yara_test_file │ └── zero_byte ├── integration │ ├── __init__.py │ ├── common.py │ ├── conftest.py │ ├── helperFunctions │ │ ├── __init__.py │ │ └── test_pdf.py │ ├── intercom │ │ ├── __init__.py │ │ ├── test_backend_scheduler.py │ │ ├── test_intercom_common.py │ │ ├── test_intercom_delete_file.py │ │ └── test_task_communication.py │ ├── run_scripts │ │ ├── __init__.py │ │ └── test_import_export.py │ ├── scheduler │ │ ├── __init__.py │ │ ├── test_cycle_with_tags.py │ │ ├── test_regression_virtual_file_path.py │ │ ├── test_unpack_analyse_and_compare.py │ │ ├── test_unpack_and_analyse.py │ │ └── test_unpack_only.py │ ├── statistic │ │ ├── __init__.py │ │ ├── test_update.py │ │ └── test_work_load.py │ ├── storage │ │ ├── __init__.py │ │ ├── helper.py │ │ ├── test_binary_service.py │ │ ├── test_db_interface_admin.py │ │ ├── test_db_interface_backend.py │ │ ├── test_db_interface_common.py │ │ ├── test_db_interface_comparison.py │ │ ├── test_db_interface_frontend.py │ │ ├── test_db_interface_frontend_editing.py │ │ ├── test_db_interface_stats.py │ │ ├── test_db_interface_view_sync.py │ │ ├── test_db_setup.py │ │ ├── test_graphql_interface.py │ │ ├── test_redis_interface.py │ │ └── test_redis_status_interface.py │ └── web_interface │ │ ├── __init__.py │ │ ├── rest │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_rest_analysis.py │ │ ├── test_rest_binary.py │ │ ├── test_rest_compare.py │ │ ├── test_rest_file_object.py │ │ ├── test_rest_firmware.py │ │ ├── test_rest_missing_analyses.py │ │ └── test_rest_statistics.py │ │ └── test_filter.py ├── mock.py ├── unit │ ├── __init__.py │ ├── analysis │ │ ├── __init__.py │ │ ├── test.yara │ │ ├── test_addons_yara.py │ │ ├── test_plugin_base.py │ │ └── test_yara_plugin_base.py │ ├── compare │ │ ├── __init__.py │ │ ├── compare_plugin_test_class.py │ │ ├── test_compare.py │ │ └── test_plugin_base.py │ ├── conftest.py │ ├── helperFunctions │ │ ├── __init__.py │ │ ├── test_compare_sets.py │ │ ├── test_data_conversion.py │ │ ├── test_file_system.py │ │ ├── test_hash.py │ │ ├── test_install.py │ │ ├── test_logging.py │ │ ├── test_magic.py │ │ ├── test_object_conversion.py │ │ ├── test_pdf.py │ │ ├── test_pkglist.txt │ │ ├── test_plugin.py │ │ ├── test_process.py │ │ ├── test_program_setup.py │ │ ├── test_tag.py │ │ ├── test_task_conversion.py │ │ ├── test_uid.py │ │ ├── test_virtual_file_path.py │ │ ├── test_web_interface.py │ │ └── test_yara_binary_search.py │ ├── objects │ │ ├── __init__.py │ │ ├── test_file.py │ │ └── test_firmware.py │ ├── scheduler │ │ ├── __init__.py │ │ ├── test_analysis.py │ │ ├── test_analysis_status.py │ │ ├── test_compare.py │ │ ├── test_task_scheduler.py │ │ └── test_unpack.py │ ├── statistic │ │ ├── test_analysis_stats.py │ │ └── test_time_stats.py │ ├── storage │ │ ├── __init__.py │ │ ├── test_entry_conversion.py │ │ └── test_fs_organizer.py │ ├── test_config.py │ ├── test_manage_users.py │ ├── unpacker │ │ ├── __init__.py │ │ ├── test_tar_repack.py │ │ └── test_unpacker.py │ └── web_interface │ │ ├── __init__.py │ │ ├── rest │ │ ├── __init__.py │ │ ├── test_helper.py │ │ ├── test_rest_analysis.py │ │ ├── test_rest_binary.py │ │ ├── test_rest_binary_search.py │ │ ├── test_rest_compare.py │ │ ├── test_rest_file_object.py │ │ ├── test_rest_firmware.py │ │ ├── test_rest_missing.py │ │ └── test_rest_status.py │ │ ├── security │ │ ├── __init__.py │ │ ├── test_user_role_db_interface.py │ │ └── test_validators.py │ │ ├── test_ajax_routes.py │ │ ├── test_app_add_comment.py │ │ ├── test_app_advanced_search.py │ │ ├── test_app_ajax_routes.py │ │ ├── test_app_binary_search.py │ │ ├── test_app_browse_binary_search_history.py │ │ ├── test_app_compare.py │ │ ├── test_app_comparison_basket.py │ │ ├── test_app_comparison_text_files.py │ │ ├── test_app_dependency_graph.py │ │ ├── test_app_download.py │ │ ├── test_app_find_logs.py │ │ ├── test_app_jinja_filter.py │ │ ├── test_app_jinja_filter_static.py │ │ ├── test_app_missing_analyses.py │ │ ├── test_app_re_analyze.py │ │ ├── test_app_show_analysis.py │ │ ├── test_app_show_statistic.py │ │ ├── test_app_static.py │ │ ├── test_app_upload.py │ │ ├── test_app_user_management_routes.py │ │ ├── test_comparison_routes.py │ │ ├── test_dependency_graph.py │ │ ├── test_file_tree.py │ │ ├── test_filter.py │ │ ├── test_hex_highlighting.py │ │ ├── test_plugin_routes.py │ │ └── test_quick_search.py └── yara_signature_testing.py ├── unpacker ├── __init__.py ├── extraction_container.py ├── tar_repack.py ├── unpack.py └── unpack_base.py ├── update_statistic.py ├── version.py └── web_interface ├── __init__.py ├── app.py ├── components ├── __init__.py ├── ajax_routes.py ├── analysis_routes.py ├── compare_routes.py ├── component_base.py ├── database_routes.py ├── dependency_graph.py ├── hex_highlighting.py ├── io_routes.py ├── jinja_filter.py ├── miscellaneous_routes.py ├── plugin_routes.py ├── statistic_routes.py └── user_management_routes.py ├── file_tree ├── __init__.py ├── file_tree.py ├── file_tree_node.py └── jstree_conversion.py ├── filter.py ├── frontend_database.py ├── frontend_main.py ├── pagination.py ├── rest ├── __init__.py ├── helper.py ├── rest_analysis.py ├── rest_base.py ├── rest_binary.py ├── rest_binary_search.py ├── rest_compare.py ├── rest_file_object.py ├── rest_firmware.py ├── rest_missing_analyses.py ├── rest_resource_base.py ├── rest_statistics.py └── rest_status.py ├── security ├── __init__.py ├── authentication.py ├── decorator.py ├── privileges.py ├── terminal_validators.py └── user_role_db_interface.py ├── static ├── Colorcoding0.png ├── Colorcoding1.png ├── Colorcoding2.png ├── Colorcoding3.png ├── Colorcoding4.png ├── FACT_smaller.png ├── Pacman.gif ├── css │ ├── base.css │ ├── code_pre.css │ ├── dependency_graph.css │ ├── home.css │ ├── pagination.css │ └── upload.css ├── fact_button.svg ├── fact_icon.ico ├── fact_icon.svg ├── fact_logo.png ├── fact_logo.svg ├── fact_logo_inv.svg ├── fact_logo_invertible.svg ├── js │ ├── advanced_search.js │ ├── dark_mode.js │ ├── dependency_graph.js │ ├── fact_statistics.js │ ├── file_tree.js │ ├── loading.js │ ├── quick_search.js │ ├── show_analysis_fileTreeAjax.js │ ├── show_analysis_preview.js │ ├── show_analysis_single_update.js │ ├── show_analysis_summary.js │ ├── start_compare.js │ ├── system_health.js │ ├── update_url_variables.js │ └── upload.js ├── package-lock.json └── package.json └── templates ├── about.html ├── analysis_plugins ├── fail.html ├── general_information.html ├── generic.html └── unpacker.html ├── base.html ├── compare ├── compare.html ├── error.html ├── text_files.html └── wait.html ├── database ├── compare_browse.html ├── database_advanced_search.html ├── database_binary_search.html ├── database_binary_search_history.html ├── database_binary_search_results.html ├── database_browse.html ├── database_graphql.html └── database_search.html ├── delete_firmware.html ├── dependency_graph.html ├── error.html ├── find_missing_analyses.html ├── generic_view ├── collapsed_list.html ├── file_object_macros.html ├── nice_fo_list.html └── tags.html ├── home.html ├── imprint.html ├── logs.html ├── macros.html ├── maintenance.html ├── plugins.html ├── security ├── _macros.html ├── login_user.html └── send_login.html ├── show_analysis.html ├── show_analysis ├── button_groups.j2 ├── comments.j2 ├── comparison.j2 ├── file_tree.j2 ├── general_info_table.j2 ├── preview.j2 └── select_analysis.j2 ├── show_statistic.html ├── summary.html ├── system_health.html ├── uid_not_found.html ├── upload ├── upload.html └── upload_successful.html └── user_management ├── edit_user.html ├── manage_users.html └── user_profile.html /.bettercodehub.yml: -------------------------------------------------------------------------------- 1 | component_depth: 2 2 | languages: 3 | - python 4 | exclude: 5 | - /src/bin/.* 6 | -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/workflows/build_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.github/workflows/build_ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.github/workflows/deploy_docs.yml -------------------------------------------------------------------------------- /.github/workflows/docs_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.github/workflows/docs_ci.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 9 3 | } 4 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/INSTALL.md -------------------------------------------------------------------------------- /INSTALL.vagrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/INSTALL.vagrant.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/README.md -------------------------------------------------------------------------------- /docs/2017-09_Hardwear_io_Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docs/2017-09_Hardwear_io_Slides.pdf -------------------------------------------------------------------------------- /docs/2019-09_Hardwear_io_Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docs/2019-09_Hardwear_io_Slides.pdf -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docsrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/Makefile -------------------------------------------------------------------------------- /docsrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/README.md -------------------------------------------------------------------------------- /docsrc/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | .wy-side-nav-search { 2 | background-color: #2a4640 3 | } 4 | -------------------------------------------------------------------------------- /docsrc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/conf.py -------------------------------------------------------------------------------- /docsrc/doc_dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/doc_dependencies.txt -------------------------------------------------------------------------------- /docsrc/images/01_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/01_main.png -------------------------------------------------------------------------------- /docsrc/images/02_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/02_upload.png -------------------------------------------------------------------------------- /docsrc/images/03_firmware_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/03_firmware_view.png -------------------------------------------------------------------------------- /docsrc/images/04_users_and_passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/04_users_and_passwords.png -------------------------------------------------------------------------------- /docsrc/images/05_cve_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/05_cve_lookup.png -------------------------------------------------------------------------------- /docsrc/images/06_binwalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/06_binwalk.png -------------------------------------------------------------------------------- /docsrc/images/07_qemu_exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/07_qemu_exec.png -------------------------------------------------------------------------------- /docsrc/images/08_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/08_compare.png -------------------------------------------------------------------------------- /docsrc/images/09_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/09_system.png -------------------------------------------------------------------------------- /docsrc/images/10_user_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/10_user_management.png -------------------------------------------------------------------------------- /docsrc/images/11_advanced_search_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/11_advanced_search_result.png -------------------------------------------------------------------------------- /docsrc/images/12_yara_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/12_yara_search.png -------------------------------------------------------------------------------- /docsrc/images/FACT_Vulnerability_Hunting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/images/FACT_Vulnerability_Hunting.png -------------------------------------------------------------------------------- /docsrc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/index.rst -------------------------------------------------------------------------------- /docsrc/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/main.rst -------------------------------------------------------------------------------- /docsrc/migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/migration.rst -------------------------------------------------------------------------------- /docsrc/modules/analysis.plugin.plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/analysis.plugin.plugin.rst -------------------------------------------------------------------------------- /docsrc/modules/analysis.plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/analysis.plugin.rst -------------------------------------------------------------------------------- /docsrc/modules/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/analysis.rst -------------------------------------------------------------------------------- /docsrc/modules/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/config.rst -------------------------------------------------------------------------------- /docsrc/modules/conftest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/conftest.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.compare_sets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.compare_sets.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.data_conversion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.data_conversion.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.database.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.docker.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.fileSystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.fileSystem.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.hash.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.install.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.logging.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.merge_generators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.merge_generators.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.object_conversion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.object_conversion.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.pdf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.pdf.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.plugin.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.process.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.program_setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.program_setup.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.tag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.tag.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.task_conversion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.task_conversion.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.uid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.uid.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.virtual_file_path.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.virtual_file_path.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.web_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.web_interface.rst -------------------------------------------------------------------------------- /docsrc/modules/helperFunctions.yara_binary_search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/helperFunctions.yara_binary_search.rst -------------------------------------------------------------------------------- /docsrc/modules/objects.file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/objects.file.rst -------------------------------------------------------------------------------- /docsrc/modules/objects.firmware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/objects.firmware.rst -------------------------------------------------------------------------------- /docsrc/modules/objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/objects.rst -------------------------------------------------------------------------------- /docsrc/modules/plugins.installer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/plugins.installer.rst -------------------------------------------------------------------------------- /docsrc/modules/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/plugins.rst -------------------------------------------------------------------------------- /docsrc/modules/scheduler.analysis.plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/scheduler.analysis.plugin.rst -------------------------------------------------------------------------------- /docsrc/modules/scheduler.analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/scheduler.analysis.rst -------------------------------------------------------------------------------- /docsrc/modules/scheduler.analysis.scheduler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/scheduler.analysis.scheduler.rst -------------------------------------------------------------------------------- /docsrc/modules/scheduler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/scheduler.rst -------------------------------------------------------------------------------- /docsrc/modules/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/test.rst -------------------------------------------------------------------------------- /docsrc/modules/test.unit.conftest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/test.unit.conftest.rst -------------------------------------------------------------------------------- /docsrc/modules/test.unit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/test.unit.rst -------------------------------------------------------------------------------- /docsrc/modules/web_interface.rest.helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/web_interface.rest.helper.rst -------------------------------------------------------------------------------- /docsrc/modules/web_interface.rest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/web_interface.rest.rst -------------------------------------------------------------------------------- /docsrc/modules/web_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/docsrc/modules/web_interface.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/alembic.ini -------------------------------------------------------------------------------- /src/analysis/PluginBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/analysis/PluginBase.py -------------------------------------------------------------------------------- /src/analysis/YaraPluginBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/analysis/YaraPluginBase.py -------------------------------------------------------------------------------- /src/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/analysis/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/analysis/plugin/__init__.py -------------------------------------------------------------------------------- /src/analysis/plugin/addons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/analysis/plugin/addons.py -------------------------------------------------------------------------------- /src/analysis/plugin/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/analysis/plugin/compat.py -------------------------------------------------------------------------------- /src/analysis/plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/analysis/plugin/plugin.py -------------------------------------------------------------------------------- /src/check_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/check_signatures.py -------------------------------------------------------------------------------- /src/compare/PluginBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/compare/PluginBase.py -------------------------------------------------------------------------------- /src/compare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compare/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/compare/compare.py -------------------------------------------------------------------------------- /src/compile_yara_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/compile_yara_signatures.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/config.py -------------------------------------------------------------------------------- /src/config/fact-core-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/config/fact-core-config.toml -------------------------------------------------------------------------------- /src/config/imprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/config/imprint.html -------------------------------------------------------------------------------- /src/config/migration.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/config/migration.cfg -------------------------------------------------------------------------------- /src/config/mongod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/config/mongod.conf -------------------------------------------------------------------------------- /src/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/config/nginx.conf -------------------------------------------------------------------------------- /src/config/uwsgi_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/config/uwsgi_config.ini -------------------------------------------------------------------------------- /src/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/conftest.py -------------------------------------------------------------------------------- /src/fact_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/fact_base.py -------------------------------------------------------------------------------- /src/firmware_import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/firmware_import_export.py -------------------------------------------------------------------------------- /src/flask_app_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/flask_app_wrapper.py -------------------------------------------------------------------------------- /src/helperFunctions/__init__.py: -------------------------------------------------------------------------------- 1 | # noqa: N999 2 | -------------------------------------------------------------------------------- /src/helperFunctions/compare_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/compare_sets.py -------------------------------------------------------------------------------- /src/helperFunctions/data_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/data_conversion.py -------------------------------------------------------------------------------- /src/helperFunctions/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/database.py -------------------------------------------------------------------------------- /src/helperFunctions/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/docker.py -------------------------------------------------------------------------------- /src/helperFunctions/fileSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/fileSystem.py -------------------------------------------------------------------------------- /src/helperFunctions/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/hash.py -------------------------------------------------------------------------------- /src/helperFunctions/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/install.py -------------------------------------------------------------------------------- /src/helperFunctions/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/logging.py -------------------------------------------------------------------------------- /src/helperFunctions/magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/magic.py -------------------------------------------------------------------------------- /src/helperFunctions/merge_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/merge_generators.py -------------------------------------------------------------------------------- /src/helperFunctions/object_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/object_conversion.py -------------------------------------------------------------------------------- /src/helperFunctions/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/pdf.py -------------------------------------------------------------------------------- /src/helperFunctions/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/plugin.py -------------------------------------------------------------------------------- /src/helperFunctions/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/process.py -------------------------------------------------------------------------------- /src/helperFunctions/program_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/program_setup.py -------------------------------------------------------------------------------- /src/helperFunctions/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/tag.py -------------------------------------------------------------------------------- /src/helperFunctions/task_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/task_conversion.py -------------------------------------------------------------------------------- /src/helperFunctions/uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/uid.py -------------------------------------------------------------------------------- /src/helperFunctions/virtual_file_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/virtual_file_path.py -------------------------------------------------------------------------------- /src/helperFunctions/web_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/web_interface.py -------------------------------------------------------------------------------- /src/helperFunctions/yara_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/helperFunctions/yara_binary_search.py -------------------------------------------------------------------------------- /src/init_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/init_postgres.py -------------------------------------------------------------------------------- /src/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install.py -------------------------------------------------------------------------------- /src/install/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/install/apt-pkgs-backend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/apt-pkgs-backend.txt -------------------------------------------------------------------------------- /src/install/apt-pkgs-common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/apt-pkgs-common.txt -------------------------------------------------------------------------------- /src/install/apt-pkgs-frontend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/apt-pkgs-frontend.txt -------------------------------------------------------------------------------- /src/install/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/backend.py -------------------------------------------------------------------------------- /src/install/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/common.py -------------------------------------------------------------------------------- /src/install/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/db.py -------------------------------------------------------------------------------- /src/install/dnf-pkgs-backend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/dnf-pkgs-backend.txt -------------------------------------------------------------------------------- /src/install/dnf-pkgs-common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/dnf-pkgs-common.txt -------------------------------------------------------------------------------- /src/install/dnf-pkgs-frontend.txt: -------------------------------------------------------------------------------- 1 | npm 2 | -------------------------------------------------------------------------------- /src/install/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/frontend.py -------------------------------------------------------------------------------- /src/install/internal_symlink_magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/internal_symlink_magic -------------------------------------------------------------------------------- /src/install/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/pre_install.sh -------------------------------------------------------------------------------- /src/install/pre_install_fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/pre_install_fedora.sh -------------------------------------------------------------------------------- /src/install/radare/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/radare/docker-compose.yml -------------------------------------------------------------------------------- /src/install/radare/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/radare/nginx/Dockerfile -------------------------------------------------------------------------------- /src/install/radare/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/radare/nginx/nginx.conf -------------------------------------------------------------------------------- /src/install/requirements_backend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/requirements_backend.txt -------------------------------------------------------------------------------- /src/install/requirements_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/requirements_common.txt -------------------------------------------------------------------------------- /src/install/requirements_frontend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/requirements_frontend.txt -------------------------------------------------------------------------------- /src/install/requirements_pre_install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/install/requirements_pre_install.txt -------------------------------------------------------------------------------- /src/intercom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/intercom/back_end_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/intercom/back_end_binding.py -------------------------------------------------------------------------------- /src/intercom/common_redis_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/intercom/common_redis_binding.py -------------------------------------------------------------------------------- /src/intercom/front_end_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/intercom/front_end_binding.py -------------------------------------------------------------------------------- /src/manage_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/manage_users.py -------------------------------------------------------------------------------- /src/migrate_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/migrate_database.py -------------------------------------------------------------------------------- /src/migrate_db_to_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/migrate_db_to_postgresql.py -------------------------------------------------------------------------------- /src/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/objects/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/objects/file.py -------------------------------------------------------------------------------- /src/objects/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/objects/firmware.py -------------------------------------------------------------------------------- /src/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/apt-pkgs-runtime.txt: -------------------------------------------------------------------------------- 1 | xvfb 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/code/binwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/binwalk/code/binwalk.py -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/dnf-pkgs-runtime.txt: -------------------------------------------------------------------------------- 1 | xorg-x11-server-Xvfb 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/binwalk/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/binwalk/requirements.txt -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/test/test_plugin_binwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/binwalk/test/test_plugin_binwalk.py -------------------------------------------------------------------------------- /src/plugins/analysis/binwalk/view/binwalk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/binwalk/view/binwalk.html -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/code/cpu_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/code/cpu_architecture.py -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/dnf-pkgs-runtime.txt: -------------------------------------------------------------------------------- 1 | dtc 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/docker/Dockerfile -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/internal/dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/internal/dt.py -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/internal/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/internal/elf.py -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/internal/kconfig/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/internal/kconfig/arm.py -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/internal/kconfig/mips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/internal/kconfig/mips.py -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/internal/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/internal/metadata.py -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/requirements.txt: -------------------------------------------------------------------------------- 1 | pyelftools==0.29 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/test/data/dt.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/test/data/dt.dts -------------------------------------------------------------------------------- /src/plugins/analysis/cpu_architecture/test/data/x86_executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cpu_architecture/test/data/x86_executable -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/code/crypto_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_hints/code/crypto_hints.py -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_hints/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/test/data/CRC32_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_hints/test/data/CRC32_table -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/test/test_crypto_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_hints/test/test_crypto_hints.py -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_hints/view/crypto_hints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_hints/view/crypto_hints.html -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/code/crypto_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/code/crypto_material.py -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/internal/key_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/internal/key_parser.py -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/signatures/GnuPg.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/signatures/GnuPg.yara -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/signatures/PKCS.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/signatures/PKCS.yara -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/signatures/generic.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/signatures/generic.yara -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/signatures/ssh.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/signatures/ssh.yara -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/signatures/ssl.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/signatures/ssl.yara -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/FP_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/FP_test -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/error.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/error.der -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/id_rsa -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/id_rsa.pub -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/pkcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/pkcs -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/pkcs12 -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/pkcs_fp.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/pkcs_fp.file -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/ssl.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/ssl.crt -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/ssl.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/ssl.key -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/test/data/ssl_fp.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/test/data/ssl_fp.file -------------------------------------------------------------------------------- /src/plugins/analysis/crypto_material/view/crypto_material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/crypto_material/view/crypto_material.html -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/code/cve_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/code/cve_lookup.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/busybox_cve_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/busybox_cve_filter.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/data_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/data_parsing.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/database/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/database/db_setup.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/database/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/database/schema.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/group_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/group_1.txt -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/group_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/group_2.txt -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/helper_functions.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/internal/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/internal/lookup.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/requirements.txt: -------------------------------------------------------------------------------- 1 | retry==0.9.2 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/test/test_cve_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/test/test_cve_lookup.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/test/test_data_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/test/test_data_parsing.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/test/test_db_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/test/test_db_interface.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/test/test_db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/test/test_db_setup.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/test/test_helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/test/test_helper_functions.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/test/test_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/test/test_lookup.py -------------------------------------------------------------------------------- /src/plugins/analysis/cve_lookup/view/cve_lookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cve_lookup/view/cve_lookup.html -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/.gitignore: -------------------------------------------------------------------------------- 1 | internal/ 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/code/cwe_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cwe_checker/code/cwe_checker.py -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cwe_checker/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/test/data/cwe_367: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cwe_checker/test/data/cwe_367 -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/test/test_cwe_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cwe_checker/test/test_cwe_checker.py -------------------------------------------------------------------------------- /src/plugins/analysis/cwe_checker/view/cwe_checker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/cwe_checker/view/cwe_checker.html -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/apt-pkgs-runtime.txt: -------------------------------------------------------------------------------- 1 | device-tree-compiler 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/code/device_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/code/device_tree.py -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/internal/device_tree_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/internal/device_tree_utils.py -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/internal/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/internal/schema.py -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/test/data/broken.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/test/data/broken.dtb -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/test/data/device_tree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/test/data/device_tree.dtb -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/test/data/dt_embed_test.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/test/data/dt_embed_test.dtb -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/test/data/dtb_inside.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/test/data/dtb_inside.image -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/test/data/false_positive.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/test/data/false_positive.rnd -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/test/test_device_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/test/test_device_tree.py -------------------------------------------------------------------------------- /src/plugins/analysis/device_tree/view/device_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/device_tree/view/device_tree.html -------------------------------------------------------------------------------- /src/plugins/analysis/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/dummy/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/dummy/code/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/dummy/code/dummy.py -------------------------------------------------------------------------------- /src/plugins/analysis/dummy/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/dummy/routes/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/dummy/routes/routes.py -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/code/elf_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/elf_analysis/code/elf_analysis.py -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/test/data/test_data.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/elf_analysis/test/data/test_data.ko -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/test/data/x-pie-executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/elf_analysis/test/data/x-pie-executable -------------------------------------------------------------------------------- /src/plugins/analysis/elf_analysis/view/elf_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/elf_analysis/view/elf_analysis.html -------------------------------------------------------------------------------- /src/plugins/analysis/example_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/example_plugin/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/example_plugin/code/example_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/example_plugin/code/example_plugin.py -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/test/data/Hallo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/exploit_mitigations/test/data/Hallo.o -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/test/data/Hallo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/exploit_mitigations/test/data/Hallo.out -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/test/data/Hallo.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/exploit_mitigations/test/data/Hallo.so -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/test/data/Hallo_cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/exploit_mitigations/test/data/Hallo_cfi -------------------------------------------------------------------------------- /src/plugins/analysis/exploit_mitigations/test/data/Hallo_rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/exploit_mitigations/test/data/Hallo_rpath -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_system_metadata/docker/Dockerfile -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/docker/mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_system_metadata/docker/mount.py -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_system_metadata/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/routes/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_system_metadata/routes/routes.py -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/file_system_metadata/test/data/test.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_system_metadata/test/data/test.tar -------------------------------------------------------------------------------- /src/plugins/analysis/file_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/file_type/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/file_type/code/file_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_type/code/file_type.py -------------------------------------------------------------------------------- /src/plugins/analysis/file_type/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/file_type/test/test_plugin_file_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_type/test/test_plugin_file_type.py -------------------------------------------------------------------------------- /src/plugins/analysis/file_type/view/file_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/file_type/view/file_type.html -------------------------------------------------------------------------------- /src/plugins/analysis/hash/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/hash/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/hash/code/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/hash/code/hash.py -------------------------------------------------------------------------------- /src/plugins/analysis/hash/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/hash/test/data/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/hash/test/data/ls -------------------------------------------------------------------------------- /src/plugins/analysis/hash/test/test_plugin_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/hash/test/test_plugin_hash.py -------------------------------------------------------------------------------- /src/plugins/analysis/hash/view/hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/hash/view/hash.html -------------------------------------------------------------------------------- /src/plugins/analysis/hashlookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/hashlookup/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/hashlookup/code/hashlookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/hashlookup/code/hashlookup.py -------------------------------------------------------------------------------- /src/plugins/analysis/hashlookup/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/hashlookup/test/test_hashlookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/hashlookup/test/test_hashlookup.py -------------------------------------------------------------------------------- /src/plugins/analysis/information_leaks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/information_leaks/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/information_leaks/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/code/init_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/code/init_system.py -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/init.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/test/data/etc/init.d/README -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/init/baz.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/test/data/etc/init/baz.conf -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/initscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/test/data/etc/initscript -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/test/data/etc/inittab -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/test/data/etc/rc.local -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/service/example: -------------------------------------------------------------------------------- 1 | ../sv/example -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/service/lighttpd/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | sv -w7 check postgresql 3 | exec 2>&1 myprocess \ 4 | last line -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/test/data/etc/sv/example/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/test/data/etc/sv/example/run -------------------------------------------------------------------------------- /src/plugins/analysis/init_systems/view/init_system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/init_systems/view/init_system.html -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/Dockerfile -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/README.md -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/code/input_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/code/input_vectors.py -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/internal/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/internal/config.json -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/test/data/test_domain.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/test/data/test_domain.elf -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/test/data/test_fgets.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/test/data/test_fgets.elf -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/test/test_input_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/test/test_input_vectors.py -------------------------------------------------------------------------------- /src/plugins/analysis/input_vectors/view/input_vectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/input_vectors/view/input_vectors.html -------------------------------------------------------------------------------- /src/plugins/analysis/ip_and_uri_finder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ip_and_uri_finder/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ip_and_uri_finder/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/ip_and_uri_finder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ip_and_uri_finder/requirements.txt -------------------------------------------------------------------------------- /src/plugins/analysis/ip_and_uri_finder/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/README.md -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/code/ipc_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/code/ipc_analyzer.py -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/docker/Dockerfile -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/docker/ghidra_headless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/docker/ghidra_headless.py -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/docker/ipc_analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/docker/ipc_analyzer/ipc_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/docker/ipc_analyzer/ipc_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/docker/ipc_analyzer/ipc_analyzer.py -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/docker/ipc_analyzer/resolve_format_strings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/test/data/ipc_shared_files_test_bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/test/data/ipc_shared_files_test_bin -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/test/data/ipc_shared_files_test_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/test/data/ipc_shared_files_test_bin.c -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/test/data/ipc_system_test_bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/test/data/ipc_system_test_bin -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/test/data/ipc_system_test_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/test/data/ipc_system_test_bin.c -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/test/test_ipc_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/test/test_ipc_analyzer.py -------------------------------------------------------------------------------- /src/plugins/analysis/ipc/view/ipc_analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/ipc/view/ipc_analyzer.html -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/code/kernel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/kernel_config/code/kernel_config.py -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/kernel_config/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/internal/decomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/kernel_config/internal/decomp.py -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/requirements.txt: -------------------------------------------------------------------------------- 1 | git+https://github.com/a13xp0p0v/kconfig-hardened-check@v0.5.14 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/test/data/configs/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/kernel_config/test/data/configs/CONFIG -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/test/data/configs/CONFIG.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/kernel_config/test/data/configs/CONFIG.gz -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/test/data/configs/CONFIG_MAGIC: -------------------------------------------------------------------------------- 1 | IKCFG_ST -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/test/data/configs/CONFIG_MAGIC_CORRUPT: -------------------------------------------------------------------------------- 1 | IKCFG_ST 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/test/test_kernel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/kernel_config/test/test_kernel_config.py -------------------------------------------------------------------------------- /src/plugins/analysis/kernel_config/view/kernel_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/kernel_config/view/kernel_config.html -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/known_vulnerabilities/docker/Dockerfile -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/known_vulnerabilities/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/test/data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/test/data/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/known_vulnerabilities/test/data/sc.json -------------------------------------------------------------------------------- /src/plugins/analysis/known_vulnerabilities/test/data/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/known_vulnerabilities/test/data/testfile -------------------------------------------------------------------------------- /src/plugins/analysis/linter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/apt-pkgs-runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/apt-pkgs-runtime.txt -------------------------------------------------------------------------------- /src/plugins/analysis/linter/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/code/source_code_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/code/source_code_analysis.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/dnf-pkgs-runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/dnf-pkgs-runtime.txt -------------------------------------------------------------------------------- /src/plugins/analysis/linter/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/internal/config/eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/internal/config/eslintrc.js -------------------------------------------------------------------------------- /src/plugins/analysis/linter/internal/config/luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/internal/config/luacheckrc -------------------------------------------------------------------------------- /src/plugins/analysis/linter/internal/linters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/internal/linters.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/requirements.txt: -------------------------------------------------------------------------------- 1 | pylint==2.15.5 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/data/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/data/hello_world.js: -------------------------------------------------------------------------------- 1 | var x = 5 2 | alert('Hello, world!'); 3 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/data/hello_world.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/data/hello_world.php -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/data/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/data/hello_world.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/data/hello_world.ruby: -------------------------------------------------------------------------------- 1 | puts "Hello World" 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/data/hello_world.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/data/hello_world.sh -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/data/hello_world_ruby: -------------------------------------------------------------------------------- 1 | puts "Hello World" 2 | -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/test_js_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/test_js_linter.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/test_lua_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/test_lua_linter.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/test_php_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/test_php_linter.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/test_python_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/test_python_linter.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/test_ruby_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/test_ruby_linter.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/test_shell_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/test_shell_linter.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/test/test_source_code_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/test/test_source_code_analysis.py -------------------------------------------------------------------------------- /src/plugins/analysis/linter/view/source_code_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/linter/view/source_code_analysis.html -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/code/qemu_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/code/qemu_exec.py -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/docker/Dockerfile -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/docker/start_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/docker/start_binary.py -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/routes/ajax_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/routes/ajax_view.html -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/routes/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/routes/routes.py -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/test/data/test_tmp_dir/usr/bin/link_symbolic: -------------------------------------------------------------------------------- 1 | test_mips -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/test/test_plugin_qemu_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/test/test_plugin_qemu_exec.py -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/test/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/test/test_routes.py -------------------------------------------------------------------------------- /src/plugins/analysis/qemu_exec/view/qemu_exec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/qemu_exec/view/qemu_exec.html -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/software_components/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/signatures/lib.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/software_components/signatures/lib.yara -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/signatures/os.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/software_components/signatures/os.yara -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/signatures/uefi.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/software_components/signatures/uefi.yara -------------------------------------------------------------------------------- /src/plugins/analysis/software_components/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/strings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/strings/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/strings/code/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/strings/code/strings.py -------------------------------------------------------------------------------- /src/plugins/analysis/strings/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/strings/internal/string_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/strings/internal/string_eval.py -------------------------------------------------------------------------------- /src/plugins/analysis/strings/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/strings/test/data/string_find_test_file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/strings/test/data/string_find_test_file2 -------------------------------------------------------------------------------- /src/plugins/analysis/strings/test/test_plugin_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/strings/test/test_plugin_strings.py -------------------------------------------------------------------------------- /src/plugins/analysis/strings/test/test_string_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/strings/test/test_string_eval.py -------------------------------------------------------------------------------- /src/plugins/analysis/strings/view/printable_strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/strings/view/printable_strings.html -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/users_and_passwords/docker/Dockerfile -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/docker/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/users_and_passwords/docker/entry.sh -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/users_and_passwords/install.py -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/users_and_passwords/requirements.txt -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/analysis/users_and_passwords/test/data/passwd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/analysis/users_and_passwords/test/data/passwd.bin -------------------------------------------------------------------------------- /src/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/base.py -------------------------------------------------------------------------------- /src/plugins/compare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/file_coverage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/file_coverage/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/file_coverage/code/file_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/compare/file_coverage/code/file_coverage.py -------------------------------------------------------------------------------- /src/plugins/compare/file_coverage/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/file_coverage/view/file_coverage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/compare/file_coverage/view/file_coverage.html -------------------------------------------------------------------------------- /src/plugins/compare/file_header/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/file_header/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/file_header/code/file_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/compare/file_header/code/file_header.py -------------------------------------------------------------------------------- /src/plugins/compare/file_header/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/file_header/test/test_file_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/compare/file_header/test/test_file_header.py -------------------------------------------------------------------------------- /src/plugins/compare/file_header/view/file_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/compare/file_header/view/file_header.html -------------------------------------------------------------------------------- /src/plugins/compare/software/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/software/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/software/code/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/compare/software/code/software.py -------------------------------------------------------------------------------- /src/plugins/compare/software/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/compare/software/test/test_plugin_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/compare/software/test/test_plugin_software.py -------------------------------------------------------------------------------- /src/plugins/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/installer.py -------------------------------------------------------------------------------- /src/plugins/mime_blacklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/plugins/mime_blacklists.py -------------------------------------------------------------------------------- /src/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scheduler/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/scheduler/analysis/__init__.py -------------------------------------------------------------------------------- /src/scheduler/analysis/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/scheduler/analysis/plugin.py -------------------------------------------------------------------------------- /src/scheduler/analysis/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/scheduler/analysis/scheduler.py -------------------------------------------------------------------------------- /src/scheduler/analysis_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/scheduler/analysis_status.py -------------------------------------------------------------------------------- /src/scheduler/comparison_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/scheduler/comparison_scheduler.py -------------------------------------------------------------------------------- /src/scheduler/task_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/scheduler/task_scheduler.py -------------------------------------------------------------------------------- /src/scheduler/unpacking_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/scheduler/unpacking_scheduler.py -------------------------------------------------------------------------------- /src/start_fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/start_fact.py -------------------------------------------------------------------------------- /src/start_fact_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/start_fact_backend.py -------------------------------------------------------------------------------- /src/start_fact_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/start_fact_database.py -------------------------------------------------------------------------------- /src/start_fact_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/start_fact_frontend.py -------------------------------------------------------------------------------- /src/statistic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/statistic/analysis_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/statistic/analysis_stats.py -------------------------------------------------------------------------------- /src/statistic/time_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/statistic/time_stats.py -------------------------------------------------------------------------------- /src/statistic/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/statistic/update.py -------------------------------------------------------------------------------- /src/statistic/work_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/statistic/work_load.py -------------------------------------------------------------------------------- /src/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/storage/binary_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/binary_service.py -------------------------------------------------------------------------------- /src/storage/db_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_connection.py -------------------------------------------------------------------------------- /src/storage/db_interface_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_admin.py -------------------------------------------------------------------------------- /src/storage/db_interface_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_backend.py -------------------------------------------------------------------------------- /src/storage/db_interface_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_base.py -------------------------------------------------------------------------------- /src/storage/db_interface_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_common.py -------------------------------------------------------------------------------- /src/storage/db_interface_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_comparison.py -------------------------------------------------------------------------------- /src/storage/db_interface_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_frontend.py -------------------------------------------------------------------------------- /src/storage/db_interface_frontend_editing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_frontend_editing.py -------------------------------------------------------------------------------- /src/storage/db_interface_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_stats.py -------------------------------------------------------------------------------- /src/storage/db_interface_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_interface_view_sync.py -------------------------------------------------------------------------------- /src/storage/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/db_setup.py -------------------------------------------------------------------------------- /src/storage/entry_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/entry_conversion.py -------------------------------------------------------------------------------- /src/storage/fsorganizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/fsorganizer.py -------------------------------------------------------------------------------- /src/storage/graphql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/storage/graphql/hasura/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/storage/graphql/hasura/docker-compose.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/graphql/hasura/docker-compose.base.yml -------------------------------------------------------------------------------- /src/storage/graphql/hasura/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/graphql/hasura/docker-compose.yaml -------------------------------------------------------------------------------- /src/storage/graphql/hasura/init_hasura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/graphql/hasura/init_hasura.py -------------------------------------------------------------------------------- /src/storage/graphql/hasura/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/graphql/hasura/restart.py -------------------------------------------------------------------------------- /src/storage/graphql/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/graphql/interface.py -------------------------------------------------------------------------------- /src/storage/graphql/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/graphql/util.py -------------------------------------------------------------------------------- /src/storage/migration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/migration/__init__.py -------------------------------------------------------------------------------- /src/storage/migration/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/migration/env.py -------------------------------------------------------------------------------- /src/storage/migration/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/migration/script.py.mako -------------------------------------------------------------------------------- /src/storage/query_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/query_conversion.py -------------------------------------------------------------------------------- /src/storage/redis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/redis_interface.py -------------------------------------------------------------------------------- /src/storage/redis_status_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/redis_status_interface.py -------------------------------------------------------------------------------- /src/storage/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/schema.py -------------------------------------------------------------------------------- /src/storage/unpacking_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/storage/unpacking_locks.py -------------------------------------------------------------------------------- /src/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/acceptance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/acceptance/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/conftest.py -------------------------------------------------------------------------------- /src/test/acceptance/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/acceptance/rest/test_rest_analyze_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/rest/test_rest_analyze_firmware.py -------------------------------------------------------------------------------- /src/test/acceptance/rest/test_rest_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/rest/test_rest_binary_search.py -------------------------------------------------------------------------------- /src/test/acceptance/rest/test_rest_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/rest/test_rest_compare.py -------------------------------------------------------------------------------- /src/test/acceptance/rest/test_rest_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/rest/test_rest_download.py -------------------------------------------------------------------------------- /src/test/acceptance/rest/test_rest_statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/rest/test_rest_statistic.py -------------------------------------------------------------------------------- /src/test/acceptance/run_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/acceptance/run_scripts/test_run_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/run_scripts/test_run_scripts.py -------------------------------------------------------------------------------- /src/test/acceptance/test_advanced_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_advanced_search.py -------------------------------------------------------------------------------- /src/test/acceptance/test_authenticated_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_authenticated_gui.py -------------------------------------------------------------------------------- /src/test/acceptance/test_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_binary_search.py -------------------------------------------------------------------------------- /src/test/acceptance/test_compare_firmwares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_compare_firmwares.py -------------------------------------------------------------------------------- /src/test/acceptance/test_file_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_file_download.py -------------------------------------------------------------------------------- /src/test/acceptance/test_io_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_io_routes.py -------------------------------------------------------------------------------- /src/test/acceptance/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_misc.py -------------------------------------------------------------------------------- /src/test/acceptance/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_search.py -------------------------------------------------------------------------------- /src/test/acceptance/test_upload_analyze_delete_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/acceptance/test_upload_analyze_delete_firmware.py -------------------------------------------------------------------------------- /src/test/common_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/common_helper.py -------------------------------------------------------------------------------- /src/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/conftest.py -------------------------------------------------------------------------------- /src/test/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/binary_search_test/bi/binary_search_test_2: -------------------------------------------------------------------------------- 1 | this file contains the TEST_STRING! 2 | -------------------------------------------------------------------------------- /src/test/data/binary_search_test/bi/binary_search_test_3: -------------------------------------------------------------------------------- 1 | this file is does not match 2 | -------------------------------------------------------------------------------- /src/test/data/binary_search_test/binary_search_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/binary_search_test/binary_search_test -------------------------------------------------------------------------------- /src/test/data/binwalk.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/binwalk.out -------------------------------------------------------------------------------- /src/test/data/broken_link: -------------------------------------------------------------------------------- 1 | tmp -------------------------------------------------------------------------------- /src/test/data/container/broken.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/container/broken.zip -------------------------------------------------------------------------------- /src/test/data/container/test.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/container/test.7z -------------------------------------------------------------------------------- /src/test/data/container/test.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/container/test.cab -------------------------------------------------------------------------------- /src/test/data/container/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/container/test.zip -------------------------------------------------------------------------------- /src/test/data/container/test_zip.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/container/test_zip.7z -------------------------------------------------------------------------------- /src/test/data/container/with_key.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/container/with_key.7z -------------------------------------------------------------------------------- /src/test/data/files/get_files_test: -------------------------------------------------------------------------------- 1 | ../get_files_test -------------------------------------------------------------------------------- /src/test/data/files/zero_byte: -------------------------------------------------------------------------------- 1 | ../zero_byte -------------------------------------------------------------------------------- /src/test/data/generic_carver_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/generic_carver_test -------------------------------------------------------------------------------- /src/test/data/get_files_test/generic folder/test file 3_.txt: -------------------------------------------------------------------------------- 1 | The third test file! -------------------------------------------------------------------------------- /src/test/data/get_files_test/testfile1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/get_files_test/testfile1 -------------------------------------------------------------------------------- /src/test/data/get_files_test/testfile2: -------------------------------------------------------------------------------- 1 | This is the second test file -------------------------------------------------------------------------------- /src/test/data/helperFunctions/ros_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/helperFunctions/ros_header -------------------------------------------------------------------------------- /src/test/data/logs_frontend: -------------------------------------------------------------------------------- 1 | Frontend_test -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/crashes_during_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/crashes_during_import/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/crashes_during_import/code/plugin_one.py: -------------------------------------------------------------------------------- 1 | raise ImportError 2 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/crashes_during_instantiation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/crashes_during_instantiation/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/none_valid_plugin/no_code_in_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/plugin_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/plugin_one/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/plugin_two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/plugin_system/plugins/analysis/plugin_two/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data/regression_one: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/regression_one -------------------------------------------------------------------------------- /src/test/data/regression_two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/regression_two -------------------------------------------------------------------------------- /src/test/data/symbolic_link_representation: -------------------------------------------------------------------------------- 1 | symbolic link -> /tmp 2 | -------------------------------------------------------------------------------- /src/test/data/test_data_file.bin: -------------------------------------------------------------------------------- 1 | test string in file -------------------------------------------------------------------------------- /src/test/data/test_executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/test_executable -------------------------------------------------------------------------------- /src/test/data/user_test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/user_test.db -------------------------------------------------------------------------------- /src/test/data/version_string_finder_testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/version_string_finder_testfile -------------------------------------------------------------------------------- /src/test/data/vfp_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/vfp_test.zip -------------------------------------------------------------------------------- /src/test/data/yara_binary_search_test_rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/yara_binary_search_test_rule -------------------------------------------------------------------------------- /src/test/data/yara_magic.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/yara_magic.yara -------------------------------------------------------------------------------- /src/test/data/yara_matches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/data/yara_matches -------------------------------------------------------------------------------- /src/test/data/yara_test_file: -------------------------------------------------------------------------------- 1 | This is a Testblubblah 2 | -------------------------------------------------------------------------------- /src/test/data/zero_byte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/common.py -------------------------------------------------------------------------------- /src/test/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/conftest.py -------------------------------------------------------------------------------- /src/test/integration/helperFunctions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/helperFunctions/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/helperFunctions/test_pdf.py -------------------------------------------------------------------------------- /src/test/integration/intercom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/intercom/test_backend_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/intercom/test_backend_scheduler.py -------------------------------------------------------------------------------- /src/test/integration/intercom/test_intercom_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/intercom/test_intercom_common.py -------------------------------------------------------------------------------- /src/test/integration/intercom/test_intercom_delete_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/intercom/test_intercom_delete_file.py -------------------------------------------------------------------------------- /src/test/integration/intercom/test_task_communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/intercom/test_task_communication.py -------------------------------------------------------------------------------- /src/test/integration/run_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/run_scripts/test_import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/run_scripts/test_import_export.py -------------------------------------------------------------------------------- /src/test/integration/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/scheduler/test_cycle_with_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/scheduler/test_cycle_with_tags.py -------------------------------------------------------------------------------- /src/test/integration/scheduler/test_unpack_and_analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/scheduler/test_unpack_and_analyse.py -------------------------------------------------------------------------------- /src/test/integration/scheduler/test_unpack_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/scheduler/test_unpack_only.py -------------------------------------------------------------------------------- /src/test/integration/statistic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/statistic/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/statistic/test_update.py -------------------------------------------------------------------------------- /src/test/integration/statistic/test_work_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/statistic/test_work_load.py -------------------------------------------------------------------------------- /src/test/integration/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/storage/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/helper.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_binary_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_binary_service.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_db_interface_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_db_interface_admin.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_db_interface_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_db_interface_backend.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_db_interface_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_db_interface_common.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_db_interface_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_db_interface_frontend.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_db_interface_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_db_interface_stats.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_db_interface_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_db_interface_view_sync.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_db_setup.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_graphql_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_graphql_interface.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_redis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_redis_interface.py -------------------------------------------------------------------------------- /src/test/integration/storage/test_redis_status_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/storage/test_redis_status_interface.py -------------------------------------------------------------------------------- /src/test/integration/web_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/web_interface/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/integration/web_interface/rest/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/web_interface/rest/base.py -------------------------------------------------------------------------------- /src/test/integration/web_interface/rest/test_rest_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/web_interface/rest/test_rest_binary.py -------------------------------------------------------------------------------- /src/test/integration/web_interface/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/integration/web_interface/test_filter.py -------------------------------------------------------------------------------- /src/test/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/mock.py -------------------------------------------------------------------------------- /src/test/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/analysis/test.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/analysis/test.yara -------------------------------------------------------------------------------- /src/test/unit/analysis/test_addons_yara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/analysis/test_addons_yara.py -------------------------------------------------------------------------------- /src/test/unit/analysis/test_plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/analysis/test_plugin_base.py -------------------------------------------------------------------------------- /src/test/unit/analysis/test_yara_plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/analysis/test_yara_plugin_base.py -------------------------------------------------------------------------------- /src/test/unit/compare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/compare/compare_plugin_test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/compare/compare_plugin_test_class.py -------------------------------------------------------------------------------- /src/test/unit/compare/test_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/compare/test_compare.py -------------------------------------------------------------------------------- /src/test/unit/compare/test_plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/compare/test_plugin_base.py -------------------------------------------------------------------------------- /src/test/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/conftest.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_compare_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_compare_sets.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_data_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_data_conversion.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_file_system.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_hash.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_install.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_logging.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_magic.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_object_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_object_conversion.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_pdf.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_pkglist.txt: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | 4 | # Some comment 5 | foobar 6 | -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_plugin.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_process.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_program_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_program_setup.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_tag.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_task_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_task_conversion.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_uid.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_virtual_file_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_virtual_file_path.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_web_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_web_interface.py -------------------------------------------------------------------------------- /src/test/unit/helperFunctions/test_yara_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/helperFunctions/test_yara_binary_search.py -------------------------------------------------------------------------------- /src/test/unit/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/objects/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/objects/test_file.py -------------------------------------------------------------------------------- /src/test/unit/objects/test_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/objects/test_firmware.py -------------------------------------------------------------------------------- /src/test/unit/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/scheduler/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/scheduler/test_analysis.py -------------------------------------------------------------------------------- /src/test/unit/scheduler/test_analysis_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/scheduler/test_analysis_status.py -------------------------------------------------------------------------------- /src/test/unit/scheduler/test_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/scheduler/test_compare.py -------------------------------------------------------------------------------- /src/test/unit/scheduler/test_task_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/scheduler/test_task_scheduler.py -------------------------------------------------------------------------------- /src/test/unit/scheduler/test_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/scheduler/test_unpack.py -------------------------------------------------------------------------------- /src/test/unit/statistic/test_analysis_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/statistic/test_analysis_stats.py -------------------------------------------------------------------------------- /src/test/unit/statistic/test_time_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/statistic/test_time_stats.py -------------------------------------------------------------------------------- /src/test/unit/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/storage/test_entry_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/storage/test_entry_conversion.py -------------------------------------------------------------------------------- /src/test/unit/storage/test_fs_organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/storage/test_fs_organizer.py -------------------------------------------------------------------------------- /src/test/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/test_config.py -------------------------------------------------------------------------------- /src/test/unit/test_manage_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/test_manage_users.py -------------------------------------------------------------------------------- /src/test/unit/unpacker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/unpacker/test_tar_repack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/unpacker/test_tar_repack.py -------------------------------------------------------------------------------- /src/test/unit/unpacker/test_unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/unpacker/test_unpacker.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_helper.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_analysis.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_binary.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_binary_search.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_compare.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_file_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_file_object.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_firmware.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_missing.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/rest/test_rest_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/rest/test_rest_status.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/unit/web_interface/security/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/security/test_validators.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_ajax_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_ajax_routes.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_add_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_add_comment.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_advanced_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_advanced_search.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_ajax_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_ajax_routes.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_binary_search.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_compare.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_comparison_basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_comparison_basket.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_dependency_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_dependency_graph.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_download.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_find_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_find_logs.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_jinja_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_jinja_filter.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_jinja_filter_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_jinja_filter_static.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_missing_analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_missing_analyses.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_re_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_re_analyze.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_show_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_show_analysis.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_show_statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_show_statistic.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_static.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_app_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_app_upload.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_comparison_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_comparison_routes.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_dependency_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_dependency_graph.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_file_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_file_tree.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_filter.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_hex_highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_hex_highlighting.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_plugin_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_plugin_routes.py -------------------------------------------------------------------------------- /src/test/unit/web_interface/test_quick_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/unit/web_interface/test_quick_search.py -------------------------------------------------------------------------------- /src/test/yara_signature_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/test/yara_signature_testing.py -------------------------------------------------------------------------------- /src/unpacker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/unpacker/extraction_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/unpacker/extraction_container.py -------------------------------------------------------------------------------- /src/unpacker/tar_repack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/unpacker/tar_repack.py -------------------------------------------------------------------------------- /src/unpacker/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/unpacker/unpack.py -------------------------------------------------------------------------------- /src/unpacker/unpack_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/unpacker/unpack_base.py -------------------------------------------------------------------------------- /src/update_statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/update_statistic.py -------------------------------------------------------------------------------- /src/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/version.py -------------------------------------------------------------------------------- /src/web_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web_interface/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/app.py -------------------------------------------------------------------------------- /src/web_interface/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web_interface/components/ajax_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/ajax_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/analysis_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/analysis_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/compare_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/compare_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/component_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/component_base.py -------------------------------------------------------------------------------- /src/web_interface/components/database_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/database_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/dependency_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/dependency_graph.py -------------------------------------------------------------------------------- /src/web_interface/components/hex_highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/hex_highlighting.py -------------------------------------------------------------------------------- /src/web_interface/components/io_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/io_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/jinja_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/jinja_filter.py -------------------------------------------------------------------------------- /src/web_interface/components/miscellaneous_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/miscellaneous_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/plugin_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/plugin_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/statistic_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/statistic_routes.py -------------------------------------------------------------------------------- /src/web_interface/components/user_management_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/components/user_management_routes.py -------------------------------------------------------------------------------- /src/web_interface/file_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web_interface/file_tree/file_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/file_tree/file_tree.py -------------------------------------------------------------------------------- /src/web_interface/file_tree/file_tree_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/file_tree/file_tree_node.py -------------------------------------------------------------------------------- /src/web_interface/file_tree/jstree_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/file_tree/jstree_conversion.py -------------------------------------------------------------------------------- /src/web_interface/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/filter.py -------------------------------------------------------------------------------- /src/web_interface/frontend_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/frontend_database.py -------------------------------------------------------------------------------- /src/web_interface/frontend_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/frontend_main.py -------------------------------------------------------------------------------- /src/web_interface/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/pagination.py -------------------------------------------------------------------------------- /src/web_interface/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web_interface/rest/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/helper.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_analysis.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_base.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_binary.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_binary_search.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_compare.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_file_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_file_object.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_firmware.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_missing_analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_missing_analyses.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_resource_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_resource_base.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_statistics.py -------------------------------------------------------------------------------- /src/web_interface/rest/rest_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/rest/rest_status.py -------------------------------------------------------------------------------- /src/web_interface/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web_interface/security/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/security/authentication.py -------------------------------------------------------------------------------- /src/web_interface/security/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/security/decorator.py -------------------------------------------------------------------------------- /src/web_interface/security/privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/security/privileges.py -------------------------------------------------------------------------------- /src/web_interface/security/terminal_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/security/terminal_validators.py -------------------------------------------------------------------------------- /src/web_interface/security/user_role_db_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/security/user_role_db_interface.py -------------------------------------------------------------------------------- /src/web_interface/static/Colorcoding0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/Colorcoding0.png -------------------------------------------------------------------------------- /src/web_interface/static/Colorcoding1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/Colorcoding1.png -------------------------------------------------------------------------------- /src/web_interface/static/Colorcoding2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/Colorcoding2.png -------------------------------------------------------------------------------- /src/web_interface/static/Colorcoding3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/Colorcoding3.png -------------------------------------------------------------------------------- /src/web_interface/static/Colorcoding4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/Colorcoding4.png -------------------------------------------------------------------------------- /src/web_interface/static/FACT_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/FACT_smaller.png -------------------------------------------------------------------------------- /src/web_interface/static/Pacman.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/Pacman.gif -------------------------------------------------------------------------------- /src/web_interface/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/css/base.css -------------------------------------------------------------------------------- /src/web_interface/static/css/code_pre.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/css/code_pre.css -------------------------------------------------------------------------------- /src/web_interface/static/css/dependency_graph.css: -------------------------------------------------------------------------------- 1 | #dependencyGraph { 2 | height: 800px; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/web_interface/static/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/css/home.css -------------------------------------------------------------------------------- /src/web_interface/static/css/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/css/pagination.css -------------------------------------------------------------------------------- /src/web_interface/static/css/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/css/upload.css -------------------------------------------------------------------------------- /src/web_interface/static/fact_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/fact_button.svg -------------------------------------------------------------------------------- /src/web_interface/static/fact_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/fact_icon.ico -------------------------------------------------------------------------------- /src/web_interface/static/fact_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/fact_icon.svg -------------------------------------------------------------------------------- /src/web_interface/static/fact_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/fact_logo.png -------------------------------------------------------------------------------- /src/web_interface/static/fact_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/fact_logo.svg -------------------------------------------------------------------------------- /src/web_interface/static/fact_logo_inv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/fact_logo_inv.svg -------------------------------------------------------------------------------- /src/web_interface/static/fact_logo_invertible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/fact_logo_invertible.svg -------------------------------------------------------------------------------- /src/web_interface/static/js/advanced_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/advanced_search.js -------------------------------------------------------------------------------- /src/web_interface/static/js/dark_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/dark_mode.js -------------------------------------------------------------------------------- /src/web_interface/static/js/dependency_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/dependency_graph.js -------------------------------------------------------------------------------- /src/web_interface/static/js/fact_statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/fact_statistics.js -------------------------------------------------------------------------------- /src/web_interface/static/js/file_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/file_tree.js -------------------------------------------------------------------------------- /src/web_interface/static/js/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/loading.js -------------------------------------------------------------------------------- /src/web_interface/static/js/quick_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/quick_search.js -------------------------------------------------------------------------------- /src/web_interface/static/js/show_analysis_fileTreeAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/show_analysis_fileTreeAjax.js -------------------------------------------------------------------------------- /src/web_interface/static/js/show_analysis_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/show_analysis_preview.js -------------------------------------------------------------------------------- /src/web_interface/static/js/show_analysis_single_update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/show_analysis_single_update.js -------------------------------------------------------------------------------- /src/web_interface/static/js/show_analysis_summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/show_analysis_summary.js -------------------------------------------------------------------------------- /src/web_interface/static/js/start_compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/start_compare.js -------------------------------------------------------------------------------- /src/web_interface/static/js/system_health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/system_health.js -------------------------------------------------------------------------------- /src/web_interface/static/js/update_url_variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/update_url_variables.js -------------------------------------------------------------------------------- /src/web_interface/static/js/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/js/upload.js -------------------------------------------------------------------------------- /src/web_interface/static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/package-lock.json -------------------------------------------------------------------------------- /src/web_interface/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/static/package.json -------------------------------------------------------------------------------- /src/web_interface/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/about.html -------------------------------------------------------------------------------- /src/web_interface/templates/analysis_plugins/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/analysis_plugins/fail.html -------------------------------------------------------------------------------- /src/web_interface/templates/analysis_plugins/generic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/analysis_plugins/generic.html -------------------------------------------------------------------------------- /src/web_interface/templates/analysis_plugins/unpacker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/analysis_plugins/unpacker.html -------------------------------------------------------------------------------- /src/web_interface/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/base.html -------------------------------------------------------------------------------- /src/web_interface/templates/compare/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/compare/compare.html -------------------------------------------------------------------------------- /src/web_interface/templates/compare/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/compare/error.html -------------------------------------------------------------------------------- /src/web_interface/templates/compare/text_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/compare/text_files.html -------------------------------------------------------------------------------- /src/web_interface/templates/compare/wait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/compare/wait.html -------------------------------------------------------------------------------- /src/web_interface/templates/database/compare_browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/database/compare_browse.html -------------------------------------------------------------------------------- /src/web_interface/templates/database/database_browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/database/database_browse.html -------------------------------------------------------------------------------- /src/web_interface/templates/database/database_graphql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/database/database_graphql.html -------------------------------------------------------------------------------- /src/web_interface/templates/database/database_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/database/database_search.html -------------------------------------------------------------------------------- /src/web_interface/templates/delete_firmware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/delete_firmware.html -------------------------------------------------------------------------------- /src/web_interface/templates/dependency_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/dependency_graph.html -------------------------------------------------------------------------------- /src/web_interface/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/error.html -------------------------------------------------------------------------------- /src/web_interface/templates/find_missing_analyses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/find_missing_analyses.html -------------------------------------------------------------------------------- /src/web_interface/templates/generic_view/nice_fo_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/generic_view/nice_fo_list.html -------------------------------------------------------------------------------- /src/web_interface/templates/generic_view/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/generic_view/tags.html -------------------------------------------------------------------------------- /src/web_interface/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/home.html -------------------------------------------------------------------------------- /src/web_interface/templates/imprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/imprint.html -------------------------------------------------------------------------------- /src/web_interface/templates/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/logs.html -------------------------------------------------------------------------------- /src/web_interface/templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/macros.html -------------------------------------------------------------------------------- /src/web_interface/templates/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/maintenance.html -------------------------------------------------------------------------------- /src/web_interface/templates/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/plugins.html -------------------------------------------------------------------------------- /src/web_interface/templates/security/_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/security/_macros.html -------------------------------------------------------------------------------- /src/web_interface/templates/security/login_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/security/login_user.html -------------------------------------------------------------------------------- /src/web_interface/templates/security/send_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/security/send_login.html -------------------------------------------------------------------------------- /src/web_interface/templates/show_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/show_analysis.html -------------------------------------------------------------------------------- /src/web_interface/templates/show_analysis/button_groups.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/show_analysis/button_groups.j2 -------------------------------------------------------------------------------- /src/web_interface/templates/show_analysis/comments.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/show_analysis/comments.j2 -------------------------------------------------------------------------------- /src/web_interface/templates/show_analysis/comparison.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/show_analysis/comparison.j2 -------------------------------------------------------------------------------- /src/web_interface/templates/show_analysis/file_tree.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/show_analysis/file_tree.j2 -------------------------------------------------------------------------------- /src/web_interface/templates/show_analysis/preview.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/show_analysis/preview.j2 -------------------------------------------------------------------------------- /src/web_interface/templates/show_statistic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/show_statistic.html -------------------------------------------------------------------------------- /src/web_interface/templates/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/summary.html -------------------------------------------------------------------------------- /src/web_interface/templates/system_health.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/system_health.html -------------------------------------------------------------------------------- /src/web_interface/templates/uid_not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/uid_not_found.html -------------------------------------------------------------------------------- /src/web_interface/templates/upload/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/upload/upload.html -------------------------------------------------------------------------------- /src/web_interface/templates/upload/upload_successful.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/upload/upload_successful.html -------------------------------------------------------------------------------- /src/web_interface/templates/user_management/edit_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkie-cad/FACT_core/HEAD/src/web_interface/templates/user_management/edit_user.html --------------------------------------------------------------------------------