Python volatility.plugins.malware.malfind.YaraScan() Examples
The following are 2
code examples of volatility.plugins.malware.malfind.YaraScan().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
volatility.plugins.malware.malfind
, or try the search function
.
Example #1
Source File: mac_yarascan.py From aumfor with GNU General Public License v3.0 | 5 votes |
def __init__(self, config, *args, **kwargs): malfind.YaraScan.__init__(self, config, *args, **kwargs) self._config.add_option('MAX-SIZE', short_option = 'M', default = 0x40000000, action = 'store', type = 'long', help = 'Set the maximum size (default is 1GB)')
Example #2
Source File: mac_yarascan.py From volatility with GNU General Public License v2.0 | 5 votes |
def __init__(self, config, *args, **kwargs): malfind.YaraScan.__init__(self, config, *args, **kwargs) self._config.add_option('MAX-SIZE', short_option = 'M', default = 0x40000000, action = 'store', type = 'long', help = 'Set the maximum size (default is 1GB)')