From 04b287481915966a858694a2beb9f9842b4ea9dc Mon Sep 17 00:00:00 2001 From: Vicente Jimenez Aguilar Date: Thu, 14 Oct 2021 01:45:25 +0200 Subject: [PATCH] Correct apt invocations Correct two invocations incorrectly writed as apt-get. Both commands have similar options and behaviours. --- _gtfobins/apt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_gtfobins/apt.md b/_gtfobins/apt.md index 325cdb7..ad61741 100644 --- a/_gtfobins/apt.md +++ b/_gtfobins/apt.md @@ -3,12 +3,12 @@ functions: shell: - description: This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply. code: | - apt-get changelog apt + apt changelog apt !/bin/sh sudo: - description: This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply. code: | - sudo apt-get changelog apt + sudo apt changelog apt !/bin/sh - description: For this to work the target package (e.g., `sl`) must not be installed. code: |