Skip to content

Instantly share code, notes, and snippets.

View PointBreaker's full-sized avatar
🎯
Focusing

Dax PointBreaker

🎯
Focusing
View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@PointBreaker
PointBreaker / pwntools_example.py
Created January 27, 2024 04:53 — forked from zafirr31/pwntools_example.py
Short pwntools tutorial for beginners
from pwn import *
BINARY = '<path_to_binary>'
IP, PORT = '<ip>', 8080
LOCAL = True
if LOCAL:
p = process(BINARY) # Makes pipe fd
@PointBreaker
PointBreaker / tmux-cheatsheet.markdown
Created August 13, 2022 16:45 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname