Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / solve_test.py
Created October 2, 2015 12:40
angr symbolic argv test
#!/usr/bin/env python
import angr
p = angr.Project('test')
key_str = angr.StringSpec(sym_length=20)
initial_state = p.factory.entry_state(args=['./test', key_str])
pg = p.factory.path_group(initial_state)
@denji
denji / golang-tls.md
Last active March 29, 2024 03:03 — forked from spikebike/client.go
Simple Golang HTTPS/TLS Examples

Moved to git repository: https://github.com/denji/golang-tls

Generate private key (.key)
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048

# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)
@JamesMGreene
JamesMGreene / gitflow-breakdown.md
Last active April 16, 2024 16:36
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository