Skip to content

Instantly share code, notes, and snippets.

@DJStompZone
DJStompZone / network.svg
Created June 29, 2025 03:01
Relay Network
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DJStompZone
DJStompZone / powershart.ps1
Created June 16, 2025 12:34
Powershell Art
Set-Alias -Name gr -value Get-Random;$COLORMAP=@{0='Black';1='DarkBlue';2='DarkGreen';3='DarkCyan';4='DarkRed';5='DarkMagenta';6='DarkYellow';7='Gray';8='Blue';9='Green';10='DarkGray';11='Cyan';12='Red';13='Magenta';14='Yellow';15='White';};function RandomColorPair(){$_TMPR = (gr)%16; return @($COLORMAP[$_TMPR],$COLORMAP[(15-$_TMPR)])}; function Colorize(){$_TMPC = RandomColorPair ; $console.BackgroundColor = $_TMPC[0] ; $console.ForegroundColor = $_TMPC[1] ; clear-host; python -c "import os;from random import randint as ri;exec(r'''ts,g,ln,N=(os.get_terminal_size(),lambda:' '*ri(3,9),[],ri(10,25));__=[ln.append(g().join([str(ri(10000,99999)) for _ in range(ri(2,5))]+[str(ri(10000,99999)) for _ in range(ri(2,5))][::-1]).center(ts.columns)) for _ in range(N)];m=len(ln)<(ts.lines/3);ln+=(ln[::-1] if m else []);p=max(ts.lines-len(ln),0);t=p//2;b=p-t;print('\n'*t+'\n'.join(ln)+'\n'*b)''')"};$console=$Host.UI.RawUI;Register-EngineEvent PowerShell.Exiting -Action{$console.BackgroundColor='Black';$console.Foreground
@DJStompZone
DJStompZone / README.md
Last active May 22, 2025 01:11
SCP-294 Experiment Logs: Ontophysical Materials Testing

Addendum 294-OMD

Ontophysical Materials Testing Series

Forward:

The following experiments were conducted by the Ontophysical Materials Division (OMD) under the authority of Site-██’s High-Energy Conceptual Material Research Initiative. All tests were performed in Testing Chamber 3B, a temporary hardened anomaly-interaction zone equipped with an ALPACA-FG (Anomalous Local Physics Abstraction Cascade Abatement Field Generator). The ALPACA-FG is an experimental device developed internally by OMD researchers, designed to suppress ontological discontinuities, semantic leakage, and other high-risk emergent behaviors. Standard hazard containment and post-event sterilization protocols were maintained throughout.


@DJStompZone
DJStompZone / setup.ps1
Last active April 25, 2025 23:09
SSH setup
<#
.SYNOPSIS
Enables and configures OpenSSH server on Windows 10 Pro.
.DESCRIPTION
Installs the OpenSSH.Server feature if needed, starts the sshd service, sets it to auto-start,
allows SSH traffic through the Windows Firewall, and ensures basic configuration is ready.
.AUTHOR
DJ Stomp <[email protected]>
@DJStompZone
DJStompZone / build.sh
Last active April 11, 2025 12:07
Build with Poetry and install Wheel with Pip
#!/usr/bin/env bash
poetry version patch && DISTWHL=`poetry build | awk -F " " -v x=3 '/[^ ]?\.whl/ {print $x}'`; pip install --no-cache-dir --force-reinstall "dist/$DISTWHL"
@DJStompZone
DJStompZone / README.md
Last active March 22, 2025 21:02
The Entire History of Music, I Guess
graph LR
    A[West African Traditional Music] --> B[Proto-Blues Rhythms]
    A --> C[Afro-Caribbean Rhythms]
    B --> D[Field Hollers & Spirituals]
    D --> E[African American Work Songs]
    E ---> F[[Blues]]
    F --> G[Country Blues]
    F --> H[Delta Blues]
    F --> I[Chicago Blues]
@DJStompZone
DJStompZone / sus.js
Created March 20, 2025 22:16
SUSPICIOUS CODE SAMPLE: "Mercy Hacks"
// @Note: Redacted URLs, in the interest of prudence.
// By uncommenting the code below, you assume full responsibility for any potential harm caused.
// As such, I do not advise doing so.
// REDACTED_DOMAIN = "dearesthydrogen.com/"
// REDACTED_ROUTE = "ytc4qgjg9"
// REDACTED_QUERY = {
// key: "b05e412b22b0904a4fd90ce8391d5f37"
// }
// REDACTED = `https://${REDACTED_DOMAIN}${REDACTED_ROUTE}?key=${REDACTED_QUERY.key}`
// The remainder of the document is unmodified except where these URLs occur.
@DJStompZone
DJStompZone / mcbackup.py
Last active March 13, 2025 07:08
BDS Backup .mcworld
#!/usr/bin/env python3
import os
import re
import math
import json
import zlib
import base64
import zipfile
import argparse
@DJStompZone
DJStompZone / README.md
Last active February 24, 2025 16:44
Example Network Diagram

Example Network Diagram

flowchart TD
    A[PC 1] <---> B{Server}
    C[PC 2] <---> B
    D[PC 3] <---> B
    H([Xbox]) --> F
    E[Laptop] <---> B
 I([PS5]) --&gt; F
@DJStompZone
DJStompZone / formatstr3.py
Created February 22, 2025 19:22
PicoCTF Format String 3
#!/usr/bin/env python3
from pwn import *
import argparse
import os
from time import sleep
REQS = ["./format-string-3", "libc.so.6", "ld-linux-x86-64.so.2"]
BIN, libc, _ = REQS
context.binary = ELF(BIN)