Entity Objects
the dolookup method receives an array of entity objects
Entity Object
type
// Sample IPv4 entity
{
type: 'IPv4',
types: ['IP', 'IPv4']
}
// Sample IPv6 entity
{
type: 'IPv6',
types: ['IP', 'IPv6']
}
// Sample MD5 entity
{
type: 'hash',
types: ['hash', 'MD5']
}
// Sample SHA1 entity
{
type: 'hash',
types: ['hash', 'SHA1']
}
// Sample custom entity
{
type: 'custom',
types: ['custom.hostname']
}Last updated