Form->create('Attribute', array('url' => array('controller' => 'attributes', 'action' => 'search', 'results')));?>
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 (!) in front of the term.'); ?>


Form->input('value', array('type' => 'textarea', 'rows' => 2, 'label' => __('Containing the following expressions'), 'div' => 'clear', 'class' => 'input-xxlarge', 'required' => false)); echo $this->Form->input('tags', array('type' => 'textarea', 'rows' => 2, 'label' => __('Having tag or being an attribute of an event having the tag'), 'div' => 'clear', 'class' => 'input-xxlarge', 'required' => false)); echo $this->Form->input('uuid', array('type' => 'textarea', 'rows' => 2, 'maxlength' => false, 'label' => __('Being attributes of the following event IDs, event UUIDs or attribute UUIDs'), 'div' => 'clear', 'class' => 'input-xxlarge', 'required' => false)); echo $this->Form->input('org', array( 'type' => 'textarea', 'label' => __('From the following organisation(s)'), 'div' => 'input clear', 'rows' => 2, 'class' => 'input-xxlarge')); echo $this->Form->input('type', array( 'div' => 'input clear', 'required' => false )); echo $this->Form->input('category', array('required' => false)); ?>
Form->input('to_ids', array( 'type' => 'checkbox', 'label' => __('Only find IOCs flagged as to IDS') )); echo $this->Form->input('alternate', array( 'type' => 'checkbox', 'label' => __('Alternate Search Result (Events)') )); echo $this->Form->input('first_seen', array( 'type' => 'text', 'div' => 'input hidden', 'required' => false, )); echo $this->Form->input('last_seen', array( 'type' => 'text', 'div' => 'input hidden', 'required' => false, )); ?>

Form->end(); ?>
element('form_seen_input'); ?> element('/genericElements/SideMenu/side_menu', array('menuList' => 'event-collection', 'menuItem' => 'searchAttributes')); echo $this->Js->writeBuffer(); ?>