Skip to content

Instantly share code, notes, and snippets.

View gary23w's full-sized avatar

Garrett Stimpson gary23w

View GitHub Profile
@gary23w
gary23w / simplepacketsniffer.py
Last active February 16, 2025 14:59
simple-packet-sniffer.py
"""
simplepacketsniffer.py 0.4
Usage examples:
Dataset Building Mode (with LLM labeling):
sudo python simplepacketsniffer.py --build-dataset --llm-label --num-samples 10 --dataset-out training_data.csv -i INTERFACE -v INFO [--xdp]
Training Mode:
sudo python simplepacketsniffer.py --train --dataset training_data.csv --model-path model.pkl -v INFO
@gary23w
gary23w / simplephpserver.py
Created November 22, 2024 15:52
python simple webserver with php and hot reload
# installs php-cgi . arch linux goes oom . spends 1702 hours fixing arch linux
# I like working in php sometimes too
import socket
import threading
import logging
import os
import subprocess
import re
import time
import select
@gary23w
gary23w / simpleclickermacro.py
Last active February 5, 2025 17:19
Couldn't find a good clicker macro app, so I decided to create one myself.
# Couldn't find a good clicker macro app. so I decided to create one myself.
import tkinter as tk
from tkinter import Toplevel, Label, Button, Checkbutton, IntVar
import pyautogui
import time
import threading
import logging
from pynput import keyboard, mouse
import signal
import sys
@gary23w
gary23w / simplebayestheoremguidestatistics.md
Last active February 5, 2025 17:19
Shaping and Illustrating after my morning coffee...
@gary23w
gary23w / simpleimagetostring.sh
Last active February 5, 2025 17:19
image-to-string
#!/bin/bash
mkdir -p trocr_app
cd trocr_app
cat << 'EOF' > ocr.py
import sys
from PIL import Image
from transformers import TrOCRProcessor, VisionEncoderDecoderModel
@gary23w
gary23w / gary.bf
Created October 7, 2024 17:35
gary was here
++++++++++[>++++++++++<-]>+++.------.+++++++++++++++++.+++++++.[-]++++++++++++++++++++++++++++++++.<+++++++[>+++++++++++++++++<-]>.----------------------.++++++++++++++++++.[-]++++++++++++++++++++++++++++++++.<++++++++[>+++++++++++++<-]>..---.+++++++++++++.-------------.
@gary23w
gary23w / simplepolicyservice.ps1
Last active February 5, 2025 17:20
policy-and-service-config
# services and policies :\
# New names for the accounts
$NewAdminName = "GaryAdmin"
$NewGuestName = "GaryGuest"
# Define the services to be disabled
$servicesToDisable = @(
"MapsBroker", # Downloaded Maps Manager
"lfsvc", # Geolocation Service
@gary23w
gary23w / simplematrixscreensaver.sh
Last active February 5, 2025 17:20
matrix-style-cascading-screensaver-in-bash
#!/bin/bash
# free time plus a need to build a screensaver in bash, enjoy the cascade.
# ps. the key to this is the "eval" function.
# - gary
# clear the screen and hide the cursor
echo -e "\033[2J\033[?25l"
# get the number of lines and columns of the terminal
R=$(tput lines)
@gary23w
gary23w / simplehilbertsort.py
Last active February 5, 2025 17:20
an optimized version of the hilbert sort algorithm.
def hilbert_sort(data):
"""
Sorts an input array using Hilbert curve mapping.
Parameters:
data (list): The input array to be sorted.
Returns:
sorted_data (list): The sorted input array.
"""
@gary23w
gary23w / simplecyberpentestgary.md
Last active February 5, 2025 17:21
Penetration Test Cheat Sheet

Techniques and Methodology

a gary23w production

a NON linear C by C.

typically I export all required variables. will list all vars and set tool resource list in near future.

Thank you,