Skip to content

Instantly share code, notes, and snippets.

View nnfewl's full-sized avatar
πŸš€
To the Mooooooon πŸŒ•

Ξ›rΞΊvxcx nnfewl

πŸš€
To the Mooooooon πŸŒ•
  • St. Petersburg, Russia
View GitHub Profile
@nnfewl
nnfewl / shadow.sh
Created December 17, 2020 02:53
Add shadow effect around a given image file
#!/bin/sh
# simple command to add shadow effect around given picture
# bash shadow.sh file.png
file=$1
fname=${file%.*}
# convert $file \( +clone -background black -shadow 50x15 \) +swap -background none -layers merge +repage $fname-shadow.png
convert $file \( +clone -background black -shadow 50x15+1+1 \) +swap -background none -layers merge +repage $fname-shadow.png
@nnfewl
nnfewl / πŸ“Š Weekly development breakdown
Last active October 29, 2025 01:41
πŸ“Š Weekly shitcoding breakdown
Bash 15 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Šβ–‘β–‘β–‘ 84.8%
JSON 1 min β–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 8.0%
JavaScript 0 secs β–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 4.3%
HTML 0 secs β–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 2.9%
@nnfewl
nnfewl / kerberos_attacks_cheatsheet.md
Created February 17, 2020 02:43 — forked from TarlogicSecurity/kerberos_attacks_cheatsheet.md
A cheatsheet with commands that can be used to perform kerberos attacks

Kerberos cheatsheet

Bruteforcing

With kerbrute.py:

python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>

With Rubeus version with brute module: