Skip to content

Instantly share code, notes, and snippets.

View tomtastic's full-sized avatar

Tom Matthews tomtastic

  • Amazon AWS (@aws)
  • London
View GitHub Profile
@whitequark
whitequark / meow.md
Last active April 19, 2025 08:46
reverse engineering tools

"%" means not tested by me personally.

Reference material

  • syscall.sh: Linux ARMv7/AArch64/x86/x86_64 ABI and syscall tables

Disassemblers and decompilers

  • Binary Ninja: interactive native code disassembler, decompiler, and debugger
    • BinExport: companion tool for BinDiff
      • when building, replace the BN SDK it downloads with a path to BN API library
    • SENinja: symbolic execution engine for BN with a debugger-like API, based on Z3
@tdec
tdec / gist:128751d818e9753364a72086b961390b
Last active June 23, 2023 20:41
Bluetooth vulnerabilities
Vulnerabilities published by Bluetooth SIG, Android, Apple, Intel and Qualcomm security bulletins, published at security conferences or as master thesis. If any are missing, thanks for pointing me to them !
Todo: macOS
Year | Name | CVE
2020 | Blurtooth: Exploiting Cross-Transport Key Derivation | 2020-15802
2020 | Pairing Method Confusion | 2020-10134
2020 | BIAS: Bluetooth Impersonation Attacks | 2020-10135
2020 | BlueRepli | ?
2020 | BLESA: Bluetooth Low energy spoofing attacks | 2020-9770
@magicznyleszek
magicznyleszek / css-selectors.md
Last active January 27, 2025 14:19
CSS Selectors Cheatsheet

CSS Selectors Cheatsheet

Hi! If you see an error or something is missing (like :focus-within for few years :P) please let me know ❤️

Element selectors

Element -- selects all h2 elements on the page

h2 {