Skip to content

Instantly share code, notes, and snippets.

@mechanicalnull
mechanicalnull / LICENSE.txt
Last active May 19, 2023 23:22 — forked from psifertex/1_Snippet_Instructions.txt
My current collection of snippets
To the extent possible under law, @mechanicalnull has waived all copyright and related or neighboring rights to this Binary Ninja Snippets Collection (https://gist.github.com/mechanicalnull/b19c29ce38152b7304c2fad66168badd). This work is published from: United States.
For more information on a CC0 license, see: https://creativecommons.org/publicdomain/zero/1.0/deed.en
@mechanicalnull
mechanicalnull / solve.py
Created February 8, 2022 03:33
DiceCTF 2022 sober-bishop solution
import copy
import time
from typing import List
from hashlib import md5
sym_string= " .o+=*BOX@%&#/^SE"
#valid_chars = "0123456789abcdefghijklmnopqrstuvwxyz_-}"
valid_chars = "nopqrstuvwxyz0123456789abcdefghijklm_-}"
#valid_chars = "abcdefghijklmnopqrstuvwxyz0123456789_-}"
@mechanicalnull
mechanicalnull / sendmail_crackaddr.c
Created December 9, 2021 15:32
Test harness for crackaddr from sendmail 8.12.7
// Test harness for crackaddr from sendmail 8.12.7 by @mechanicalnull
// sendmail license: https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf
#include <string.h>
#include <ctype.h>
#define MAXNAME 256
typedef int bool;
#define false 0