Skip to content

Instantly share code, notes, and snippets.

View imlk0's full-sized avatar
๐Ÿ›Œ
in sleeping

Kun Lai imlk0

๐Ÿ›Œ
in sleeping
View GitHub Profile
@milesrichardson
milesrichardson / wireshark-remote-capture-ssh-docker.md
Last active September 25, 2024 01:41
bash command to open wireshark and capture packets in a remote docker container on a remote machine over SSH

capture those packets

run this command on local machine where wireshark is installed (e.g. MacOS)

export raw_pcap="$(mktemp -t pcap-raw)" ; \
echo "Raw pcap: $raw_pcap" ; \
wireshark -k -i <(ssh [email protected] '\
  docker run --rm \
 --net container:$(docker ps -qf name=haproxy) \
@x0nu11byt3
x0nu11byt3 / elf_format_cheatsheet.md
Created February 27, 2021 05:26
ELF Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation

@rjeczalik
rjeczalik / how-to-find-forks-of-deleted-repo.md
Created August 26, 2019 16:39
How to find forks of a deleted repository?
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 9, 2025 19:51
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites