PEASS-ng/linPEAS/builder/linpeas_parts
KeoOp 7b9bf9cf91
Fix a bug of finding readable file in sudoers.d
Fix a bug of finding user readable file in /etc/sudoers.d
```
for filename in /etc/sudoers.d/*; do
    echo $filename  # filename is a array
done
```

```
for filename in '/etc/sudoers.d/*'; do
    echo $filename  # filename is a single long string
done
```
2023-03-08 16:37:32 +08:00
..
1_system_information.sh Update 1_system_information.sh 2022-11-21 15:17:28 +01:00
2_container.sh Update 2_container.sh 2022-09-30 13:48:06 +02:00
3_cloud.sh 10k update 2022-09-01 20:08:01 +02:00
4_procs_crons_timers_srvcs_sockets.sh 10k update 2022-09-01 20:08:01 +02:00
5_network_information.sh 10k update 2022-09-01 20:08:01 +02:00
6_users_information.sh Fix a bug of finding readable file in sudoers.d 2023-03-08 16:37:32 +08:00
7_software_information.sh 10k update 2022-09-01 20:08:01 +02:00
8_interesting_files.sh 10k update 2022-09-01 20:08:01 +02:00
9_api_keys_regex.sh linpeas update 2022-07-30 12:14:53 +02:00
linpeas_base.sh Update linpeas_base.sh 2022-12-31 00:58:00 +01:00