mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-06-13 02:35:01 +00:00
12 lines
202 B
Bash
12 lines
202 B
Bash
![]() |
#!/usr/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
mkdir -p .working_space
|
||
|
cd .working_space
|
||
|
git clone --depth=1 https://github.com/trickest/wordlists.git
|
||
|
cd ../
|
||
|
|
||
|
./.bin/trickest-patcher.py
|
||
|
rm -rf .working_space
|