Skip to content

Instantly share code, notes, and snippets.

View zer0yu's full-sized avatar
🧸
Focusing

z3r0yu zer0yu

🧸
Focusing
View GitHub Profile
@zer0yu
zer0yu / cloudSettings
Last active December 5, 2019 02:17 — forked from orangetw/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
{"lastUpload":"2019-12-05T02:17:28.689Z","extensionVersion":"v3.4.3"}
@zer0yu
zer0yu / filewatch.py
Created September 22, 2022 02:37
File monitoring: for monitoring whether a specified file has been accessed or modified
import pyinotify
filechange_history = []
class MyEventHandler(pyinotify.ProcessEvent):
def process_IN_ACCESS(self, event)::
filechange_history.append("ACCESS")
print("ACCESS EVENT: ", event.pathname)