Skip to content

Commit b136bed

Browse files
committed
feat: add new wordlists and words to existing lists
ref: psliwka#45
1 parent aa57ba9 commit b136bed

File tree

5 files changed

+579
-11
lines changed

5 files changed

+579
-11
lines changed

scripts/update-acronyms

Lines changed: 53 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,56 @@
22
source "$(dirname $0)/common.sh"
33

44
emit_header "Common IT acronyms and abbreviations"
5-
curl -s "https://en.wikipedia.org/wiki/List_of_computing_and_IT_abbreviations" \
6-
| egrep -o '<li><a.+title.+>[a-zA-Z0-9\.]+<' \
7-
| grep -v '(page does not exist)' \
8-
| egrep -o '>[a-zA-Z0-9\.]+<' \
9-
| tr -d '<>' \
10-
| emit_words
5+
{
6+
curl -s "https://en.wikipedia.org/wiki/List_of_computing_and_IT_abbreviations" \
7+
| egrep -o '<li><a.+title.+>[a-zA-Z0-9\.]+<' \
8+
| grep -v '(page does not exist)' \
9+
| egrep -o '>[a-zA-Z0-9\.]+<' \
10+
| tr -d '<>'
11+
cat <<heretag
12+
3DES
13+
APIs
14+
APK
15+
AXFR
16+
BSSID
17+
CAs
18+
CCMP
19+
CSPRNG
20+
CVSS
21+
CWE
22+
DMARC
23+
DNSSEC
24+
DSGVO
25+
ECB
26+
EDNS
27+
GC
28+
GDPR
29+
GNSS
30+
HKLM
31+
HMAC
32+
HSTS
33+
HTA
34+
IAM
35+
IBAN
36+
IBANs
37+
IDN
38+
JWT
39+
KDF
40+
LTS
41+
MD5
42+
MITM
43+
MTAs
44+
OCSP
45+
OSINT
46+
PEM
47+
R2
48+
RC4
49+
RCE
50+
SNI
51+
SSRF
52+
TKIP
53+
TOTP
54+
U2F
55+
XHR
56+
heretag
57+
} | emit_words

scripts/update-brands

Lines changed: 63 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,66 @@
22
source "$(dirname $0)/common.sh"
33

44
emit_header "Popular (mostly IT-related) brands"
5-
curl -s "https://raw.githubusercontent.com/simple-icons/simple-icons/master/_data/simple-icons.json" \
6-
| jq -r '.icons | map(.title)[]' \
7-
| tr ' ' '\n' \
8-
| grep '[a-zA-Z]' \
9-
| emit_words
5+
{
6+
curl -s "https://raw.githubusercontent.com/simple-icons/simple-icons/master/_data/simple-icons.json" \
7+
| jq -r '.icons | map(.title)[]' \
8+
| tr ' ' '\n' \
9+
| grep '[a-zA-Z]'
10+
cat <<heretag
11+
Acronis
12+
AMD64
13+
AngularJS
14+
Artifactory
15+
BitLocker
16+
Chromebook
17+
CloudFormation
18+
CloudTrail
19+
Coverity
20+
Cppcheck
21+
Defender
22+
DigiCert
23+
Duqu
24+
Entra ID
25+
FortiGate
26+
FOSSGIS
27+
Foxit
28+
GitLab's
29+
GlobalSign
30+
Hoek
31+
iPhones
32+
jsoup
33+
Karaf
34+
Log4j
35+
Lync
36+
Mailchimp
37+
MailHog
38+
Nessus
39+
Netgear
40+
Nvidia
41+
Office
42+
OkHttp
43+
OneDrive's
44+
OpenPhish
45+
OSTIF
46+
PKZIP
47+
PowerDNS
48+
PrivateLink
49+
Protection
50+
PRTG
51+
PSFTPd
52+
reCAPTCHA
53+
reCAPTCHA's
54+
Semgrep
55+
SendGrid
56+
Sophos
57+
Splashtop
58+
Threema's
59+
TinyMCE
60+
TopAccess
61+
Vertica
62+
Wazuh
63+
YubiKey
64+
YubiKey's
65+
YubiKeys
66+
heretag
67+
} | emit_words

scripts/update-unix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,12 @@ emit_header "Common UNIX commands"
1717
| cut -d '>' -f3 \
1818
| cut -d '<' -f1
1919
busybox --list
20+
cat <<heretag
21+
cron
22+
gpg
23+
podman
24+
rsync
25+
sudo
26+
tcpdump
27+
heretag
2028
} | emit_words

0 commit comments

Comments
 (0)