mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-11-11 05:21:05 +00:00
Merge master to features/yara.
This commit is contained in:
commit
a80453e6e9
66 changed files with 3142 additions and 1048 deletions
|
|
@ -2970,7 +2970,13 @@ void cli_bytecode_describe(const struct cli_bc *bc)
|
|||
puts("logical only");
|
||||
break;
|
||||
case BC_PE_UNPACKER:
|
||||
puts("PE hook");
|
||||
puts("PE unpacker hook");
|
||||
break;
|
||||
case BC_PE_ALL:
|
||||
puts("all PE hook");
|
||||
break;
|
||||
case BC_PRECLASS:
|
||||
puts("preclass hook");
|
||||
break;
|
||||
default:
|
||||
printf("Unknown (type %u)", bc->kind);
|
||||
|
|
@ -3007,6 +3013,12 @@ void cli_bytecode_describe(const struct cli_bc *bc)
|
|||
else
|
||||
puts("all PE files!");
|
||||
break;
|
||||
case BC_PRECLASS:
|
||||
if (bc->lsig)
|
||||
puts("PRECLASS files matching logical signature");
|
||||
else
|
||||
puts("all PRECLASS files!");
|
||||
break;
|
||||
default:
|
||||
puts("N/A (unknown type)\n");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue