mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-08-14 03:40:50 +00:00
update auto commit message, rename wordlist and references to it, title case in markdown headings
This commit is contained in:
@@ -1,17 +1,17 @@
|
|||||||
# etc file list updater
|
# Etc File List Updater
|
||||||
|
|
||||||
## overview
|
## Overview
|
||||||
The purpose of this set of scripts is to update the file `Fuzzing/LFI/LFI-coyote0x90-linux-etc-files.txt`.
|
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.
|
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.
|
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.
|
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.
|
The script must be run from its working directory.
|
||||||
```bash
|
```bash
|
||||||
cd .bin/etc-files-list-update && ./update.sh
|
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.
|
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.
|
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
|
#!/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
|
[ -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
|
# 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
|
# commit and push
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
with:
|
with:
|
||||||
commit_message: update autogenerated files
|
commit_message: [Github Action] Updated LFI-etc-files-of-all-linux-packages.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user