Skip to content

Instantly share code, notes, and snippets.

View wolveix's full-sized avatar
:octocat:
Forever waiting for servers.

Robert Thomas wolveix

:octocat:
Forever waiting for servers.
View GitHub Profile
@wolveix
wolveix / outline.yaml
Created February 8, 2021 20:18
Concatenated Outline Wiki Kubernetes YAML File
apiVersion: v1
kind: Namespace
metadata:
name: outline
---
apiVersion: v1
kind: ConfigMap
metadata:
name: outline
namespace: outline
@wolveix
wolveix / PCAP Decryption in Go
Created September 13, 2022 20:58
PCAP Decryption in Go
package pcap
import (
"bytes"
"errors"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"