Commit Graph

350 Commits (c1ee4d8bfbb9dcbb5703cd8bdeb76c5c6812edc7)

Author SHA1 Message Date
mokaddem 549028c7af
fix: [event:view] Restored disabled_correlation toggle 2020-04-17 14:59:25 +02:00
mokaddem 07ff3dabb7
fix: [event:view] Show correct number of related events to be shown -
Fix #5732
2020-03-30 08:42:52 +02:00
mokaddem a1fdea754d
Merge branch 'zoidberg-timeline' into zoidberg-final 2019-12-06 15:40:51 +01:00
mokaddem 507676f1ce
fix: [event:view] Pivot form related event fixed 2019-12-03 15:05:01 +01:00
mokaddem f58770a90a
Merge branch '2.4' of github.com:MISP/MISP into zoidberg-timeline 2019-11-05 13:51:03 +01:00
mokaddem be8f6f0bb0
fix: [Tag:exclusive] Code clean up 2019-11-04 15:46:53 +01:00
mokaddem 1aaa590e30
chg: [event:view] Added notice and improved inconsistency text message 2019-11-04 13:41:53 +01:00
mokaddem 213e8b5049
new: [tags] Preminilary support of exclusive tags based on taxonomy data 2019-11-04 11:54:22 +01:00
Davide Baglieri 44f6c58689
Minor visual bug in event view
Creating a new event with no attributes the "First recorded change" value displayed is "1970-01-01 01:00:00".

![MISP_Event](https://raw.githubusercontent.com/davidonzo/host/master/misp_loves_70s_me_too.png)

This is quite normal looking at the php code in "app/Controller/EventsController.php" from line 1277 to 1289
```
$oldest_timestamp = false;
        if (!empty($event['Object'])) {
            foreach ($event['Object'] as $k => $object) {
                if (!empty($object['Attribute'])) {
                    foreach ($object['Attribute'] as $attribute) {
                        if ($oldest_timestamp == false || $oldest_timestamp < $attribute['timestamp']) {
                            $oldest_timestamp = $attribute['timestamp'];
                        }
                    }
                    $attributeCount += count($object['Attribute']);
                }
            }
        }
```
Since no attributes/objects are added to the event $oldest_timestamp will always be false.
It's just a little visual bug. So my pragmatic solution was change line 200 in "app/view/Events/view.ctp from 

```'value' => date('Y-m-d H:i:s', $oldest_timestamp)```

to

```'value' => (!$oldest_timestamp) ? '' : date('Y-m-d H:i:s', $oldest_timestamp)```
2019-10-21 12:27:36 +02:00
mokaddem 178bc7db46
Merge branch '2.4' of github.com:MISP/MISP into zoidberg-timeline 2019-06-24 16:01:08 +02:00
mokaddem 4ab4318eb2
chg: [event:view] Make `Related *` scrollable 2019-06-24 14:00:51 +02:00
mokaddem 2ea4916051 Merge branch '2.4' of github.com:MISP/MISP into zoidberg-timeline 2019-06-24 09:06:11 +02:00
mokaddem 9274522177 chg: [relatedEvent:view] Display the number of unique correlation 2019-06-21 11:21:43 +02:00
mokaddem e7f3d0d9df new: [timeline/*-seen] Initial import of the timeline code from the
zoidberg branch
2019-06-13 09:16:34 +02:00
mokaddem 7d5ea58418 chg: [view:relatedEvents] Improved UI 2019-06-07 16:07:05 +02:00
mokaddem c44ba8c486 chg: [relatedEvent:view] Started integration into event:view - WiP 2019-06-06 08:49:07 +02:00
mokaddem 46be1e918e chg: [event:view] Correctly display title to large by truncating
(+ellipsis)
2019-05-23 15:07:43 +02:00
mokaddem b192a6ce28 chg: [event:view] Added button to quickly extend an event. Fix #4481. 2019-05-06 15:38:08 +02:00
iglocska 251836ff97 fix: [UI] First recorded change fixed to not be copy pasta of the last change's timestamp 2019-04-04 15:00:05 +02:00
iglocska a90eaec445 Merge branch '2.4' of github.com:MISP/MISP into 2.4 2019-03-26 07:59:35 +01:00
iglocska 45f84dfd72 new: [UI] disable threat level from the UI based on a server setting, fixes #4359
- bye shitty deprecated field
2019-03-25 12:30:38 +01:00
iglocska a067fc769e new: [UI] Move to FA 5 2019-03-23 11:18:22 +01:00
4ekin 0b33adedc1 fix: fixed i18n string representation in Views
Fix for a plenty of Views with incorrect localizations (only English
text shown)
2019-03-21 18:10:26 +03:00
iglocska 6efd909bfe new: [Required taxonomies]
- Flip taxonomies into required mode to ensure that events cannot be published without at least one tag from each required taxonomy to be set
2019-03-19 15:59:31 +01:00
mokaddem 968d578e38 chg: [distributionNetwork] Integration with event index - WiP 2019-03-12 08:15:49 +01:00
mokaddem 6a7efb92c5 chg: [distributionGraph] Added bar chart and deferred distribution data
fetching process
2019-03-11 14:24:15 +01:00
iglocska 8e591f2843 fix: [UI] Contributors - file left off 2019-02-28 09:29:59 +01:00
mokaddem af735901fd new: [eventview] Shows number of object in the event 2019-02-26 16:33:37 +01:00
iglocska 2bb4bebce6 fix: [correlation UI] Fixed an issue where the cache contained correlations to a feed/server that is no longer in the DB 2019-02-23 18:52:34 +01:00
mokaddem 7e64a9d1c4 Merge branch '2.4' of github.com:MISP/MISP into eventFiltering 2019-02-15 15:22:46 +01:00
mokaddem 9fa063cbe8 chg: [galaxy_matrix] renamed view_matrix into view_galaxy_matrix 2019-02-15 09:41:17 +01:00
mokaddem 12ed3457e8 chg: [galaxy_matrix] cleanup in variable names to be more generic 2019-02-15 09:24:52 +01:00
mokaddem cb992c2f28 fix: [merge] added forgotten file... 2019-02-14 10:30:32 +01:00
mokaddem f40849a82b Merge branch '2.4' of github.com:MISP/MISP into udpatedMatrix 2019-02-14 10:27:32 +01:00
iglocska dfd0783d67 fix: [UI] Fixed extended by field 2019-02-13 16:35:46 +01:00
mokaddem 198f726f01 Merge branch '2.4' of github.com:MISP/MISP into eventFiltering 2019-02-13 16:19:20 +01:00
iglocska d8ee91be68 chg: [refactor] Side menu generic templates moved 2019-02-13 14:45:01 +01:00
mokaddem accac185e1 fix: [eventview] too many arguments 2019-02-13 11:29:21 +01:00
mokaddem 965184da24 Merge branch '2.4' of github.com:MISP/MISP into eventFiltering 2019-02-13 08:48:27 +01:00
mokaddem 42e26f62fe Merge branch '2.4' of github.com:MISP/MISP into udpatedMatrix 2019-02-12 14:02:31 +01:00
mokaddem 48701a246d chg: [attackMatrix] Updated the matrix to match the changes in the mitre
galaxies and improved layout - WiP
2019-02-11 16:16:37 +01:00
Christophe Vandeplas 124522e09a fix: bugfix of event info not shown when MISP.showorgalternate is on 2019-02-11 09:12:15 +01:00
iglocska 5be753022e new: [UI] metaview refactor
- event view uses the new parametrised system
- massive reduction of weird custom UI stuff to prepare MISP for a move to bootstrap 4
- should fix the dodgy UI issues that @rommelfs was experiencing on his Playmobil laptop
2019-02-07 16:57:29 +01:00
iglocska ebf51eca39 new: [UI] Added change tracking sparkline to the event view 2019-02-06 17:47:22 +01:00
mokaddem 21b42a30c5 chg: [eventFiltering] Improved filtering tool - WIP 2019-01-29 11:49:06 +01:00
mokaddem cc5143cd7a fix: [sighting] prevent ID collision in the UI.
Sighting canvas is now correctly positioned regardless of the id.
2019-01-24 11:36:09 +01:00
iglocska 8f125abb4b fix: [server correlation] Fixed broken correlation link on the event level 2019-01-23 15:28:57 +01:00
iglocska 8086b9de0a Merge branch 'features/server_caching' into 2.4 2019-01-18 16:16:00 +01:00
iglocska eb56fe4e01 chg: [remote cache] Further progress on caching remote instances 2019-01-18 15:33:04 +01:00
mokaddem 8a710ea367 Merge branch '2.4' into UISelector 2019-01-17 14:54:15 +01:00