Skip to content

Instantly share code, notes, and snippets.

View latermonk's full-sized avatar
🌴
On vacation

latermonk latermonk

🌴
On vacation
View GitHub Profile
@aojea
aojea / README.md
Last active March 26, 2024 13:13
BPF cheatsheet
@rahman541
rahman541 / proxychain_on_centos.md
Last active August 31, 2021 02:04
Install ProxyChain4 on CentOs

Install ProxyChain4 on CentOs

yum install git
cd ~
git clone https://github.com/rofl0r/proxychains-ng.git 
cd proxychains-ng 
./configure && make && make install  
make install-config
@rochacon
rochacon / cmd-to-websocket.go
Created December 8, 2014 20:17
Stream a command stderr and stdout throught websockets
package main
import (
"bufio"
"fmt"
"github.com/gorilla/websocket"
"io"
"log"
"net/http"
"os/exec"