Approved
Sign in to vote on ideas
+2
Sign in to vote on ideas

LINUX MITRE ATT&CK TTP Detector (DATA LAKE)

Below is a DATA LAKE QUERY for a basic LINUX and MAC OS TTP Detection query.

It has multiple  variables

VARIABLES

  • Number of hours to search        STRING
  • Verbosity 0-9 (use 10 for ALL)   STRING
  • device_name                             STRING
  • mitre_id                                      STRING
  • tactic name                                STRING
  • technique name                         STRING
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**************************************************************************\
| this query was derived from examination of the the purple team field |
| manual ptfm in july 2021. rules are for nix systems only |
\**************************************************************************/
-- common mitre att&ck ttps (ptfm)
-- variable $$device_name$$ string
-- variable $$mitre_id$$ string
-- variable $$tactic name$$ string
-- variable $$technique name$$ string
-- variable $$Number of hours to search$$ string
-- variable $$Verbosity 0-9 (use 10 for ALL)$$ string verbosity score of 10 indicates it has not been evaluated
-- provide a map to the mitre info
with mitre_techniques(id, subid, tactic, technique, subtechnique) as (
values
-- collection
('t1039', '', 'collection','data from network shared drive', ''),
('t1113', '', 'collection','screen capture', ''),
('t1115', '', 'collection','clipboard data', ''),
('t1123', '', 'collection','audio capture', ''),
('t1560', '.001', 'collection','archive collected data', 'archive via utility'),
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  • 0 comments
  • 0 members are here