Skip to content

Instantly share code, notes, and snippets.

View kubinka0505's full-sized avatar
👽
I may be slow to respond.

kubinka0505 kubinka0505

👽
I may be slow to respond.
View GitHub Profile
@StevenACoffman
StevenACoffman / Homoglyphs.md
Last active June 1, 2024 14:05
Unicode Look-alikes

Unicode Character Look-Alikes

Original Letter Look-Alike(s)
a а ạ ą ä à á ą
c с ƈ ċ
d ԁ ɗ
e е ẹ ė é è
g ġ
h һ
@gmolveau
gmolveau / 7z_bruteforce.py
Last active December 5, 2023 22:24
Python 7zip bruteforce
import subprocess
import sys
def main():
archive = sys.argv[1]
dictionary = sys.argv[2]
with open(dictionary, "r") as dic:
for line in dic:
word = line.rstrip('\n')
stdout = subprocess.call(