├── .gitattributes
├── .github
└── workflows
│ └── wordlists.yml
├── .gitignore
├── CNAME
├── LICENSE
├── README.md
├── assets
├── assetnote.png
├── css
│ ├── main.css
│ ├── normalize.css
│ └── syntax.css
├── favicon.ico
└── small.png
├── commonspeak2
├── data
├── automated.json
├── kiterunner.json
├── manual.json
└── technologies.json
├── gen-json.py
└── index.html
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.txt filter=lfs diff=lfs merge=lfs -text
2 |
--------------------------------------------------------------------------------
/.github/workflows/wordlists.yml:
--------------------------------------------------------------------------------
1 | name: generate and commit wordlists
2 | on: workflow_dispatch
3 | # on:
4 | # schedule:
5 | # - cron: "00 12 28 * *" # At 12:00 on day-of-month 28.
6 |
7 |
8 | jobs:
9 | wordlists:
10 | name: generate new wordlists
11 | runs-on: ubuntu-latest
12 | steps:
13 | - name: checkout
14 | uses: actions/checkout@v2
15 |
16 | - name: Set current date as env variable
17 | run: echo "NOW=$(date +'%Y_%m_%d')" >> $GITHUB_ENV
18 |
19 | - name: put service account creds in a file
20 | run: echo '${{ secrets.GCP_SERVICE_ACCOUNT_KEY }}' > ./credentials.json
21 |
22 | - name: make wordlists dir
23 | run: mkdir -p data/automated/
24 |
25 | - name: make technologies dir
26 | run: mkdir -p data/technologies/
27 |
28 | - name: wget
29 | run: wget -r --no-parent -R "index.html*" https://wordlists-cdn.assetnote.io/ -nH
30 |
31 | - name: generate ./data/automated/httparchive_parameters_top_1m_${{ env.NOW }}.txt
32 | run: |
33 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} parameters --output "./data/automated/httparchive_parameters_top_1m_${{ env.NOW }}.txt" --limit 1000000 --sources httparchive
34 |
35 | - name: sanity check
36 | run: head -n25 "./data/automated/httparchive_parameters_top_1m_${{ env.NOW }}.txt"
37 |
38 | - name: generate ./data/automated/httparchive_apiroutes_${{ env.NOW }}.txt
39 | run: |
40 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} apiroutes --output "./data/automated/httparchive_apiroutes_${{ env.NOW }}.txt" --limit 1000000 --sources httparchive
41 |
42 | - name: sanity check
43 | run: head -n25 "./data/automated/httparchive_apiroutes_${{ env.NOW }}.txt"
44 |
45 | - name: generate ./data/automated/httparchive_php_${{ env.NOW }}.txt
46 | run: |
47 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_php_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e php
48 |
49 | - name: sanity check
50 | run: head -n25 "./data/automated/httparchive_php_${{ env.NOW }}.txt"
51 |
52 | - name: generate ./data/automated/httparchive_jsp_jspa_do_action_${{ env.NOW }}.txt
53 | run: |
54 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_jsp_jspa_do_action_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e jsp,jspa,do,action
55 |
56 | - name: sanity check
57 | run: head -n25 "./data/automated/httparchive_jsp_jspa_do_action_${{ env.NOW }}.txt"
58 |
59 | - name: generate ./data/automated/httparchive_aspx_asp_cfm_svc_ashx_asmx_${{ env.NOW }}.txt
60 | run: |
61 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_aspx_asp_cfm_svc_ashx_asmx_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e aspx,asp,cfm,svc,ashx,asmx
62 |
63 | - name: sanity check
64 | run: head -n25 "./data/automated/httparchive_aspx_asp_cfm_svc_ashx_asmx_${{ env.NOW }}.txt"
65 |
66 | - name: generate ./data/automated/httparchive_html_htm_${{ env.NOW }}.txt
67 | run: |
68 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_html_htm_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e html,htm
69 |
70 | - name: sanity check
71 | run: head -n25 "./data/automated/httparchive_html_htm_${{ env.NOW }}.txt"
72 |
73 | - name: generate ./data/automated/httparchive_js_${{ env.NOW }}.txt
74 | run: |
75 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_js_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e js
76 |
77 | - name: sanity check
78 | run: head -n25 "./data/automated/httparchive_js_${{ env.NOW }}.txt"
79 |
80 | - name: generate ./data/automated/httparchive_cgi_pl_${{ env.NOW }}.txt
81 | run: |
82 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_cgi_pl_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e cgi,pl
83 |
84 | - name: sanity check
85 | run: head -n25 "./data/automated/httparchive_cgi_pl_${{ env.NOW }}.txt"
86 |
87 | - name: generate ./data/automated/httparchive_xml_${{ env.NOW }}.txt
88 | run: |
89 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_xml_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e xml
90 |
91 | - name: sanity check
92 | run: head -n25 "./data/automated/httparchive_xml_${{ env.NOW }}.txt"
93 |
94 | - name: generate ./data/automated/httparchive_txt_${{ env.NOW }}.txt
95 | run: |
96 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} ext-wordlist --output "./data/automated/httparchive_txt_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive -e txt
97 |
98 | - name: sanity check
99 | run: head -n25 "./data/automated/httparchive_txt_${{ env.NOW }}.txt"
100 |
101 | - name: generate ./data/automated/httparchive_directories_1m_${{ env.NOW }}.txt
102 | run: |
103 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} directories --output "./data/automated/httparchive_directories_1m_${{ env.NOW }}.txt" --limit 1000000 --sources httparchive
104 |
105 | - name: sanity check
106 | run: head -n25 "./data/automated/httparchive_directories_1m_${{ env.NOW }}.txt"
107 |
108 | - name: generate ./data/automated/httparchive_subdomains_${{ env.NOW }}.txt
109 | run: |
110 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} subdomains --output "./data/automated/httparchive_subdomains_${{ env.NOW }}.txt" --limit 10000000 --sources httparchive
111 |
112 | - name: sanity check
113 | run: head -n25 "./data/automated/httparchive_subdomains_${{ env.NOW }}.txt"
114 |
115 | - name: generate ./data/technologies/httparchive_adobe_experience_manager_${{ env.NOW }}.txt
116 | run: |
117 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_adobe_experience_manager_${{ env.NOW }}.txt" --limit 10000000 --technology "Adobe Experience Manager"
118 |
119 | - name: sanity check
120 | run: head -n25 "./data/technologies/httparchive_adobe_experience_manager_${{ env.NOW }}.txt"
121 |
122 | - name: generate ./data/technologies/httparchive_spring_${{ env.NOW }}.txt
123 | run: |
124 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_spring_${{ env.NOW }}.txt" --limit 10000000 --technology "Spring"
125 |
126 | - name: sanity check
127 | run: head -n25 "./data/technologies/httparchive_spring_${{ env.NOW }}.txt"
128 |
129 | - name: generate ./data/technologies/httparchive_symfony_${{ env.NOW }}.txt
130 | run: |
131 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_symfony_${{ env.NOW }}.txt" --limit 10000000 --technology "Symfony"
132 |
133 | - name: sanity check
134 | run: head -n25 "./data/technologies/httparchive_symfony_${{ env.NOW }}.txt"
135 |
136 | - name: generate ./data/technologies/httparchive_coldfusion_${{ env.NOW }}.txt
137 | run: |
138 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_coldfusion_${{ env.NOW }}.txt" --limit 10000000 --technology "Adobe ColdFusion"
139 |
140 | - name: sanity check
141 | run: head -n25 "./data/technologies/httparchive_coldfusion_${{ env.NOW }}.txt"
142 |
143 | - name: generate ./data/technologies/httparchive_yii_${{ env.NOW }}.txt
144 | run: |
145 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_yii_${{ env.NOW }}.txt" --limit 10000000 --technology "Yii"
146 |
147 | - name: sanity check
148 | run: head -n25 "./data/technologies/httparchive_yii_${{ env.NOW }}.txt"
149 |
150 | - name: generate ./data/technologies/httparchive_laravel_${{ env.NOW }}.txt
151 | run: |
152 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_laravel_${{ env.NOW }}.txt" --limit 10000000 --technology "Laravel"
153 |
154 | - name: sanity check
155 | run: head -n25 "./data/technologies/httparchive_laravel_${{ env.NOW }}.txt"
156 |
157 | - name: generate ./data/technologies/httparchive_rails_${{ env.NOW }}.txt
158 | run: |
159 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_rails_${{ env.NOW }}.txt" --limit 10000000 --technology "Ruby on Rails"
160 |
161 | - name: sanity check
162 | run: head -n25 "./data/technologies/httparchive_rails_${{ env.NOW }}.txt"
163 |
164 | - name: generate ./data/technologies/httparchive_tomcat_${{ env.NOW }}.txt
165 | run: |
166 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_tomcat_${{ env.NOW }}.txt" --limit 10000000 --technology "Apache Tomcat"
167 |
168 | - name: sanity check
169 | run: head -n25 "./data/technologies/httparchive_tomcat_${{ env.NOW }}.txt"
170 |
171 | - name: generate ./data/technologies/httparchive_nginx_${{ env.NOW }}.txt
172 | run: |
173 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_nginx_${{ env.NOW }}.txt" --limit 10000000 --technology "Nginx"
174 |
175 | - name: sanity check
176 | run: head -n25 "./data/technologies/httparchive_nginx_${{ env.NOW }}.txt"
177 |
178 | - name: generate ./data/technologies/httparchive_apache_${{ env.NOW }}.txt
179 | run: |
180 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_apache_${{ env.NOW }}.txt" --limit 10000000 --technology "Apache"
181 |
182 | - name: sanity check
183 | run: head -n25 "./data/technologies/httparchive_apache_${{ env.NOW }}.txt"
184 |
185 | - name: generate ./data/technologies/httparchive_zend_${{ env.NOW }}.txt
186 | run: |
187 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_zend_${{ env.NOW }}.txt" --limit 10000000 --technology "Zend"
188 |
189 | - name: sanity check
190 | run: head -n25 "./data/technologies/httparchive_zend_${{ env.NOW }}.txt"
191 |
192 | - name: generate ./data/technologies/httparchive_cherrypy_${{ env.NOW }}.txt
193 | run: |
194 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_cherrypy_${{ env.NOW }}.txt" --limit 10000000 --technology "CherryPy"
195 |
196 | - name: sanity check
197 | run: head -n25 "./data/technologies/httparchive_cherrypy_${{ env.NOW }}.txt"
198 |
199 | - name: generate ./data/technologies/httparchive_flask_${{ env.NOW }}.txt
200 | run: |
201 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_flask_${{ env.NOW }}.txt" --limit 10000000 --technology "Flask"
202 |
203 | - name: sanity check
204 | run: head -n25 "./data/technologies/httparchive_flask_${{ env.NOW }}.txt"
205 |
206 | - name: generate ./data/technologies/httparchive_django_${{ env.NOW }}.txt
207 | run: |
208 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_django_${{ env.NOW }}.txt" --limit 10000000 --technology "Django"
209 |
210 | - name: sanity check
211 | run: head -n25 "./data/technologies/httparchive_django_${{ env.NOW }}.txt"
212 |
213 | - name: generate ./data/technologies/httparchive_express_${{ env.NOW }}.txt
214 | run: |
215 | sudo ./commonspeak2 --credentials credentials.json --project ${{ secrets.GCP_PROJECT_ID }} technologies --output "./data/technologies/httparchive_express_${{ env.NOW }}.txt" --limit 10000000 --technology "Express"
216 |
217 | - name: sanity check
218 | run: head -n25 "./data/technologies/httparchive_express_${{ env.NOW }}.txt"
219 |
220 | - name: generate automated json
221 | run: python gen-json.py ./data/automated/ > ./data/automated.json
222 |
223 | - name: generate technologies json
224 | run: python gen-json.py ./data/technologies/ > ./data/technologies.json
225 |
226 | - name: Copy data folder content recursively to remote
227 | uses: garygrossgarten/github-action-scp@release
228 | with:
229 | local: data
230 | remote: /var/www/html/data/
231 | host: ${{ secrets.SSH_HOST }}
232 | username: ${{ secrets.SSH_USER }}
233 | privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
234 | concurrency: 5
235 |
236 | - name: setup ssh
237 | env:
238 | SSH_AUTH_SOCK: /tmp/ssh_agent.sock
239 | run: |
240 | mkdir -p ~/.ssh
241 | ssh-keyscan github.com >> ~/.ssh/known_hosts
242 | ssh-agent -a $SSH_AUTH_SOCK > /dev/null
243 | ssh-add - <<< "${{ secrets.SSH_DEPLOY_KEY }}"
244 |
245 | - name: git commit and push
246 | env:
247 | SSH_AUTH_SOCK: /tmp/ssh_agent.sock
248 | run: |
249 | git config user.name "commonspeak2-delivery"
250 | git config user.email ""
251 | git add data/*.json
252 | git commit -m "$(date +%Y-%m-%dT%H:%M:%S%z)"
253 | git push origin master
254 |
255 | # references
256 | # [1]: https://www.webfactory.de/blog/use-ssh-key-for-private-repositories-in-github-actions
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/CNAME:
--------------------------------------------------------------------------------
1 | wordlists.assetnote.io
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [Assetnote Wordlists](https://wordlists.assetnote.io)
2 | --------------------
3 |
4 | > See and download all the wordlists at https://wordlists.assetnote.io/
5 |
6 | When performing security testing against an asset, it is vital to have high quality wordlists for content and subdomain discovery. This website provides you with wordlists that are up to date and effective against the most popular technologies on the internet.
7 |
8 | Wordlists are generated on the 28th of each month, using [Commonspeak2](https://github.com/assetnote/commonspeak2/) and [GitHub Actions](https://github.com/assetnote/wordlists/actions). If there's an extension or technology that you would like a wordlist for, but it's not included in this repo, [send us a PR](https://github.com/assetnote/wordlists/blob/master/.github/workflows/wordlists.yml) and it will be included on this page after the next run.
9 |
10 | Assetnote Continuous Security automatically maps your external assets and monitors them for changes and security issues to help prevent serious breaches. If you want to protect your attack surface and would like a demonstration of our product, please reach out to us by [submitting our contact form](https://assetnote.io/#signup).
11 |
12 | Download all wordlists
13 | ----------------------
14 |
15 | You can download all the wordlists generated by this project by using the following command:
16 |
17 | ```
18 | wget -r --no-parent -R "index.html*" -e robots=off https://wordlists-cdn.assetnote.io/data/ -nH
19 | ```
20 |
21 | How this repo works
22 | -------------------
23 |
24 | On the 28th of every month, GitHub actions are used to generate wordlists using Commonspeak2. These wordlists are then committed to a web server being served through Cloudflare (CDN).
25 |
26 | As a part of the GitHub actions, JSON files are generated using the [gen-json.py](https://github.com/assetnote/wordlists/blob/master/gen-json.py) script. These JSON files are also pushed to the repo, and then are loaded in [index.html](https://github.com/assetnote/wordlists/blob/master/index.html) using [DataTables](https://datatables.net/).
27 |
28 | Credits
29 | -------
30 |
31 | - [cqsd](https://github.com/cqsd/daily-commonspeak2) for his initial work on automating Commonspeak2 with GitHub actions.
32 | - [SecLists](https://github.com/danielmiessler/SecLists/tree/master/Discovery/Web-Content) for their excellent wordlists for content discovery.
33 |
34 | License
35 | -------
36 |
37 | ```
38 | Copyright 2020 Assetnote
39 |
40 | Licensed under the Apache License, Version 2.0 (the "License");
41 | you may not use this file except in compliance with the License.
42 | You may obtain a copy of the License at
43 |
44 | http://www.apache.org/licenses/LICENSE-2.0
45 |
46 | Unless required by applicable law or agreed to in writing, software
47 | distributed under the License is distributed on an "AS IS" BASIS,
48 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49 | See the License for the specific language governing permissions and
50 | limitations under the License.
51 | ```
52 |
53 | [Assetnote Pty. Ltd.](https://assetnote.io/) - Twitter [@assetnote](https://twitter.com/assetnote)
54 |
--------------------------------------------------------------------------------
/assets/assetnote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/assetnote/wordlists/bd3c5c2f4dae10c386f7eaad92d69f46e2cfa2c7/assets/assetnote.png
--------------------------------------------------------------------------------
/assets/css/main.css:
--------------------------------------------------------------------------------
1 | /*
2 | Main.css
3 | ==================================
4 | Begin with generic 'mobile first' styles
5 | */
6 |
7 | /*
8 | Normalize the box model
9 | ==================================
10 | */
11 |
12 | .note {
13 | z-index: 101;
14 | top: 0;
15 | left: 0;
16 | right: 0;
17 | background: #3f51b5;
18 | color: white;
19 | text-align: center;
20 | line-height: 2.5;
21 | overflow: hidden;
22 | -webkit-box-shadow: 0 0 5px black;
23 | -moz-box-shadow: 0 0 5px black;
24 | box-shadow: 0 0 5px black;
25 | }
26 |
27 | .link-white {
28 | color: white !important;
29 | }
30 |
31 | *,
32 | *:before,
33 | *:after {
34 | -webkit-box-sizing: border-box;
35 | -moz-box-sizing: border-box;
36 | box-sizing: border-box;
37 | }
38 |
39 | /*
40 | global styles
41 | ==================================
42 | */
43 |
44 | html, body {
45 | height: 100%;
46 | }
47 |
48 | /*
49 | Typography
50 | ==================================
51 | */
52 |
53 | body {
54 | font-family: "Avenir Next", Arial, sans-serif;
55 | font-weight: 400;
56 | font-style: normal;
57 | line-height: 1.466666667;
58 | }
59 |
60 | h1,
61 | h3,
62 | h4,
63 | h5,
64 | strong {
65 | font-family: "Avenir Next Demi", "Avenir Next", Arial, sans-serif;
66 | font-weight: 600;
67 | }
68 |
69 | .site-title {
70 | font-size: 1.625em;
71 | font-family: "Avenir Next", Arial, sans-serif;
72 | font-weight: normal;
73 | color: #919395;
74 | margin: 0;
75 | line-height: 1.2941176470588236;
76 | display: inline-block;
77 | }
78 |
79 | h2 {
80 | font-weight: 400;
81 | font-style: normal;
82 | font-size: 1.375em;
83 | margin: 1.4em 0 0 0;
84 | }
85 |
86 | h4 {
87 | font-size: 1em;
88 | text-transform: uppercase;
89 | }
90 |
91 | .page-title {
92 | margin-top: .727272727em; /* 16/22 */
93 | }
94 |
95 | /*
96 | Lists
97 | --------------------------------
98 | */
99 |
100 | .main-content ul {
101 | padding-left: 1.1em;
102 | }
103 |
104 | .main-content li {
105 | margin-bottom: 1em;
106 | }
107 |
108 | li h3,
109 | li h4 {
110 | margin: 0;
111 | }
112 |
113 | li p {
114 | margin-top: 0;
115 | }
116 |
117 | /*
118 | Links
119 | ==================================
120 | */
121 |
122 | a {
123 | -webkit-transition: .2s;
124 | -moz-transition: .2s;
125 | transition: .2s;
126 | }
127 |
128 | a,
129 | a:link,
130 | a:visited {
131 | color: #0072ce;
132 | border-bottom: 1px dotted #0072ce;
133 | text-decoration: none;
134 | }
135 |
136 | a:hover {
137 | border-bottom: 1px solid #7eb8dd;
138 | color: #7eb8dd;
139 | text-decoration: none;
140 | }
141 |
142 | a:active {
143 | border-bottom: 1px solid #002d72;
144 | color: #002d72;
145 | text-decoration: none;
146 | }
147 |
148 | a:focus {
149 | border-bottom: 1px solid #0072ce;
150 | color: #0072ce;
151 | outline: thin dotted;
152 | text-decoration: none;
153 | }
154 |
155 | a.title-link {
156 | color: #75787B;
157 | border-bottom: none;
158 | }
159 |
160 | a.title-link:hover,
161 | a.title-link:active,
162 | a.title-link:focus {
163 | color: #7eb8dd;
164 | border-bottom: none;
165 | }
166 |
167 | a.skip-link {
168 | color: #0072ce;
169 | border-bottom: none;
170 | padding: .25em;
171 | }
172 |
173 | a.skip-link:hover,
174 | a.skip-link:active,
175 | a.skip-link:focus {
176 | background-color: #0072ce;
177 | color: #fff;
178 | border-bottom: none;
179 | }
180 |
181 |
182 | /*
183 | Navigation
184 | ==================================
185 | */
186 |
187 | .sidebar-nav a {
188 | display: block;
189 | padding: 10px;
190 | -webkit-transition: unset;
191 | transition: unset;
192 | }
193 | .sidebar-nav a,
194 | .sidebar-nav a:link,
195 | .sidebar-nav a:visited {
196 | border-bottom: none;
197 | color: #75787b;
198 | }
199 | .sidebar-nav li:hover,
200 | .sidebar-nav a:focus,
201 | .sidebar-nav li:active,
202 | .sidebar-nav .sidebar-nav-active {
203 | color: #75787b;
204 | border-left: 4px solid #3f51b5;
205 | background-color: transparent;
206 | border-bottom: 1px solid #babbbd;
207 | }
208 | .sidebar-nav li:hover,
209 | .sidebar-nav li:active,
210 | .sidebar-nav .sidebar-nav-active {
211 | padding-left: 0;
212 | }
213 | .sidebar-nav a:focus {
214 | padding-left: 6px;
215 | }
216 | .sidebar-nav li:hover a:focus,
217 | .sidebar-nav li:active a:focus {
218 | border-left: none;
219 | padding-left: 10px;
220 | }
221 | .sidebar-nav ul {
222 | margin: 0;
223 | padding: 0;
224 | /*border-top: 1px solid @gray-50;*/
225 | }
226 | .sidebar-nav li {
227 | list-style: none;
228 | border-bottom: 1px solid #babbbd;
229 | font-size: 1.125em;
230 | padding-left: 4px;
231 | }
232 | .sidebar-nav li:last-child {
233 | border-bottom: none;
234 | }
235 |
236 |
237 | /*
238 | Layout
239 | ==================================
240 | */
241 |
242 | .logo {
243 | display: block;
244 | }
245 |
246 | .content {
247 | padding-top: 2em;
248 | padding-bottom: 2em;
249 | }
250 |
251 | /* offset the fixed position header for jump links */
252 | section:before {
253 | display: block;
254 | content: "";
255 | height: 60px;
256 | margin: -60px 0 0;
257 | }
258 |
259 | .wrap {
260 | max-width: 1200px;
261 | margin: 0 auto;
262 | padding-left: 20px;
263 | padding-right: 20px;
264 | }
265 |
266 | header {
267 | width: 100%;
268 | border-bottom: 4px solid #3f51b5;
269 | background-color: #fff;
270 | padding: 2em 0;
271 | }
272 |
273 |
274 | /*
275 | Footer
276 | ==================================
277 | */
278 |
279 | /* for sticky footer */
280 | .container {
281 | display: table;
282 | height: 100%;
283 | width: 100%;
284 | }
285 |
286 | footer {
287 | display: table-row; /* for sticky footer */
288 | height: 1px; /* for sticky footer */
289 | border-top: 2px solid #babbbd;
290 | background: #f1f2f2;
291 | width: 100%;
292 | font-size: 0.875em;
293 | }
294 |
295 | footer .wrap {
296 | padding-top: 2em;
297 | padding-bottom: 2em;
298 | }
299 |
300 |
301 | /*
302 | Helpers
303 | ==================================
304 | */
305 |
306 | /* Hide from both screenreaders and browsers: h5bp.com/u */
307 | .hidden {
308 | display: none !important;
309 | visibility: hidden;
310 | }
311 |
312 | /* Hide only visually, but have it available for screenreaders: h5bp.com/v */
313 | .visuallyhidden {
314 | border: 0;
315 | clip: rect(0 0 0 0);
316 | height: 1px;
317 | margin: -1px;
318 | overflow: hidden;
319 | padding: 0;
320 | position: absolute;
321 | width: 1px;
322 | }
323 |
324 | /* Extends the .visuallyhidden class to allow the element to be focusable
325 | * when navigated to via the keyboard: h5bp.com/p */
326 | .visuallyhidden.focusable:active,
327 | .visuallyhidden.focusable:focus {
328 | clip: auto;
329 | height: auto;
330 | margin: 0;
331 | overflow: visible;
332 | position: static;
333 | width: auto;
334 | }
335 |
336 | /* Hide visually and from screenreaders, but maintain layout */
337 | .invisible {
338 | visibility: hidden;
339 | }
340 |
341 |
342 | /*
343 | Style
344 | ==================================
345 | */
346 |
347 | .intro {
348 | color: #75787B;
349 | }
350 |
351 | li h4 {
352 | margin: 0;
353 | }
354 |
355 | .license {
356 | font-family: "Avenir Next Demi", Arial, sans-serif;
357 | font-weight: normal;
358 | font-style: normal;
359 | }
360 |
361 | pre {
362 | max-width: 100%;
363 | font-size: 0.875em;
364 | overflow-y: scroll;
365 | background-color: #f1f2f2;
366 | padding: 10px;
367 | }
368 |
369 | /*
370 | Post list
371 | ----------------------------------
372 | */
373 |
374 | ul.posts {
375 | padding: 0;
376 | }
377 |
378 | .posts li {
379 | list-style: none;
380 | }
381 |
382 | .post-date {
383 | color: #75787B;
384 | }
385 |
386 | /*
387 | Repo list
388 | ----------------------------------
389 | */
390 |
391 | ul.repo-list {
392 | margin: .5em 0 1em 0;
393 | padding: 0;
394 | }
395 |
396 | .repo-list li {
397 | list-style: none;
398 | }
399 |
400 | .repo-list p {
401 | margin: 0;
402 | font-size: 0.875em;
403 | }
404 |
405 | .repo-list h4 {
406 | text-transform: none;
407 | }
408 |
409 | /*
410 | Helper Classes
411 | ==================================
412 | */
413 |
414 | /*
415 | Clearfix list
416 | ----------------------------------
417 | */
418 |
419 | .group:before,
420 | .group:after {
421 | content: " ";
422 | display: table;
423 | }
424 |
425 | .group:after {
426 | clear: both;
427 | }
428 |
429 | .group {
430 | *zoom: 1;
431 | }
432 |
433 | /*
434 | Desktop Styles
435 | ==================================
436 | */
437 |
438 | @media screen and (min-width: 45em) and (min-height: 32.5em) {
439 |
440 | /*
441 | Typography
442 | ==============================
443 | */
444 |
445 | /*
446 | Layout
447 | ==============================
448 | */
449 |
450 | .logo {
451 | max-width: 30%;
452 | padding-right: 20px;
453 | float: right;
454 | }
455 |
456 | aside {
457 | width: 30%;
458 | float: left;
459 | }
460 |
461 | .main-content {
462 | width: 67%;
463 | float: right;
464 | margin-bottom: 120px;
465 | }
466 |
467 | /*
468 | Navigation
469 | ==============================
470 | */
471 |
472 |
473 | /*
474 | Style
475 | ==============================
476 | */
477 |
478 | /*
479 | Repo list
480 | ------------------------------
481 | */
482 |
483 | .repo-list li {
484 | list-style: none;
485 | display: block;
486 | float: left;
487 | height: 4.0625em;
488 | max-height: 4.0625em;
489 | background-color: #E7E7E6;
490 | border-left: 1px solid #BABBBD;
491 | width: 30%;
492 | }
493 |
494 | .repo-list a:link,
495 | .repo-list a:visited {
496 | display: block;
497 | max-height: 4.0625em;
498 | background-color: #E7E7E6;
499 | border-bottom: none;
500 | padding: .625em 1em 1em 1em;
501 | }
502 |
503 | .repo-list a:hover {
504 | color: #4D5F87;
505 | background-color: #CDE3F1;
506 | }
507 |
508 | .repo-list li:first-child {
509 | text-align: center;
510 | border-left: none;
511 | line-height: 60px;
512 | padding: .625em 1em;
513 | width: 10%;
514 | }
515 |
516 | }
517 |
518 | @media screen and (max-width: 54.375em) and (min-height: 32.5em) {
519 |
520 | /* keep the repo list containers the same height, but account for the need for more height */
521 |
522 | .repo-list li {
523 | height: 6em;
524 | max-height: 6em;
525 | }
526 |
527 | .repo-list a:link,
528 | .repo-list a:visited {
529 | max-height: 6em;
530 | }
531 | }
532 |
533 | /*
534 | Mobile Styles
535 | ==================================
536 | */
537 |
538 | @media screen and (max-width: 40.5em) {
539 |
540 | .main-content {
541 | margin-top: 1.5em;
542 | }
543 |
544 | }
545 |
546 | @import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
547 |
548 |
549 | * {
550 | transition: all 0.3s ease-out;
551 | }
552 |
553 | .card-container {
554 | width: 100%;
555 | height: 100%;
556 | display: flex;
557 | flex-wrap: wrap;
558 | align-items: center;
559 | justify-content: center;
560 | }
561 |
562 | h3 {
563 | color: #262626;
564 | font-size: 17px;
565 | line-height: 24px;
566 | font-weight: 700;
567 | margin-bottom: 4px;
568 | }
--------------------------------------------------------------------------------
/assets/css/normalize.css:
--------------------------------------------------------------------------------
1 | /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
2 |
3 | /* ==========================================================================
4 | HTML5 display definitions
5 | ========================================================================== */
6 |
7 | /**
8 | * Correct `block` display not defined in IE 8/9.
9 | */
10 |
11 | article,
12 | aside,
13 | details,
14 | figcaption,
15 | figure,
16 | footer,
17 | header,
18 | hgroup,
19 | main,
20 | nav,
21 | section,
22 | summary {
23 | display: block;
24 | }
25 |
26 | /**
27 | * Correct `inline-block` display not defined in IE 8/9.
28 | */
29 |
30 | audio,
31 | canvas,
32 | video {
33 | display: inline-block;
34 | }
35 |
36 | /**
37 | * Prevent modern browsers from displaying `audio` without controls.
38 | * Remove excess height in iOS 5 devices.
39 | */
40 |
41 | audio:not([controls]) {
42 | display: none;
43 | height: 0;
44 | }
45 |
46 | /**
47 | * Address `[hidden]` styling not present in IE 8/9.
48 | * Hide the `template` element in IE, Safari, and Firefox < 22.
49 | */
50 |
51 | [hidden],
52 | template {
53 | display: none;
54 | }
55 |
56 | /* ==========================================================================
57 | Base
58 | ========================================================================== */
59 |
60 | /**
61 | * 1. Set default font family to sans-serif.
62 | * 2. Prevent iOS text size adjust after orientation change, without disabling
63 | * user zoom.
64 | */
65 |
66 | html {
67 | font-family: sans-serif; /* 1 */
68 | -ms-text-size-adjust: 100%; /* 2 */
69 | -webkit-text-size-adjust: 100%; /* 2 */
70 | }
71 |
72 | /**
73 | * Remove default margin.
74 | */
75 |
76 | body {
77 | margin: 0;
78 | }
79 |
80 | /* ==========================================================================
81 | Links
82 | ========================================================================== */
83 |
84 | /**
85 | * Remove the gray background color from active links in IE 10.
86 | */
87 |
88 | a {
89 | background: transparent;
90 | }
91 |
92 | /**
93 | * Address `outline` inconsistency between Chrome and other browsers.
94 | */
95 |
96 | a:focus {
97 | outline: thin dotted;
98 | }
99 |
100 | /**
101 | * Improve readability when focused and also mouse hovered in all browsers.
102 | */
103 |
104 | a:active,
105 | a:hover {
106 | outline: 0;
107 | }
108 |
109 | /* ==========================================================================
110 | Typography
111 | ========================================================================== */
112 |
113 | /**
114 | * Address variable `h1` font-size and margin within `section` and `article`
115 | * contexts in Firefox 4+, Safari 5, and Chrome.
116 | */
117 |
118 | h1 {
119 | font-size: 2em;
120 | margin: 0.67em 0;
121 | }
122 |
123 | /**
124 | * Address styling not present in IE 8/9, Safari 5, and Chrome.
125 | */
126 |
127 | abbr[title] {
128 | border-bottom: 1px dotted;
129 | }
130 |
131 | /**
132 | * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
133 | */
134 |
135 | b,
136 | strong {
137 | font-weight: bold;
138 | }
139 |
140 | /**
141 | * Address styling not present in Safari 5 and Chrome.
142 | */
143 |
144 | dfn {
145 | font-style: italic;
146 | }
147 |
148 | /**
149 | * Address differences between Firefox and other browsers.
150 | */
151 |
152 | hr {
153 | -moz-box-sizing: content-box;
154 | box-sizing: content-box;
155 | height: 0;
156 | }
157 |
158 | /**
159 | * Address styling not present in IE 8/9.
160 | */
161 |
162 | mark {
163 | background: #ff0;
164 | color: #000;
165 | }
166 |
167 | /**
168 | * Correct font family set oddly in Safari 5 and Chrome.
169 | */
170 |
171 | code,
172 | kbd,
173 | pre,
174 | samp {
175 | font-family: monospace, serif;
176 | font-size: 1em;
177 | }
178 |
179 | /**
180 | * Improve readability of pre-formatted text in all browsers.
181 | */
182 |
183 | pre {
184 | white-space: pre-wrap;
185 | }
186 |
187 | /**
188 | * Set consistent quote types.
189 | */
190 |
191 | q {
192 | quotes: "\201C" "\201D" "\2018" "\2019";
193 | }
194 |
195 | /**
196 | * Address inconsistent and variable font size in all browsers.
197 | */
198 |
199 | small {
200 | font-size: 80%;
201 | }
202 |
203 | /**
204 | * Prevent `sub` and `sup` affecting `line-height` in all browsers.
205 | */
206 |
207 | sub,
208 | sup {
209 | font-size: 75%;
210 | line-height: 0;
211 | position: relative;
212 | vertical-align: baseline;
213 | }
214 |
215 | sup {
216 | top: -0.5em;
217 | }
218 |
219 | sub {
220 | bottom: -0.25em;
221 | }
222 |
223 | /* ==========================================================================
224 | Embedded content
225 | ========================================================================== */
226 |
227 | /**
228 | * Remove border when inside `a` element in IE 8/9.
229 | */
230 |
231 | img {
232 | border: 0;
233 | }
234 |
235 | /**
236 | * Correct overflow displayed oddly in IE 9.
237 | */
238 |
239 | svg:not(:root) {
240 | overflow: hidden;
241 | }
242 |
243 | /* ==========================================================================
244 | Figures
245 | ========================================================================== */
246 |
247 | /**
248 | * Address margin not present in IE 8/9 and Safari 5.
249 | */
250 |
251 | figure {
252 | margin: 0;
253 | }
254 |
255 | /* ==========================================================================
256 | Forms
257 | ========================================================================== */
258 |
259 | /**
260 | * Define consistent border, margin, and padding.
261 | */
262 |
263 | fieldset {
264 | border: 1px solid #c0c0c0;
265 | margin: 0 2px;
266 | padding: 0.35em 0.625em 0.75em;
267 | }
268 |
269 | /**
270 | * 1. Correct `color` not being inherited in IE 8/9.
271 | * 2. Remove padding so people aren't caught out if they zero out fieldsets.
272 | */
273 |
274 | legend {
275 | border: 0; /* 1 */
276 | padding: 0; /* 2 */
277 | }
278 |
279 | /**
280 | * 1. Correct font family not being inherited in all browsers.
281 | * 2. Correct font size not being inherited in all browsers.
282 | * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
283 | */
284 |
285 | button,
286 | input,
287 | select,
288 | textarea {
289 | font-family: inherit; /* 1 */
290 | font-size: 100%; /* 2 */
291 | margin: 0; /* 3 */
292 | }
293 |
294 | /**
295 | * Address Firefox 4+ setting `line-height` on `input` using `!important` in
296 | * the UA stylesheet.
297 | */
298 |
299 | button,
300 | input {
301 | line-height: normal;
302 | }
303 |
304 | /**
305 | * Address inconsistent `text-transform` inheritance for `button` and `select`.
306 | * All other form control elements do not inherit `text-transform` values.
307 | * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
308 | * Correct `select` style inheritance in Firefox 4+ and Opera.
309 | */
310 |
311 | button,
312 | select {
313 | text-transform: none;
314 | }
315 |
316 | /**
317 | * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
318 | * and `video` controls.
319 | * 2. Correct inability to style clickable `input` types in iOS.
320 | * 3. Improve usability and consistency of cursor style between image-type
321 | * `input` and others.
322 | */
323 |
324 | button,
325 | html input[type="button"], /* 1 */
326 | input[type="reset"],
327 | input[type="submit"] {
328 | -webkit-appearance: button; /* 2 */
329 | cursor: pointer; /* 3 */
330 | }
331 |
332 | /**
333 | * Re-set default cursor for disabled elements.
334 | */
335 |
336 | button[disabled],
337 | html input[disabled] {
338 | cursor: default;
339 | }
340 |
341 | /**
342 | * 1. Address box sizing set to `content-box` in IE 8/9/10.
343 | * 2. Remove excess padding in IE 8/9/10.
344 | */
345 |
346 | input[type="checkbox"],
347 | input[type="radio"] {
348 | box-sizing: border-box; /* 1 */
349 | padding: 0; /* 2 */
350 | }
351 |
352 | /**
353 | * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
354 | * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
355 | * (include `-moz` to future-proof).
356 | */
357 |
358 | input[type="search"] {
359 | -webkit-appearance: textfield; /* 1 */
360 | -moz-box-sizing: content-box;
361 | -webkit-box-sizing: content-box; /* 2 */
362 | box-sizing: content-box;
363 | }
364 |
365 | /**
366 | * Remove inner padding and search cancel button in Safari 5 and Chrome
367 | * on OS X.
368 | */
369 |
370 | input[type="search"]::-webkit-search-cancel-button,
371 | input[type="search"]::-webkit-search-decoration {
372 | -webkit-appearance: none;
373 | }
374 |
375 | /**
376 | * Remove inner padding and border in Firefox 4+.
377 | */
378 |
379 | button::-moz-focus-inner,
380 | input::-moz-focus-inner {
381 | border: 0;
382 | padding: 0;
383 | }
384 |
385 | /**
386 | * 1. Remove default vertical scrollbar in IE 8/9.
387 | * 2. Improve readability and alignment in all browsers.
388 | */
389 |
390 | textarea {
391 | overflow: auto; /* 1 */
392 | vertical-align: top; /* 2 */
393 | }
394 |
395 | /* ==========================================================================
396 | Tables
397 | ========================================================================== */
398 |
399 | /**
400 | * Remove most spacing between table cells.
401 | */
402 |
403 | table {
404 | border-collapse: collapse;
405 | border-spacing: 0;
406 | }
--------------------------------------------------------------------------------
/assets/css/syntax.css:
--------------------------------------------------------------------------------
1 | .highlight { background: #ffffff; }
2 | .highlight .c { color: #999988; font-style: italic } /* Comment */
3 | .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4 | .highlight .k { font-weight: bold } /* Keyword */
5 | .highlight .o { font-weight: bold } /* Operator */
6 | .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7 | .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8 | .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9 | .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10 | .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11 | .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12 | .highlight .ge { font-style: italic } /* Generic.Emph */
13 | .highlight .gr { color: #aa0000 } /* Generic.Error */
14 | .highlight .gh { color: #999999 } /* Generic.Heading */
15 | .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16 | .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17 | .highlight .go { color: #888888 } /* Generic.Output */
18 | .highlight .gp { color: #555555 } /* Generic.Prompt */
19 | .highlight .gs { font-weight: bold } /* Generic.Strong */
20 | .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22 | .highlight .kc { font-weight: bold } /* Keyword.Constant */
23 | .highlight .kd { font-weight: bold } /* Keyword.Declaration */
24 | .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25 | .highlight .kr { font-weight: bold } /* Keyword.Reserved */
26 | .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27 | .highlight .m { color: #009999 } /* Literal.Number */
28 | .highlight .s { color: #d14 } /* Literal.String */
29 | .highlight .na { color: #008080 } /* Name.Attribute */
30 | .highlight .nb { color: #0086B3 } /* Name.Builtin */
31 | .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32 | .highlight .no { color: #008080 } /* Name.Constant */
33 | .highlight .ni { color: #800080 } /* Name.Entity */
34 | .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35 | .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36 | .highlight .nn { color: #555555 } /* Name.Namespace */
37 | .highlight .nt { color: #000080 } /* Name.Tag */
38 | .highlight .nv { color: #008080 } /* Name.Variable */
39 | .highlight .ow { font-weight: bold } /* Operator.Word */
40 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */
41 | .highlight .mf { color: #009999 } /* Literal.Number.Float */
42 | .highlight .mh { color: #009999 } /* Literal.Number.Hex */
43 | .highlight .mi { color: #009999 } /* Literal.Number.Integer */
44 | .highlight .mo { color: #009999 } /* Literal.Number.Oct */
45 | .highlight .sb { color: #d14 } /* Literal.String.Backtick */
46 | .highlight .sc { color: #d14 } /* Literal.String.Char */
47 | .highlight .sd { color: #d14 } /* Literal.String.Doc */
48 | .highlight .s2 { color: #d14 } /* Literal.String.Double */
49 | .highlight .se { color: #d14 } /* Literal.String.Escape */
50 | .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51 | .highlight .si { color: #d14 } /* Literal.String.Interpol */
52 | .highlight .sx { color: #d14 } /* Literal.String.Other */
53 | .highlight .sr { color: #009926 } /* Literal.String.Regex */
54 | .highlight .s1 { color: #d14 } /* Literal.String.Single */
55 | .highlight .ss { color: #990073 } /* Literal.String.Symbol */
56 | .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57 | .highlight .vc { color: #008080 } /* Name.Variable.Class */
58 | .highlight .vg { color: #008080 } /* Name.Variable.Global */
59 | .highlight .vi { color: #008080 } /* Name.Variable.Instance */
60 | .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
--------------------------------------------------------------------------------
/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/assetnote/wordlists/bd3c5c2f4dae10c386f7eaad92d69f46e2cfa2c7/assets/favicon.ico
--------------------------------------------------------------------------------
/assets/small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/assetnote/wordlists/bd3c5c2f4dae10c386f7eaad92d69f46e2cfa2c7/assets/small.png
--------------------------------------------------------------------------------
/commonspeak2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/assetnote/wordlists/bd3c5c2f4dae10c386f7eaad92d69f46e2cfa2c7/commonspeak2
--------------------------------------------------------------------------------
/data/automated.json:
--------------------------------------------------------------------------------
1 | {
2 | "data": [
3 | {
4 | "Filename": "httparchive_php_2024_05_28.txt",
5 | "Line Count": 75038,
6 | "File Size": "1.2mb",
7 | "Date": 1716898502.2465923,
8 | "Download": "Download "
9 | },
10 | {
11 | "Filename": "httparchive_js_2024_05_28.txt",
12 | "Line Count": 2732298,
13 | "File Size": "52.6mb",
14 | "Date": 1716900249.2231147,
15 | "Download": "Download "
16 | },
17 | {
18 | "Filename": "httparchive_cgi_pl_2024_05_28.txt",
19 | "Line Count": 2825,
20 | "File Size": "37.4kb",
21 | "Date": 1716900257.987184,
22 | "Download": "Download "
23 | },
24 | {
25 | "Filename": "httparchive_aspx_asp_cfm_svc_ashx_asmx_2024_05_28.txt",
26 | "Line Count": 42051,
27 | "File Size": "828.2kb",
28 | "Date": 1716898536.5827765,
29 | "Download": "Download "
30 | },
31 | {
32 | "Filename": "httparchive_xml_2024_05_28.txt",
33 | "Line Count": 9744,
34 | "File Size": "174.8kb",
35 | "Date": 1716900268.8152556,
36 | "Download": "Download "
37 | },
38 | {
39 | "Filename": "httparchive_directories_1m_2024_05_28.txt",
40 | "Line Count": 692777,
41 | "File Size": "19.0mb",
42 | "Date": 1716900476.1165423,
43 | "Download": "Download "
44 | },
45 | {
46 | "Filename": "httparchive_parameters_top_1m_2024_05_28.txt",
47 | "Line Count": 307740,
48 | "File Size": "3.3mb",
49 | "Date": 1716898284.813383,
50 | "Download": "Download "
51 | },
52 | {
53 | "Filename": "httparchive_jsp_jspa_do_action_2024_05_28.txt",
54 | "Line Count": 12672,
55 | "File Size": "211.4kb",
56 | "Date": 1716898515.9466724,
57 | "Download": "Download "
58 | },
59 | {
60 | "Filename": "httparchive_subdomains_2024_05_28.txt",
61 | "Line Count": 2441323,
62 | "File Size": "33.8mb",
63 | "Date": 1716900991.8877237,
64 | "Download": "Download "
65 | },
66 | {
67 | "Filename": "httparchive_apiroutes_2024_05_28.txt",
68 | "Line Count": 290546,
69 | "File Size": "8.7mb",
70 | "Date": 1716898472.3264592,
71 | "Download": "Download "
72 | },
73 | {
74 | "Filename": "httparchive_txt_2024_05_28.txt",
75 | "Line Count": 8486,
76 | "File Size": "169.5kb",
77 | "Date": 1716900284.959374,
78 | "Download": "Download "
79 | },
80 | {
81 | "Filename": "httparchive_html_htm_2024_05_28.txt",
82 | "Line Count": 135894,
83 | "File Size": "2.7mb",
84 | "Date": 1716898599.6350887,
85 | "Download": "Download "
86 | }
87 | ]
88 | }
89 |
--------------------------------------------------------------------------------
/data/kiterunner.json:
--------------------------------------------------------------------------------
1 | {
2 | "data": [
3 | {
4 | "Filename": "swagger-files.tar",
5 | "Line Count": 55959381,
6 | "File Size": "4.4gb",
7 | "Date": 1617749845.813965,
8 | "Download": "Download "
9 | },
10 | {
11 | "Filename": "routes-large.json.tar.gz",
12 | "Line Count": 478857,
13 | "File Size": "118.8mb",
14 | "Date": 1617772232.938851,
15 | "Download": "Download "
16 | },
17 | {
18 | "Filename": "routes-small.json.tar.gz",
19 | "Line Count": 58288,
20 | "File Size": "14.6mb",
21 | "Date": 1617772200.6286616,
22 | "Download": "Download "
23 | },
24 | {
25 | "Filename": "swagger-wordlist.txt",
26 | "Line Count": 958872,
27 | "File Size": "27.2mb",
28 | "Date": 1617755202.913446,
29 | "Download": "Download "
30 | },
31 | {
32 | "Filename": "routes-small.kite.tar.gz",
33 | "Line Count": 1537,
34 | "File Size": "429.9kb",
35 | "Date": 1617770640.3956752,
36 | "Download": "Download "
37 | },
38 | {
39 | "Filename": "routes-large.kite.tar.gz",
40 | "Line Count": 139983,
41 | "File Size": "34.7mb",
42 | "Date": 1617770612.8990765,
43 | "Download": "Download "
44 | }
45 | ]
46 | }
--------------------------------------------------------------------------------
/data/manual.json:
--------------------------------------------------------------------------------
1 | {
2 | "data": [
3 | {
4 | "Filename": "pl.txt",
5 | "Description": ".pl files generated from the GitHub dataset on BigQuery.",
6 | "Line Count": 223823,
7 | "File Size": "4.4mb",
8 | "Date": 1605662115.481,
9 | "Download": "Download "
10 | },
11 | {
12 | "Filename": "2m-subdomains.txt",
13 | "Description": "2 million+ subdomains generated from the GitHub dataset on BigQuery.",
14 | "Line Count": 2167059,
15 | "File Size": "28.0mb",
16 | "Date": 1605662198.574363,
17 | "Download": "Download "
18 | },
19 | {
20 | "Filename": "raft-medium-files-lowercase.txt",
21 | "Description": "Raft wordlist taken from SecLists .",
22 | "Line Count": 16243,
23 | "File Size": "207.6kb",
24 | "Date": 1605661332.0217218,
25 | "Download": "Download "
26 | },
27 | {
28 | "Filename": "raft-small-extensions.txt",
29 | "Description": "Raft wordlist taken from SecLists .",
30 | "Line Count": 963,
31 | "File Size": "7.1kb",
32 | "Date": 1605661332.0296543,
33 | "Download": "Download "
34 | },
35 | {
36 | "Filename": "jsp.txt",
37 | "Description": ".jsp files generated from the GitHub dataset on BigQuery.",
38 | "Line Count": 114894,
39 | "File Size": "2.2mb",
40 | "Date": 1605662099.168,
41 | "Download": "Download "
42 | },
43 | {
44 | "Filename": "raft-medium-directories.txt",
45 | "Description": "Raft wordlist taken from SecLists .",
46 | "Line Count": 30000,
47 | "File Size": "244.6kb",
48 | "Date": 1605661332.0194209,
49 | "Download": "Download "
50 | },
51 | {
52 | "Filename": "raft-large-words.txt",
53 | "Description": "Raft wordlist taken from SecLists .",
54 | "Line Count": 119600,
55 | "File Size": "1.0mb",
56 | "Date": 1605661332.0174096,
57 | "Download": "Download "
58 | },
59 | {
60 | "Filename": "raft-medium-extensions.txt",
61 | "Description": "Raft wordlist taken from SecLists .",
62 | "Line Count": 1289,
63 | "File Size": "9.6kb",
64 | "Date": 1605661332.0209281,
65 | "Download": "Download "
66 | },
67 | {
68 | "Filename": "wordlist_with_underscores.txt",
69 | "Description": "wordlist including underscores generated from the GitHub dataset on BigQuery.",
70 | "Line Count": 2674434,
71 | "File Size": "38.5mb",
72 | "Date": 1605662132.239,
73 | "Download": "Download "
74 | },
75 | {
76 | "Filename": "raft-small-directories-lowercase.txt",
77 | "Description": "Raft wordlist taken from SecLists .",
78 | "Line Count": 17770,
79 | "File Size": "142.3kb",
80 | "Date": 1605661332.0270746,
81 | "Download": "Download "
82 | },
83 | {
84 | "Filename": "wordlist_no_underscores.txt",
85 | "Description": "wordlist without underscores generated from the GitHub dataset on BigQuery.",
86 | "Line Count": 1916730,
87 | "File Size": "25.5mb",
88 | "Date": 1605662128.188,
89 | "Download": "Download "
90 | },
91 | {
92 | "Filename": "raft-small-files-lowercase.txt",
93 | "Description": "Raft wordlist taken from SecLists .",
94 | "Line Count": 10848,
95 | "File Size": "137.4kb",
96 | "Date": 1605661332.0305843,
97 | "Download": "Download "
98 | },
99 | {
100 | "Filename": "do.txt",
101 | "Description": ".do files generated from the GitHub dataset on BigQuery.",
102 | "Line Count": 173152,
103 | "File Size": "4.8mb",
104 | "Date": 1605662091.519,
105 | "Download": "Download "
106 | },
107 | {
108 | "Filename": "best-dns-wordlist.txt",
109 | "Description": "Try this wordlist when performing a thorough DNS bruteforce of any given target. You'll find that you discover some pretty obscure subdomains using this wordlist.",
110 | "Line Count": 9996122,
111 | "File Size": "139.0mb",
112 | "Date": 1605524214.704686,
113 | "Download": "Download "
114 | },
115 | {
116 | "Filename": "raft-medium-extensions-lowercase.txt",
117 | "Description": "Raft wordlist taken from SecLists .",
118 | "Line Count": 1233,
119 | "File Size": "9.4kb",
120 | "Date": 1605661332.0200944,
121 | "Download": "Download "
122 | },
123 | {
124 | "Filename": "bak.txt",
125 | "Description": ".bak files generated from the GitHub dataset on BigQuery.",
126 | "Line Count": 31725,
127 | "File Size": "634.8kb",
128 | "Date": 1605662083.047,
129 | "Download": "Download "
130 | },
131 | {
132 | "Filename": "raft-medium-words.txt",
133 | "Description": "Raft wordlist taken from SecLists .",
134 | "Line Count": 63087,
135 | "File Size": "512.3kb",
136 | "Date": 1605661332.025546,
137 | "Download": "Download "
138 | },
139 | {
140 | "Filename": "raft-large-words-lowercase.txt",
141 | "Description": "Raft wordlist taken from SecLists .",
142 | "Line Count": 107982,
143 | "File Size": "936.9kb",
144 | "Date": 1605661332.015388,
145 | "Download": "Download "
146 | },
147 | {
148 | "Filename": "raft-medium-directories-lowercase.txt",
149 | "Description": "Raft wordlist taken from SecLists .",
150 | "Line Count": 26584,
151 | "File Size": "219.2kb",
152 | "Date": 1605661332.0185478,
153 | "Download": "Download "
154 | },
155 | {
156 | "Filename": "cfm.txt",
157 | "Description": ".cfm files generated from the GitHub dataset on BigQuery.",
158 | "Line Count": 12100,
159 | "File Size": "260.3kb",
160 | "Date": 1605662087.314,
161 | "Download": "Download "
162 | },
163 | {
164 | "Filename": "raft-small-words.txt",
165 | "Description": "Raft wordlist taken from SecLists .",
166 | "Line Count": 43003,
167 | "File Size": "340.4kb",
168 | "Date": 1605661332.0335722,
169 | "Download": "Download "
170 | },
171 | {
172 | "Filename": "raft-small-extensions-lowercase.txt",
173 | "Description": "Raft wordlist taken from SecLists .",
174 | "Line Count": 914,
175 | "File Size": "6.9kb",
176 | "Date": 1605661332.0287392,
177 | "Download": "Download "
178 | },
179 | {
180 | "Filename": "raft-medium-files.txt",
181 | "Description": "Raft wordlist taken from SecLists .",
182 | "Line Count": 17128,
183 | "File Size": "219.1kb",
184 | "Date": 1605661332.022962,
185 | "Download": "Download "
186 | },
187 | {
188 | "Filename": "php.txt",
189 | "Description": ".php files generated from the GitHub dataset on BigQuery.",
190 | "Line Count": 3174758,
191 | "File Size": "81.3mb",
192 | "Date": 1605662108.026,
193 | "Download": "Download "
194 | },
195 | {
196 | "Filename": "xml_filenames.txt",
197 | "Description": ".xml files generated from the GitHub dataset on BigQuery.",
198 | "Line Count": 2270059,
199 | "File Size": "50.8mb",
200 | "Date": 1605662206.494,
201 | "Download": "Download "
202 | },
203 | {
204 | "Filename": "raft-medium-words-lowercase.txt",
205 | "Description": "Raft wordlist taken from SecLists .",
206 | "Line Count": 56293,
207 | "File Size": "460.0kb",
208 | "Date": 1605661332.0242405,
209 | "Download": "Download "
210 | },
211 | {
212 | "Filename": "raft-large-directories-lowercase.txt",
213 | "Description": "Raft wordlist taken from SecLists .",
214 | "Line Count": 56163,
215 | "File Size": "482.5kb",
216 | "Date": 1605661332.0079706,
217 | "Download": "Download "
218 | },
219 | {
220 | "Filename": "raft-small-directories.txt",
221 | "Description": "Raft wordlist taken from SecLists .",
222 | "Line Count": 20116,
223 | "File Size": "159.4kb",
224 | "Date": 1605661332.0278244,
225 | "Download": "Download "
226 | },
227 | {
228 | "Filename": "asp_lowercase.txt",
229 | "Description": ".asp files (lowercase) generated from the GitHub dataset on BigQuery.",
230 | "Line Count": 24074,
231 | "File Size": "1.1mb",
232 | "Date": 1605662072.937,
233 | "Download": "Download "
234 | },
235 | {
236 | "Filename": "raft-large-directories.txt",
237 | "Description": "Raft wordlist taken from SecLists .",
238 | "Line Count": 62283,
239 | "File Size": "529.3kb",
240 | "Date": 1605661332.0092957,
241 | "Download": "Download "
242 | },
243 | {
244 | "Filename": "raft-small-words-lowercase.txt",
245 | "Description": "Raft wordlist taken from SecLists .",
246 | "Line Count": 38267,
247 | "File Size": "304.5kb",
248 | "Date": 1605661332.0326014,
249 | "Download": "Download "
250 | },
251 | {
252 | "Filename": "raft-large-words-ext.txt",
253 | "Description": "Raft wordlist taken from SecLists modified to have %EXT% at the end of each line.",
254 | "Line Count": 119600,
255 | "File Size": "1.7mb",
256 | "Date": 1605661231.1136692,
257 | "Download": "Download "
258 | },
259 | {
260 | "Filename": "raft-small-files.txt",
261 | "Description": "Raft wordlist taken from SecLists .",
262 | "Line Count": 11424,
263 | "File Size": "144.9kb",
264 | "Date": 1605661332.031665,
265 | "Download": "Download "
266 | },
267 | {
268 | "Filename": "raft-large-extensions-lowercase.txt",
269 | "Description": "Raft wordlist taken from SecLists .",
270 | "Line Count": 2366,
271 | "File Size": "19.8kb",
272 | "Date": 1605661332.010178,
273 | "Download": "Download "
274 | },
275 | {
276 | "Filename": "aspx_lowercase.txt",
277 | "Description": ".aspx (lowercase) files generated from the GitHub dataset on BigQuery.",
278 | "Line Count": 80293,
279 | "File Size": "4.4mb",
280 | "Date": 1605662078.17,
281 | "Download": "Download "
282 | },
283 | {
284 | "Filename": "raft-large-files-lowercase.txt",
285 | "Description": "Raft wordlist taken from SecLists .",
286 | "Line Count": 35324,
287 | "File Size": "459.3kb",
288 | "Date": 1605661332.0119982,
289 | "Download": "Download "
290 | },
291 | {
292 | "Filename": "raft-large-files.txt",
293 | "Description": "Raft wordlist taken from SecLists .",
294 | "Line Count": 37042,
295 | "File Size": "481.9kb",
296 | "Date": 1605661332.013087,
297 | "Download": "Download "
298 | },
299 | {
300 | "Filename": "html.txt",
301 | "Description": ".html files generated from the GitHub dataset on BigQuery.",
302 | "Line Count": 4227526,
303 | "File Size": "107.7mb",
304 | "Date": 1605662095.46,
305 | "Download": "Download "
306 | },
307 | {
308 | "Filename": "raft-large-extensions.txt",
309 | "Description": "Raft wordlist taken from SecLists .",
310 | "Line Count": 2449,
311 | "File Size": "20.2kb",
312 | "Date": 1605661332.0109076,
313 | "Download": "Download "
314 | },
315 | {
316 | "Filename": "dot_filenames.txt",
317 | "Description": "dot files generated from the GitHub dataset on BigQuery.",
318 | "Line Count": 3191712,
319 | "File Size": "71.3mb",
320 | "Date": 1605661893.839,
321 | "Download": "Download "
322 | },
323 | {
324 | "Filename": "phpmillion.txt",
325 | "Description": "1 million PHP files generated from the GitHub dataset on BigQuery.",
326 | "Line Count": 1000000,
327 | "File Size": "55.1mb",
328 | "Date": 1605662111.771,
329 | "Download": "Download "
330 | }
331 | ]
332 | }
333 |
--------------------------------------------------------------------------------
/data/technologies.json:
--------------------------------------------------------------------------------
1 | {
2 | "data": [
3 | {
4 | "Filename": "httparchive_symfony_2024_05_28.txt",
5 | "Line Count": 18534,
6 | "File Size": "523.1kb",
7 | "Date": 1716901000.7478273,
8 | "Download": "Download "
9 | },
10 | {
11 | "Filename": "httparchive_express_2024_05_28.txt",
12 | "Line Count": 190138,
13 | "File Size": "5.5mb",
14 | "Date": 1716901203.7932286,
15 | "Download": "Download "
16 | },
17 | {
18 | "Filename": "httparchive_spring_2024_05_28.txt",
19 | "Line Count": 3380,
20 | "File Size": "99.2kb",
21 | "Date": 1716900997.7557788,
22 | "Download": "Download "
23 | },
24 | {
25 | "Filename": "httparchive_apache_2024_05_28.txt",
26 | "Line Count": 0,
27 | "File Size": "0.0b",
28 | "Date": 1716901188.8011408,
29 | "Download": "Download "
30 | },
31 | {
32 | "Filename": "httparchive_cherrypy_2024_05_28.txt",
33 | "Line Count": 76,
34 | "File Size": "2.1kb",
35 | "Date": 1716901192.477163,
36 | "Download": "Download "
37 | },
38 | {
39 | "Filename": "httparchive_rails_2024_05_28.txt",
40 | "Line Count": 186062,
41 | "File Size": "5.5mb",
42 | "Date": 1716901017.4079566,
43 | "Download": "Download "
44 | },
45 | {
46 | "Filename": "httparchive_flask_2024_05_28.txt",
47 | "Line Count": 2156,
48 | "File Size": "60.4kb",
49 | "Date": 1716901194.065172,
50 | "Download": "Download "
51 | },
52 | {
53 | "Filename": "httparchive_django_2024_05_28.txt",
54 | "Line Count": 33299,
55 | "File Size": "955.0kb",
56 | "Date": 1716901197.2811902,
57 | "Download": "Download "
58 | },
59 | {
60 | "Filename": "httparchive_nginx_2024_05_28.txt",
61 | "Line Count": 7012562,
62 | "File Size": "189.8mb",
63 | "Date": 1716901187.3171308,
64 | "Download": "Download "
65 | },
66 | {
67 | "Filename": "httparchive_coldfusion_2024_05_28.txt",
68 | "Line Count": 2593,
69 | "File Size": "77.7kb",
70 | "Date": 1716901002.4438412,
71 | "Download": "Download "
72 | },
73 | {
74 | "Filename": "httparchive_yii_2024_05_28.txt",
75 | "Line Count": 27975,
76 | "File Size": "769.1kb",
77 | "Date": 1716901005.4918664,
78 | "Download": "Download "
79 | },
80 | {
81 | "Filename": "httparchive_adobe_experience_manager_2024_05_28.txt",
82 | "Line Count": 22408,
83 | "File Size": "666.5kb",
84 | "Date": 1716900995.9477649,
85 | "Download": "Download "
86 | },
87 | {
88 | "Filename": "httparchive_zend_2024_05_28.txt",
89 | "Line Count": 459,
90 | "File Size": "13.5kb",
91 | "Date": 1716901190.689153,
92 | "Download": "Download "
93 | },
94 | {
95 | "Filename": "httparchive_tomcat_2024_05_28.txt",
96 | "Line Count": 25878,
97 | "File Size": "772.9kb",
98 | "Date": 1716901020.4039798,
99 | "Download": "Download "
100 | },
101 | {
102 | "Filename": "httparchive_laravel_2024_05_28.txt",
103 | "Line Count": 123088,
104 | "File Size": "3.4mb",
105 | "Date": 1716901010.7279103,
106 | "Download": "Download "
107 | }
108 | ]
109 | }
110 |
--------------------------------------------------------------------------------
/gen-json.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/python
2 | import os, argparse, json, time, sys
3 | from datetime import datetime
4 | from collections import OrderedDict
5 |
6 | now = datetime.now()
7 | directory = sys.argv[1]
8 | filelist = os.listdir(directory)
9 |
10 | def sizeof_fmt(num, suffix='b'):
11 | for unit in ['','k','m','g','t','p','e','z']:
12 | if abs(num) < 1024.0:
13 | return "%3.1f%s%s" % (num, unit, suffix)
14 | num /= 1024.0
15 | return "%.1f%s%s" % (num, 'Yi', suffix)
16 |
17 | def modification_date(filename):
18 | t = os.path.getmtime(filename)
19 | return t
20 |
21 | files_json = {"data":[]}
22 |
23 | for item in filelist:
24 | full_path = "{}/{}".format(directory, item)
25 | num_lines = sum(1 for line in open(full_path))
26 | file_size = sizeof_fmt(os.path.getsize(full_path))
27 | modification_time = modification_date(full_path)
28 | obj = OrderedDict([("Filename", item), ("Line Count", num_lines), ("File Size", file_size), ("Date", modification_time), ("Download", "Download ".format(directory, item))])
29 | files_json["data"].append(obj)
30 |
31 | print(json.dumps(files_json,indent=4,ensure_ascii=False))
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Assetnote Wordlists
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
39 |
40 |
41 |
42 |
43 |
44 |
54 |
55 |
57 |
58 |
59 |
60 |
67 |
71 |
72 |
73 |
74 |
75 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 | Welcome to Assetnote Wordlists.
94 |
95 | When performing security testing against an asset, it is vital to have high quality wordlists for content and subdomain discovery. This website provides you with wordlists that are up to date and effective against the most popular technologies on the internet.
96 |
97 | Wordlists are generated on the 28th of each month, using Commonspeak2 and GitHub Actions . If there's an extension or technology that you would like a wordlist for, but it's not in the table below, send us a PR and it will be included on this page after the next run.
98 |
99 | Assetnote Continuous Security automatically maps your external assets and monitors them for changes and security issues to help prevent serious breaches. If you want to protect your attack surface and would like a demonstration of our product, please reach out to us by submitting our contact form.
100 |
101 | Show your support:
102 | Star
103 |
104 | You can download all of the wordlists at once, using the following command:
105 | wget -r --no-parent -R "index.html*" https://wordlists-cdn.assetnote.io/data/ -nH -e robots=off
106 |
107 | Automatically Generated Wordlists
108 |
109 |
110 |
111 |
112 | Filename
113 | Line Count
114 | File Size
115 | Date
116 | Download
117 |
118 |
119 |
120 |
121 | Kiterunner Wordlists
122 |
123 | Kiterunner is a contexual content discovery tool built by Assetnote. You can use the .kite files with the Kiterunner tool.
124 |
125 | Additionally, the swagger-wordlist.txt dataset can be used with traditional content discovery tools
126 |
127 |
128 |
129 |
130 | Filename
131 | Line Count
132 | File Size
133 | Date
134 | Download
135 |
136 |
137 |
138 |
139 | Technology <=> Host Mappings
140 |
141 |
142 |
143 |
144 | Filename
145 | Line Count
146 | File Size
147 | Date
148 | Download
149 |
150 |
151 |
152 |
153 | Manually Generated Wordlists
154 |
155 |
156 |
157 |
158 | Filename
159 | Description
160 | Line Count
161 | File Size
162 | Date
163 | Download
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
176 |
177 |
178 |
179 |
180 |
181 |
262 |
263 |
264 |
265 |
--------------------------------------------------------------------------------