Reorder functions in binaries

This commit is contained in:
Emilio Pinna
2018-07-04 19:26:52 +01:00
parent 80b20b6991
commit d6895f367d
81 changed files with 1171 additions and 1123 deletions

View File

@@ -1,12 +1,12 @@
---
functions:
execute-non-interactive:
- code: watch /usr/bin/id
sudo-enabled:
- code: sudo watch /usr/bin/id
- code: watch /usr/bin/id
suid-enabled:
- description: This keeps the SUID privileges only if the `-x` option is present.
code: ./watch -x /usr/bin/id
- description: This keeps the SUID privileges only if the `-x` option is present.
code: "./watch -x /usr/bin/id"
sudo-enabled:
- code: sudo watch /usr/bin/id
suid-limited:
- code: ./watch /usr/bin/id
- code: "./watch /usr/bin/id"
---