Skip to content

Instantly share code, notes, and snippets.

View georgekovachjr's full-sized avatar

George W Kovach georgekovachjr

View GitHub Profile
@georgekovachjr
georgekovachjr / all.txt
Created July 15, 2023 05:30 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
@georgekovachjr
georgekovachjr / all.txt
Created July 15, 2023 05:29 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
@georgekovachjr
georgekovachjr / test.sh
Created April 26, 2023 23:17 — forked from zoka123/test.sh
Bash test if directory is writable
# By path
if [ -w "/path/to/dir" ]; then echo "WRITABLE"; else echo "NOT WRITABLE"; fi
# Current dir
if [ -w `pwd` ]; then echo "WRITABLE"; else echo "NOT WRITABLE"; fi