mirror of
https://github.com/danielmiessler/SecLists
synced 2025-12-06 08:53:59 +01:00
update auto commit message, rename wordlist and references to it, title case in markdown headings
This commit is contained in:
parent
44b881960a
commit
ca4f454d13
4 changed files with 7 additions and 7 deletions
|
|
@ -1,17 +1,17 @@
|
|||
# etc file list updater
|
||||
# Etc File List Updater
|
||||
|
||||
## overview
|
||||
The purpose of this set of scripts is to update the file `Fuzzing/LFI/LFI-coyote0x90-linux-etc-files.txt`.
|
||||
## Overview
|
||||
The purpose of this set of scripts is to update the file `Fuzzing/LFI/LFI-etc-files-of-all-linux-packages.txt`.
|
||||
It is intended to be run periodically.
|
||||
The scripts scan all deb packages in the ubuntu apt repository that have been updated since the last scan.
|
||||
URLs that have been scanned will be added to a data file that can be stored in git.
|
||||
|
||||
## running
|
||||
## Running
|
||||
The script must be run from its working directory.
|
||||
```bash
|
||||
cd .bin/etc-files-list-update && ./update.sh
|
||||
```
|
||||
|
||||
## details
|
||||
## Details
|
||||
URLs for deb files that have already been scanned are stored in gzip format in the `deb-url-history/` directory.
|
||||
The current ubuntu distro for which packages are retrieved is stored in the file `current_distro`. This should be changed every few years.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
export listpath="../../Fuzzing/LFI/LFI-coyote0x90-linux-etc-files.txt"
|
||||
export listpath="../../Fuzzing/LFI/LFI-etc-files-of-all-linux-packages.txt"
|
||||
[ -f all_files.gz ] && rm all_files.gz
|
||||
|
||||
# every year, start a new gzip list so there is not as much bloat updating blobs in git
|
||||
|
|
|
|||
|
|
@ -26,4 +26,4 @@ jobs:
|
|||
# commit and push
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: update autogenerated files
|
||||
commit_message: [Github Action] Updated LFI-etc-files-of-all-linux-packages.txt
|
||||
|
|
|
|||
Loading…
Reference in a new issue