Skip to content

Instantly share code, notes, and snippets.

@cokia
Last active January 26, 2019 12:04
Show Gist options
  • Save cokia/88152ea30555f056b7acbc6103a3b8d1 to your computer and use it in GitHub Desktop.
Save cokia/88152ea30555f056b7acbc6103a3b8d1 to your computer and use it in GitHub Desktop.
hubgit.py
import glob,zlib
for i in glob.glob("objects/*/*"):
obj = zlib.decompress(open(i,"rb").read())
if 'flag' in obj.lower():
print(obj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment