Skip to content

Instantly share code, notes, and snippets.

View madneal's full-sized avatar
🤡

Neal Caffery madneal

🤡
View GitHub Profile
@yassineaboukir
yassineaboukir / List of API endpoints & objects
Last active July 7, 2024 18:45
A list of 3203 common API endpoints and objects designed for fuzzing.
0
00
01
02
03
1
1.0
10
100
1000
@uraimo
uraimo / dnsovertls.md
Last active May 27, 2024 18:17
Configure your Mac to use DNS over TLS
@nikhita
nikhita / update-golang.md
Last active July 19, 2024 17:55
How to update the Go version

How to update the Go version

System: Debian/Ubuntu/Fedora. Might work for others as well.

1. Uninstall the exisiting version

As mentioned here, to update a go version you will first need to uninstall the original version.

To uninstall, delete the /usr/local/go directory by:

@bfritz
bfritz / ruby_filter_base64_decode_example.sh
Last active July 7, 2023 00:25
logstash base64 decode with ruby filter
$ cat base64_decode.conf
input {
stdin { }
}
filter {
grok {
match => ["message", "%{WORD:prefix} %{WORD:b64} %{WORD:suffix}"]
}