Skip to content

Instantly share code, notes, and snippets.

View N4NU's full-sized avatar

N4NU N4NU

  • Tokyo,Japan
View GitHub Profile
@MattPD
MattPD / analysis.draft.md
Last active June 22, 2024 07:19
Program Analysis Resources (WIP draft)
@N4NU
N4NU / linux_init.sh
Last active July 7, 2023 18:22
linux init commands
cat id_rsa.pub >> ./.ssh/authorized_keys
hostname vu
echo "vu" > /etc/hostname
sudo dpkg --add-architecture i386
sudo sed -i'~' -E "s@http://(..\.)?(archive|security)\.ubuntu\.com/ubuntu@http://ftp.tsukuba.wide.ad.jp/Linux/ubuntu@g" /etc/apt/sources.list
sudo apt update
sudo apt upgrade
sudo apt install git build-essential socat vim zsh gdb python3-dev libc6-dbg curl libssl-dev libbz2-dev libreadline-dev libsqlite3-dev libffi-dev libncurses5-dev zlib1g-dev liblzma-dev
sudo apt install libc6:i386 libc6-dbg:i386 libncurses5:i386 libstdc++6:i386 gcc-multilib g++-multilib
@icchy
icchy / README.md
Last active March 30, 2023 15:04
pwntools使い方 まとめ

pwntoolsの便利そうな機能まとめ

公式リファレンス: pwntools

install

最新版を降らせる
pip install "git+https://github.com/Gallopsled/pwntools#egg=pwntools"

template