Skip to content

Commit 9bf9f2e

Browse files
authored
Merge pull request danielmiessler#696 from ItsIgnacioPortal/master
Create universally useful combined web discovery wordlists which auto-update
2 parents 0db72b1 + 2147ad8 commit 9bf9f2e

File tree

5 files changed

+1467945
-0
lines changed

5 files changed

+1467945
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Wordlist Updater - directories
2+
3+
on:
4+
push:
5+
paths:
6+
- 'Discovery/Web-Content/raft-small-directories.txt'
7+
- 'Discovery/Web-Content/raft-small-directories-lowercase.txt'
8+
- 'Discovery/Web-Content/directory-list-2.3-small.txt'
9+
- 'Discovery/Web-Content/raft-medium-directories-lowercase.txt'
10+
- 'Discovery/Web-Content/raft-medium-directories.txt'
11+
- 'Discovery/Web-Content/directory-list-2.3-medium.txt'
12+
- 'Discovery/Web-Content/apache.txt '
13+
- 'Discovery/Web-Content/directory-list-2.3-big.txt'
14+
- 'Discovery/Web-Content/raft-large-directories-lowercase.txt'
15+
- 'Discovery/Web-Content/raft-large-directories.txt '
16+
- 'Discovery/Web-Content/directory-list-1.0.txt'
17+
- 'Discovery/Web-Content/combined_words.txt'
18+
19+
jobs:
20+
update_combined_words:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v2
24+
- name: Generate combined_directories.txt
25+
run: cd Discovery/Web-Content/ && cat raft-small-directories* directory-list-2.3-small.txt raft-medium-directories* directory-list-2.3-medium.txt apache.txt combined_words.txt directory-list-2.3-big.txt raft-large-directories* directory-list-1.0.txt | awk '! seen[$0]++' > combined_directories.txt
26+
- name: Switching from HTTPS to SSH
27+
run: git remote set-url origin [email protected]:danielmiessler/SecLists.git
28+
- name: Check for changes
29+
run: git status
30+
- name: Stage changed files
31+
run: git add Discovery/Web-Content/combined_directories.txt
32+
- name: Configure git email and username
33+
run: |
34+
git config --local user.email "[email protected]"
35+
git config --local user.name "GitHub Action"
36+
- name: Commit changed files
37+
run: git commit -m "[Github Action] Updated combined_directories.txt"
38+
- name: Push changes # push the output folder to your repo
39+
uses: ad-m/github-push-action@master
40+
with:
41+
github_token: ${{ secrets.GITHUB_TOKEN }}
42+
force: true
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Wordlist Updater - words
2+
3+
on:
4+
push:
5+
paths:
6+
- 'Discovery/Web-Content/common.txt'
7+
- 'Discovery/Web-Content/raft-small-words.txt'
8+
- 'Discovery/Web-Content/raft-small-words-lowercase.txt'
9+
- 'Discovery/Web-Content/raft-medium-words-lowercase.txt'
10+
- 'Discovery/Web-Content/raft-medium-words.txt'
11+
- 'Discovery/Web-Content/big.txt'
12+
- 'Discovery/Web-Content/raft-large-words-lowercase.txt'
13+
- 'Discovery/Web-Content/raft-large-words.txt'
14+
15+
jobs:
16+
update_combined_words:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Generate combined_words.txt
21+
run: cd Discovery/Web-Content/ && cat common.txt raft-small-words* raft-medium-words* big.txt raft-large-words* | awk '! seen[$0]++' > combined_words.txt
22+
- name: Switching from HTTPS to SSH
23+
run: git remote set-url origin [email protected]:danielmiessler/SecLists.git
24+
- name: Check for changes
25+
run: git status
26+
- name: Stage changed files
27+
run: git add Discovery/Web-Content/combined_words.txt
28+
- name: Configure git email and username
29+
run: |
30+
git config --local user.email "[email protected]"
31+
git config --local user.name "GitHub Action"
32+
- name: Commit changed files
33+
run: git commit -m "[Github Action] Updated combined_words.txt"
34+
- name: Push changes # push the output folder to your repo
35+
uses: ad-m/github-push-action@master
36+
with:
37+
github_token: ${{ secrets.GITHUB_TOKEN }}
38+
force: true

Discovery/Web-Content/README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Web discovery wordlists
2+
3+
## combined_words.txt
4+
5+
Use for: discovering files
6+
This list is automatically updated by a github action whenever any of the lists it's composed by is modified.
7+
8+
This list is a combination of the following wordlists:
9+
10+
- big.txt
11+
- common.txt
12+
- raft-large-words-lowercase.txt
13+
- raft-large-words.txt
14+
- raft-medium-words-lowercase.txt
15+
- raft-medium-words.txt
16+
- raft-small-words-lowercase.txt
17+
- raft-small-words.txt
18+
19+
20+
## combined_directories.txt
21+
22+
Use for: discovering files and directories
23+
This list is automatically updated by a github action whenever any of the lists it's composed by is modified.
24+
25+
This list is a combination of the following wordlists:
26+
- apache.txt
27+
- combined_words.txt
28+
- directory-list-1.0.txt
29+
- directory-list-2.3-big.txt
30+
- directory-list-2.3-medium.txt
31+
- directory-list-2.3-small.txt
32+
- raft-large-directories-lowercase.txt
33+
- raft-large-directories.txt
34+
- raft-medium-directories-lowercase.txt
35+
- raft-medium-directories.txt
36+
- raft-small-directories-lowercase.txt
37+
- raft-small-directories.txt

0 commit comments

Comments
 (0)