Skip to content

Instantly share code, notes, and snippets.

View robbert1978's full-sized avatar
😴
Sleeping

robbert1978 robbert1978

😴
Sleeping
View GitHub Profile
@robbert1978
robbert1978 / windbg.md
Created August 9, 2025 10:27 — forked from muzlightbeer/windbg.md
WinDbg for Linux Users

The Windows Debugger (WinDbg) for Linux users

The following provides commands for getting started with WinDbg if you've come from a Linux only background and have only used GDB and LLDB.

VMware Fusion and VHD images

Some Windows operating system trials come as virtual hard disk (VHD) images, that state Hyper-V is required to use them. With macOS and VMware Fusion (at the time of writing, VMware Fusion 12.1.2), you can drag the executable files into VMware (the same as with ISO images) and install them normally. No subscriptions are required to obtain access to a DVD or ISO image if you do not have a system that uses Windows as the base operating system.

Microsoft symbols

@robbert1978
robbert1978 / qnap-qts-fw-cryptor.py
Created April 19, 2024 16:45 — forked from ulidtko/qnap-qts-fw-cryptor.py
QNAP QTS firmware encryptor/decryptor.
#!/usr/bin/env python3
import os, sys
import argparse
import struct
from functools import reduce
"""
QNAP QTS firmware encryptor/decryptor.
Based on https://pastebin.com/KHbX85nG
@robbert1978
robbert1978 / gmail.py
Created March 8, 2018 08:42
Spam or send an email
print" _____|#|_____ "
print" |_____________| "
print" |_______________| "
print" ||_EMAIL_###_BOX_|| "
print" | |-|-|-|||-|-|-| | "
print" | |-|-|-|||-|-|-| | "
print" | |_|_|_|||_|_|_| | "
print" | ||~~~| | |---|| | "
print" | ||~~~|!|!| O || | "
@robbert1978
robbert1978 / crack-er.py
Created March 7, 2018 09:01
Crack zip or rar
import zipfile
import rarfile
import os
import sys
from threading import Thread
import argparse
from itertools import product
import time
parser = argparse.ArgumentParser(description='CompressedCrack v1.0.0 by ThanhMinh', epilog='Use the -h for help')