nuclei-templates/code/privilege-escalation/linux/binary/privesc-tmate.yaml

47 lines
901 B
YAML
Raw Normal View History

2024-01-22 13:29:57 +00:00
id: privesc-tmate
2023-12-13 15:07:24 +00:00
info:
name: tmate - Privilege Escalation
author: daffainfo
severity: high
2024-01-22 13:29:57 +00:00
description: |
tmate is a terminal multiplexer that allows multiple users to access and collaborate in the same terminal session.
reference:
- https://gtfobins.github.io/gtfobins/tmate/
2023-12-13 15:07:24 +00:00
metadata:
verified: true
tags: code,linux,tmate,privesc
self-contained: true
code:
- engine:
- sh
- bash
source: |
2024-01-22 13:29:57 +00:00
whoami
2023-12-13 15:07:24 +00:00
- engine:
- sh
- bash
source: |
2024-01-22 13:29:57 +00:00
tmate -c whoami
2023-12-13 15:07:24 +00:00
- engine:
- sh
- bash
source: |
2024-01-22 13:29:57 +00:00
sudo tmate -c whoami
2023-12-13 15:07:24 +00:00
matchers-condition: and
matchers:
2024-01-22 13:29:57 +00:00
- type: word
part: code_1_response
words:
- "root"
negative: true
2023-12-13 15:07:24 +00:00
- type: dsl
dsl:
- 'contains(code_2_response, "root")'
- 'contains(code_3_response, "root")'
condition: or