├── README.md ├── modules ├── email_blacklist.txt ├── email_regexblacklist.txt ├── exe_blacklist.txt ├── exe_regexblacklist.txt ├── jshtml_blacklist.txt ├── jshtml_regexblacklist.txt ├── office_blacklist.txt ├── office_regexblacklist.txt ├── pdf_blacklist.txt ├── pdf_regexblacklist.txt ├── pefile.py ├── unknown_blacklist.txt └── unknown_regexblacklist.txt └── yaraGenerator.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xen0ph0n/YaraGenerator/HEAD/README.md -------------------------------------------------------------------------------- /modules/email_blacklist.txt: -------------------------------------------------------------------------------- 1 | undisclosed-recipients:; -------------------------------------------------------------------------------- /modules/email_regexblacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/exe_blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xen0ph0n/YaraGenerator/HEAD/modules/exe_blacklist.txt -------------------------------------------------------------------------------- /modules/exe_regexblacklist.txt: -------------------------------------------------------------------------------- 1 | ^thisisaplaceholder$ -------------------------------------------------------------------------------- /modules/jshtml_blacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/jshtml_regexblacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/office_blacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/office_regexblacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf_blacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf_regexblacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xen0ph0n/YaraGenerator/HEAD/modules/pefile.py -------------------------------------------------------------------------------- /modules/unknown_blacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/unknown_regexblacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaraGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xen0ph0n/YaraGenerator/HEAD/yaraGenerator.py --------------------------------------------------------------------------------