Skip to content

Instantly share code, notes, and snippets.

View multun's full-sized avatar

Victor Collod multun

View GitHub Profile
@multun
multun / zenhub-SAFe-bullshitizer.js
Last active May 12, 2022 18:03
zenhub SAFe bullshitizer
// ==UserScript==
// @name SAFe bullshitizer
// @version 1
// @grant none
// @include https://app.zenhub.com/*
// @include https://github.com/*
// ==/UserScript
console.log("starting replacement script");
@multun
multun / hlil_visitor.py
Created August 6, 2022 22:38
BinaryNinja HLIL expression visitor
from dataclasses import dataclass
from typing import Callable
@dataclass
class ExprVisitor:
matcher: Callable[[HighLevelILInstruction], bool]
block: HighLevelILBasicBlock
def visit_insn(self, expr):
@multun
multun / trickz.py
Last active January 13, 2023 17:45
Jupyter notebook / lab trickz
import tqdm
import tqdm.notebook
tqdm.tqdm = tqdm.notebook.tqdm
from tqdm import tqdm
import pdb
def custom_exc(shell, etype, evalue, tb, tb_offset=None):
shell.showtraceback((etype, evalue, tb), tb_offset=tb_offset)
pdb.post_mortem(tb)
get_ipython().set_custom_exc((Exception,), custom_exc)