MISP/app/View/Events/view.ctp

231 lines
8.9 KiB
Plaintext
Raw Normal View History

<?php
$mayModify = (($isAclModify && $event['Event']['user_id'] == $me['id']) || ($isAclModifyOrg && $event['Event']['org'] == $me['org']));
$mayPublish = ($isAclPublish && $event['Event']['org'] == $me['org']);
?>
2011-11-26 10:45:31 +01:00
<div class="events view">
<div class="actions" style="float:right;">
<?php
if ($isSiteAdmin || $mayModify): ?>
<ul><li><?php echo $this->Html->link('Add Attribute', array('controller' => 'attributes', 'action' => 'add', $event['Event']['id']));?>
<?php echo $this->Html->link('Add Attachment', array('controller' => 'attributes', 'action' => 'add_attachment', $event['Event']['id']));?> </li></ul><br />
<?php
endif; ?>
<?php if ( 0 == $event['Event']['published'] && ($isAdmin || $mayPublish)):
2012-12-18 20:25:12 +01:00
// only show button if alert has not been sent // LATER show the ALERT button in red-ish
?>
<ul><li><?php
if ($isSiteAdmin || $mayPublish) {
2012-12-18 20:25:12 +01:00
echo $this->Form->postLink('Publish Event', array('action' => 'alert', $event['Event']['id']), null, 'Are you sure this event is complete and everyone should be informed?');
echo $this->Form->postLink('Publish (no email)', array('action' => 'publish', $event['Event']['id']), null, 'Publish but do NOT send alert email? Only for minor changes!');
}
?> </li></ul>
2012-12-18 20:25:12 +01:00
<?php elseif (0 == $event['Event']['published']): ?>
<ul><li>Not published</li></ul>
<?php else: ?>
<!-- ul><li>Alert already sent</li></ul -->
<?php
endif; ?>
<br /><ul><li><?php echo $this->Html->link(__('Contact reporter', true), array('action' => 'contact', $event['Event']['id'])); ?> </li></ul><br />
<ul><li><?php echo $this->Html->link(__('Download as XML', true), array('action' => 'downloadxml', $event['Event']['id'])); ?>
<?php echo $this->Html->link(__('Download as IOC', true), array('action' => 'downloadOpenIOCEvent', $event['Event']['id'])); ?> </li></ul>
2011-11-26 10:45:31 +01:00
</div>
<?php if ('true' == Configure::read('CyDefSIG.showorg') || $isAdmin): ?><?php echo $this->element('img', array('id' => $event['Event']['orgc']));?><?php
2012-12-18 20:25:12 +01:00
endif; ?>
<h2>Event</h2>
<dl>
<dt>ID</dt>
<dd>
<?php echo h($event['Event']['id']); ?>
2012-01-05 11:03:51 +01:00
&nbsp;
</dd>
2012-03-06 07:45:02 +01:00
<?php if ('true' == Configure::read('CyDefSIG.showorg') || $isAdmin): ?>
<dt>Org</dt>
<dd>
<?php echo h($event['Event']['orgc']); ?>
&nbsp;
</dd>
<?php
endif; ?>
<?php if ($isSiteAdmin): ?>
<dt>Owner org</dt>
<dd>
<?php echo h($event['Event']['org']); ?>
2011-11-26 10:45:31 +01:00
&nbsp;
</dd>
2012-12-18 20:25:12 +01:00
<?php
endif; ?>
<?php if ($isSiteAdmin || ($isAdmin && $me['org'] == $event['Event']['org'])): ?>
2012-07-19 14:53:12 +02:00
<dt>Email</dt>
<dd>
<?php echo h($event['User']['email']); ?>
&nbsp;
</dd>
2012-12-18 20:25:12 +01:00
<?php
endif; ?>
<dt>Date</dt>
<dd>
<?php echo h($event['Event']['date']); ?>
2011-11-26 10:45:31 +01:00
&nbsp;
</dd>
2013-04-22 15:22:20 +02:00
<dt title="<?php echo h($eventDescriptions['risk']['desc']);?>">Risk</dt>
<dd>
2013-04-22 15:22:20 +02:00
<?php echo h($event['Event']['risk']); ?>
2011-11-26 10:45:31 +01:00
&nbsp;
</dd>
2013-04-22 15:22:20 +02:00
<dt title="<?php echo h($eventDescriptions['analysis']['desc']);?>">Analysis</dt>
<dd>
2013-04-22 15:22:20 +02:00
<?php echo h($analysisLevels[$event['Event']['analysis']]); ?>
&nbsp;
</dd>
<dt>Distribution</dt>
<dd>
2013-04-22 15:22:20 +02:00
<?php echo h($event['Event']['distribution'] . ', ' . strtolower(substr(($distributionDescriptions[$event['Event']['distribution']]['formdesc']), 0, 1)) . substr($distributionDescriptions[$event['Event']['distribution']]['formdesc'], 1) . '.'); ?>
&nbsp;
</dd>
2012-03-20 13:40:58 +01:00
<!-- dt>UUID</dt>
<dd>
2013-04-22 15:22:20 +02:00
<?php echo h($event['Event']['uuid']); ?>
2012-03-20 13:40:58 +01:00
&nbsp;
</dd -->
<dt>Info</dt>
<dd>
2013-04-22 15:22:20 +02:00
<?php echo nl2br(h($event['Event']['info'])); ?>
2011-11-26 10:45:31 +01:00
&nbsp;
</dd>
</dl><br />
2012-12-18 20:25:12 +01:00
<?php
if (!empty($relatedEvents)):?>
<div class="related">
<h3>Related Events</h3>
<ul>
2012-12-18 20:25:12 +01:00
<?php
foreach ($relatedEvents as $relatedEvent): ?>
2013-04-22 15:22:20 +02:00
<li><?php $linkText = $relatedEvent['Event']['date'] . ' (' . $relatedEvent['Event']['id'] . ')';?>
<div title="<?php echo h($relatedEvent['Event']['info']);?>"><?php
if ($relatedEvent['Event']['org'] == $me['org']) {
echo $this->Html->link($linkText, array('controller' => 'events', 'action' => 'view', $relatedEvent['Event']['id']), array('class' => 'SameOrgLink'));
} else {
echo $this->Html->link($linkText, array('controller' => 'events', 'action' => 'view', $relatedEvent['Event']['id']));
}
2013-04-22 15:22:20 +02:00
?></div></li>
2012-12-18 20:25:12 +01:00
<?php
endforeach; ?>
</ul>
</div><br />
2012-12-18 20:25:12 +01:00
<?php
endif; ?>
<div class="related">
<h3>Attributes</h3>
2012-12-18 20:25:12 +01:00
<?php
if (!empty($event['Attribute'])):?>
2013-04-22 15:22:20 +02:00
<table cellpadding="0" cellspacing="0">
<tr>
<th>Category</th>
<th>Type</th>
<th>Value</th>
<th>Related Events</th>
2013-04-22 15:22:20 +02:00
<th title="<?php echo $attrDescriptions['signature']['desc'];?>">IDS Signature</th>
<th title="<?php echo $attrDescriptions['private']['desc'];?>">Distribution</th>
2012-12-18 20:25:12 +01:00
<?php
if ($isAdmin || $mayModify): ?>
<th class="actions">Actions</th>
2012-12-18 20:25:12 +01:00
<?php
endif;?>
</tr><?php
2012-12-18 20:25:12 +01:00
foreach ($categories as $category):
$first = 1;
foreach ($event['Attribute'] as $attribute):
if ($attribute['category'] != $category) continue;?>
<tr>
<td class="short" title="<?php if('' != $attribute['category']) echo $categoryDefinitions[$attribute['category']]['desc'];?>"><?php
2013-04-22 15:22:20 +02:00
if ($first) {
if ('' == $attribute['category']) echo '(no category)';
echo h($attribute['category']);
} else {
echo '&nbsp;';
}?>
</td>
<td class="short" title="<?php echo $typeDefinitions[$attribute['type']]['desc'];?>">
<?php echo h($attribute['type']);?></td>
<td><?php
2013-04-24 15:20:20 +02:00
$sigDisplay = $attribute['value'];
2013-04-22 15:22:20 +02:00
if ('attachment' == $attribute['type'] || 'malware-sample' == $attribute['type'] ) {
$filenameHash = explode('|', $attribute['value']);
if (strrpos($filenameHash[0], '\\')) {
$filepath = substr($filenameHash[0], 0, strrpos($filenameHash[0], '\\'));
$filename = substr($filenameHash[0], strrpos($filenameHash[0], '\\'));
echo h($filepath);
echo $this->Html->link($filename, array('controller' => 'attributes', 'action' => 'download', $attribute['id']));
} else {
echo $this->Html->link($filenameHash[0], array('controller' => 'attributes', 'action' => 'download', $attribute['id']));
}
if (isset($filenameHash[1])) echo ' | ' . h($filenameHash[1]);
} elseif (strpos($attribute['type'], '|') !== false) {
$filenameHash = explode('|', $attribute['value']);
echo h($filenameHash[0]);
if (isset($filenameHash[1])) echo ' | ' . h($filenameHash[1]);
} elseif ('vulnerability' == $attribute['type']) {
2013-04-24 15:20:20 +02:00
echo $this->Html->link($sigDisplay, 'http://www.google.com/search?q=' . h($sigDisplay), array('target' => '_blank'));
2013-04-22 15:22:20 +02:00
} elseif ('link' == $attribute['type']) {
2013-04-24 15:20:20 +02:00
echo $this->Html->link(h($sigDisplay), h($sigDisplay));
2013-04-22 15:22:20 +02:00
} else {
2013-04-24 15:20:20 +02:00
echo nl2br(h($sigDisplay));
2013-04-22 15:22:20 +02:00
}?>
</td>
<td class="short" style="text-align: center;">
<?php
2013-04-22 15:04:27 +02:00
if (isset($relatedAttributes[$attribute['id']]) && (null != $relatedAttributes[$attribute['id']])) {
foreach ($relatedAttributes[$attribute['id']] as $relatedAttribute) {
echo '<span title="'.h($relatedAttribute['info']).'">';
if ($relatedAttribute['org'] == $me['org']) {
echo $this->Html->link($relatedAttribute['id'], array('controller' => 'events', 'action' => 'view', $relatedAttribute['id']), array ('class' => 'SameOrgLink'));
} else {
echo $this->Html->link($relatedAttribute['id'], array('controller' => 'events', 'action' => 'view', $relatedAttribute['id']));
}
echo "</span> ";
}
2012-12-18 20:25:12 +01:00
}
?>&nbsp;
</td>
<td class="short" style="text-align: center;"><?php echo $attribute['to_ids'] ? 'Yes' : 'No';?></td>
2013-04-22 15:22:20 +02:00
<td class="short" style="text-align: center;"><?php echo h($attribute['distribution'] != 'All communities' ? $attribute['distribution'] : 'All');?></td>
2012-12-18 20:25:12 +01:00
<?php
if ($isSiteAdmin || $mayModify): ?>
<td class="actions">
<?php
echo $this->Html->link(__('Edit', true), array('controller' => 'attributes', 'action' => 'edit', $attribute['id']));
echo $this->Form->postLink(__('Delete'), array('controller' => 'attributes', 'action' => 'delete', $attribute['id']), null, __('Are you sure you want to delete this attribute? Keep in mind that this will also delete this attribute on remote MISP instances.'));
?>
</td>
2012-12-18 20:25:12 +01:00
<?php
endif;?>
</tr>
2012-12-18 20:25:12 +01:00
<?php
endforeach; ?>
<?php
endforeach; ?>
</table>
2012-12-18 20:25:12 +01:00
<?php
endif; ?>
</div>
2011-11-26 10:45:31 +01:00
</div>
<div class="actions">
<ul>
2012-12-18 20:25:12 +01:00
<?php
if ($isSiteAdmin || $mayModify): ?>
<li><?php echo $this->Html->link(__('Add Attribute', true), array('controller' => 'attributes', 'action' => 'add', $event['Event']['id']));?> </li>
<li><?php echo $this->Html->link(__('Add Attachment', true), array('controller' => 'attributes', 'action' => 'add_attachment', $event['Event']['id']));?> </li>
<li><?php echo $this->Html->link(__('Edit Event', true), array('action' => 'edit', $event['Event']['id'])); ?> </li>
<li><?php echo $this->Form->postLink(__('Delete Event'), array('action' => 'delete', $event['Event']['id']), null, __('Are you sure you want to delete # %s?', $event['Event']['id'])); ?></li>
2011-11-26 10:45:31 +01:00
<li>&nbsp;</li>
2012-12-18 20:25:12 +01:00
<?php
endif; ?>
<?php echo $this->element('actions_menu'); ?>
2011-11-26 10:45:31 +01:00
</ul>
2012-12-18 20:25:12 +01:00
</div>