From d5e3c2a885c8347b60d00dd6b02b42452fa6de54 Mon Sep 17 00:00:00 2001 From: SirBroccoli Date: Fri, 6 Jun 2025 00:38:05 +0200 Subject: [PATCH] Fix typo in linpeas builder output argument --- linPEAS/builder/linpeas_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linPEAS/builder/linpeas_builder.py b/linPEAS/builder/linpeas_builder.py index 2ccf344..eb6cde1 100644 --- a/linPEAS/builder/linpeas_builder.py +++ b/linPEAS/builder/linpeas_builder.py @@ -33,7 +33,7 @@ if __name__ == "__main__": parser.add_argument('--small', action='store_true', help='Build small version of linpeas.') parser.add_argument('--include', type=str, help='Build linpeas only with the modules indicated you can indicate section names or module IDs).') parser.add_argument('--exclude', type=str, help='Exclude the given modules (you can indicate section names or module IDs).') - parser.add_argument('--output', required=True, type=str, help='Parth to write the final linpeas file to.') + parser.add_argument('--output', required=True, type=str, help='Path to write the final linpeas file to.') args = parser.parse_args() all_modules = args.all