We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Yaramod do not add modifiers to hexstring.
Example code:
import yaramod string = yaramod.YaraHexStringBuilder(0x58) print( yaramod.YaraRuleBuilder() .with_name('asd') .with_hex_string('$asd', string.get()) .private() .get().text )
It will print something like this:
rule asd { strings: $asd = { 58 } condition: true }
But it should print string with modifier
rule asd { strings: $asd = { 58 } private condition: true }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Yaramod do not add modifiers to hexstring.
Example code:
It will print something like this:
But it should print string with modifier
The text was updated successfully, but these errors were encountered: