Form->create('Attribute');?>
Search Attribute You can search for attributes based on contained expression within the value, event ID, submiting organisation, category and type.
For the value, event ID and organisation, you can enter several search terms by entering each term as a new line. To exclude things from a result, use the NOT operator (!) infront of the term.

Form->input('keyword', array('type' => 'textarea', 'label' => 'Containing the following expressions', 'div' => 'clear', 'class' => 'input-xxlarge')); echo $this->Form->input('keyword2', array('type' => 'textarea', 'label' => 'Being attributes of the following event IDs or event UUIDs', 'div' => 'clear', 'class' => 'input-xxlarge')); echo $this->Form->input('tags', array('type' => 'textarea', 'label' => 'Being an attribute of an event matching the following tags', 'div' => 'clear', 'class' => 'input-xxlarge')); ?> Form->input('org', array( 'type' => 'textarea', 'label' => 'From the following organisation(s)', 'div' => 'input clear', 'class' => 'input-xxlarge')); ?> Form->input('type', array( 'div' => 'input clear', )); echo $this->Form->input('category', array( )); ?>
Form->input('ioc', array( 'type' => 'checkbox', 'label' => 'Only find valid IOCs', )); echo $this->Form->input('alternate', array( 'type' => 'checkbox', 'label' => 'Alternate Search Result (Events)', )); ?>
Form->button('Search', array('class' => 'btn btn-primary')); echo $this->Form->end(); ?>
element('side_menu', array('menuList' => 'event-collection', 'menuItem' => 'searchAttributes')); ?> Js->writeBuffer(); // Write cached scripts ?>