Skip to content

Instantly share code, notes, and snippets.

View bontchev's full-sized avatar

Vesselin Bontchev bontchev

View GitHub Profile
@bontchev
bontchev / EQgroup.md
Last active April 18, 2024 08:05
Curated list of links describing the leaked Equation Group tools for Windows

Links describing the leaked EQ Group tools for Windows

Repositories and ports

Installation and usage guides

@bontchev
bontchev / unhide.py
Last active February 16, 2024 15:55
A script for unhiding hidden Excel sheets
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
import sys
try:
import olefile
@bontchev
bontchev / md5tosha.py
Last active October 12, 2023 09:21
Converts MD5 to SHA256 hashes using VirusTotal
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from re import compile
from sys import stdout, stderr
from argparse import ArgumentParser
try: