Skip to content

Instantly share code, notes, and snippets.

View cristan's full-sized avatar

Cristan Meijer cristan

View GitHub Profile
@floyd-fuh
floyd-fuh / repackage_apk_for_burp.py
Last active January 28, 2026 17:43
Automatically repackage an Android apk and resign it for usage with Burp Proxy
#!/usr/bin/env python3
import sys
if not sys.version.startswith('3'):
print('\n[-] This script will only work with Python3. Sorry!\n')
exit()
import subprocess
import os
@erica
erica / overrides.md
Last active July 4, 2018 09:11
Requiring Proactive Overrides for Default Protocol Implementations

Requiring Proactive Overrides for Default Protocol Implementations

  • Proposal: tbd
  • Author(s): Erica Sadun
  • Status: tbd
  • Review manager: tbd

Introduction

This proposal enhances protocol implementation safety. It incorporates two keywords that cooperate with compiler checks to limit "near miss" implementation errors and accidental member overrides. This is a strictly syntactic system intended to provide greater safety at compile time, and would not affect existing compiled code bases.