Copy Passwd Or Shadow From TMP Path

Detects when the file "passwd" or "shadow" is copied from tmp path

Sigma rule (View on GitHub)

 1title: Copy Passwd Or Shadow From TMP Path
 2id: fa4aaed5-4fe0-498d-bbc0-08e3346387ba
 3status: test
 4description: Detects when the file "passwd" or "shadow" is copied from tmp path
 5references:
 6    - https://blogs.blackberry.com/
 7    - https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144
 8author: Joseliyo Sanchez, @Joseliyo_Jstnk
 9date: 2023/01/31
10tags:
11    - attack.credential_access
12    - attack.t1552.001
13logsource:
14    product: linux
15    category: process_creation
16detection:
17    selection_img:
18        Image|endswith: '/cp'
19    selection_path:
20        CommandLine|contains: '/tmp/'
21    selection_file:
22        CommandLine|contains:
23            - 'passwd'
24            - 'shadow'
25    condition: all of selection_*
26falsepositives:
27    - Unknown
28level: high

References

Related rules

to-top