Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

15 lines
293 B
Plaintext

##! This script enables expiration for intelligence items.
@load base/frameworks/intel
module Intel;
redef Intel::item_expiration = 10min;
hook item_expired(indicator: string, indicator_type: Type,
metas: set[MetaData]) &priority=-10
{
# Trigger removal of the expired item.
break;
}