├── .github └── workflows │ ├── go_build_linux.yml │ └── go_build_windows.yml ├── Icon.png ├── LICENSE ├── README.linux-compilation.md ├── README.md ├── README.windows-compilation.md ├── configuration.go ├── examples ├── CISA-AA21-259A │ ├── CISA-AA21-259A.yaml │ ├── EncryptJSP.yar │ └── ReportGenerate_jsp.yar ├── example_configuration_api_triage.yaml ├── example_configuration_distant.yaml ├── example_configuration_linux.yaml ├── example_configuration_windows.yaml ├── example_rule_linux.yar ├── example_rule_windows.yar ├── example_windows_api_triage.yar ├── linux-fontonlake │ └── eset_fontonlake_linux.yaml ├── log4j_vuln_checker │ └── config-log4j_vuln_checker.yaml └── proxyshell │ └── drophell.yaml ├── finder.go ├── finder_test.go ├── go.mod ├── go.sum ├── gui.go ├── logger.go ├── main.go ├── main_test.go ├── progressbar.go ├── progressbar_test.go ├── resources ├── linux_sfx.elf └── windows_sfx.exe ├── screenshots ├── fastfinder_basicUI.jpg ├── fastfinder_configuration_linux.jpg ├── fastfinder_configuration_picker.jpg ├── fastfinder_linux_scan.jpg └── fastfinder_matchs.jpg ├── sfxbuilder.go ├── tests ├── config_test_ciphered.yml ├── config_test_standard.yml ├── rule_test_ciphered.yar └── rule_test_standard.yar ├── utils_common.go ├── utils_common_test.go ├── utils_linux.go ├── utils_windows.go ├── yaraprocessing.go └── yaraprocessing_test.go /.github/workflows/go_build_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/.github/workflows/go_build_linux.yml -------------------------------------------------------------------------------- /.github/workflows/go_build_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/.github/workflows/go_build_windows.yml -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.linux-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/README.linux-compilation.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/README.md -------------------------------------------------------------------------------- /README.windows-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/README.windows-compilation.md -------------------------------------------------------------------------------- /configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/configuration.go -------------------------------------------------------------------------------- /examples/CISA-AA21-259A/CISA-AA21-259A.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/CISA-AA21-259A/CISA-AA21-259A.yaml -------------------------------------------------------------------------------- /examples/CISA-AA21-259A/EncryptJSP.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/CISA-AA21-259A/EncryptJSP.yar -------------------------------------------------------------------------------- /examples/CISA-AA21-259A/ReportGenerate_jsp.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/CISA-AA21-259A/ReportGenerate_jsp.yar -------------------------------------------------------------------------------- /examples/example_configuration_api_triage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/example_configuration_api_triage.yaml -------------------------------------------------------------------------------- /examples/example_configuration_distant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/example_configuration_distant.yaml -------------------------------------------------------------------------------- /examples/example_configuration_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/example_configuration_linux.yaml -------------------------------------------------------------------------------- /examples/example_configuration_windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/example_configuration_windows.yaml -------------------------------------------------------------------------------- /examples/example_rule_linux.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/example_rule_linux.yar -------------------------------------------------------------------------------- /examples/example_rule_windows.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/example_rule_windows.yar -------------------------------------------------------------------------------- /examples/example_windows_api_triage.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/example_windows_api_triage.yar -------------------------------------------------------------------------------- /examples/linux-fontonlake/eset_fontonlake_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/linux-fontonlake/eset_fontonlake_linux.yaml -------------------------------------------------------------------------------- /examples/log4j_vuln_checker/config-log4j_vuln_checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/log4j_vuln_checker/config-log4j_vuln_checker.yaml -------------------------------------------------------------------------------- /examples/proxyshell/drophell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/examples/proxyshell/drophell.yaml -------------------------------------------------------------------------------- /finder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/finder.go -------------------------------------------------------------------------------- /finder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/finder_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/go.sum -------------------------------------------------------------------------------- /gui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/gui.go -------------------------------------------------------------------------------- /logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/logger.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/main_test.go -------------------------------------------------------------------------------- /progressbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/progressbar.go -------------------------------------------------------------------------------- /progressbar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/progressbar_test.go -------------------------------------------------------------------------------- /resources/linux_sfx.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/resources/linux_sfx.elf -------------------------------------------------------------------------------- /resources/windows_sfx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/resources/windows_sfx.exe -------------------------------------------------------------------------------- /screenshots/fastfinder_basicUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/screenshots/fastfinder_basicUI.jpg -------------------------------------------------------------------------------- /screenshots/fastfinder_configuration_linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/screenshots/fastfinder_configuration_linux.jpg -------------------------------------------------------------------------------- /screenshots/fastfinder_configuration_picker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/screenshots/fastfinder_configuration_picker.jpg -------------------------------------------------------------------------------- /screenshots/fastfinder_linux_scan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/screenshots/fastfinder_linux_scan.jpg -------------------------------------------------------------------------------- /screenshots/fastfinder_matchs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/screenshots/fastfinder_matchs.jpg -------------------------------------------------------------------------------- /sfxbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/sfxbuilder.go -------------------------------------------------------------------------------- /tests/config_test_ciphered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/tests/config_test_ciphered.yml -------------------------------------------------------------------------------- /tests/config_test_standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/tests/config_test_standard.yml -------------------------------------------------------------------------------- /tests/rule_test_ciphered.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/tests/rule_test_ciphered.yar -------------------------------------------------------------------------------- /tests/rule_test_standard.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/tests/rule_test_standard.yar -------------------------------------------------------------------------------- /utils_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/utils_common.go -------------------------------------------------------------------------------- /utils_common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/utils_common_test.go -------------------------------------------------------------------------------- /utils_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/utils_linux.go -------------------------------------------------------------------------------- /utils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/utils_windows.go -------------------------------------------------------------------------------- /yaraprocessing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/yaraprocessing.go -------------------------------------------------------------------------------- /yaraprocessing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeyourweb/fastfinder/HEAD/yaraprocessing_test.go --------------------------------------------------------------------------------