Skip to content

Instantly share code, notes, and snippets.

View LockBlock-dev's full-sized avatar
📌
I may be slow to respond.

LockBlock-dev

📌
I may be slow to respond.
  • France
  • 16:22 (UTC +02:00)
View GitHub Profile
@LockBlock-dev
LockBlock-dev / scan_report.py
Created February 22, 2023 15:49
PortSentry AbuseIPDB report script
"""
Copyright © 2023 LockBlock-dev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@LockBlock-dev
LockBlock-dev / extract.py
Last active December 28, 2022 17:11
Extract BMP images from a file using Python
# Credits: https://gist.github.com/NanoDano/e092cf9f219e4b0506743bb64d303452?permalink_comment_id=3751054#gistcomment-3751054
import os
import sys
if len(sys.argv) < 2:
sys.exit(f"Usage: sys.argv[0] <file>")
filename = sys.argv[1]
bin = open(filename, "rb")
@LockBlock-dev
LockBlock-dev / decode.py
Created August 2, 2021 09:54
Tiny code to decode Discord WS Zlib ETF messages (doesn't always work)
import zlib
import base64
import earl
ZLIB_SUFFIX = b'\x00\x00\xff\xff'
buffer = bytearray()
def uncompress(str):
str = base64.decodebytes(str)
buffer.extend(str)