48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
id: privesc-strace
|
|
|
|
info:
|
|
name: strace - Privilege Escalation
|
|
author: daffainfo
|
|
severity: high
|
|
description: |
|
|
strace is a diagnostic, debugging, and instructional utility for Linux. It is used to monitor the system calls and signals that a program receives, allowing users to trace and analyze its interactions with the kernel.
|
|
reference:
|
|
- https://gtfobins.github.io/gtfobins/strace/
|
|
metadata:
|
|
verified: true
|
|
tags: code,linux,strace,privesc
|
|
|
|
self-contained: true
|
|
code:
|
|
- engine:
|
|
- sh
|
|
- bash
|
|
source: |
|
|
whoami
|
|
|
|
- engine:
|
|
- sh
|
|
- bash
|
|
source: |
|
|
strace -o /dev/null whoami
|
|
|
|
- engine:
|
|
- sh
|
|
- bash
|
|
source: |
|
|
sudo strace -o /dev/null whoami
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: code_1_response
|
|
words:
|
|
- "root"
|
|
negative: true
|
|
|
|
- type: dsl
|
|
dsl:
|
|
- 'contains(code_2_response, "root")'
|
|
- 'contains(code_3_response, "root")'
|
|
condition: or
|
|
# digest: 490a00463044022004a60c344e7b5d1878acb82b78027520e0402053ce9b080ee9eb807f0f3d9fc202203695fa9cde0c6d2321fe3b994b6a5905cf6d1a7a8b369ff9dde21dca0b6324e9:922c64590222798bb761d5b6d8e72950 |