Skip to content

Instantly share code, notes, and snippets.

View MrSuicideParrot's full-sized avatar

André Cirne MrSuicideParrot

View GitHub Profile
@onvrb
onvrb / extend.md
Created April 14, 2022 21:36
extend your luks encrypted btrfs

Extend luks encrypted btrfs

  • cfdisk to resize your desired partition. write then quit.
  • cryptsetup resize luks-***... (your luks partition commonly located in /dev/mapper/luks-***...)
  • btrfs filesystem resize max / use max or whatever custom size you want done. reboot not necessary
@jerodg
jerodg / windows_and_office_kms_setup.adoc
Last active November 16, 2024 10:38
Activate Windows and Office Using KMS Server

Microsoft Windows and Office KMS Setup

@eXenon
eXenon / scapy_bridge.py
Last active May 12, 2024 03:00
Use scapy as a modifying proxy
#!/usr/bin/python2
"""
Use scapy to modify packets going through your machine.
Based on nfqueue to block packets in the kernel and pass them to scapy for validation
"""
import nfqueue
from scapy.all import *
import os
@dmitshur
dmitshur / gist:6927554
Last active October 5, 2024 06:15
[Legacy GOPATH mode] How to `go get` private repos using SSH key auth instead of password auth.