This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.reddit.com/r/netsec/comments/biu9kc/moddetective_small_python_tool_that_analyzes_the/em3siw8 | |
find / -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""For my friends in OTA. | |
--Towel, 2019 | |
""" | |
from functools import wraps | |
class LimitCalls: | |
"""A decorator to limit the number of calls to a function. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""inaction_solve.py | |
CTF: SuSeC CTF 2020 - https://ctftime.org/event/1007 | |
Challenge: Inaction - https://ctftime.org/task/10729 | |
Flag: SUSEC{5m4Rt___p0W___cH4lL3n93} | |
twitter.com/0xTowel | |
""" | |
import re |
OlderNewer