Skip to content

Fix typo in linpeas builder arg help #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo in linpeas builder output argument
  • Loading branch information
carlospolop committed Jun 5, 2025
commit d5e3c2a885c8347b60d00dd6b02b42452fa6de54
2 changes: 1 addition & 1 deletion linPEAS/builder/linpeas_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main(all_modules, all_no_fat_modules, no_network_scanning, small, include_mo
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
Expand Down