Skip to content

Instantly share code, notes, and snippets.

View CyberAstronaut101's full-sized avatar
🎆

Elliot Mason CyberAstronaut101

🎆
View GitHub Profile
@ChristopherA
ChristopherA / wikilinks-and-named-edges.md
Last active August 5, 2026 01:08
Wikilinks and Named Edges — Agent Reference Guide (declared edges in plain markdown)

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@alpharez
alpharez / fortiswitch-troubleshooting.md
Last active June 25, 2026 17:00
Fortinet FortiSwitch Troubleshooting Commands

Fortinet FortiSwitch Troubleshooting Commands

This document provides a comprehensive list of useful CLI commands for diagnosing and troubleshooting common issues on Fortinet FortiSwitch devices. These commands are essential for network administrators to quickly identify and resolve problems related to system status, port connectivity, VLANs, stacking, and more.


1. System Information & Status

These commands provide an overview of the FortiSwitch's general health, configuration, and resource utilization.

@kamronbatman
kamronbatman / UninstallCWRMM.ps1
Last active July 21, 2026 19:52
Uninstall ConnectWise RMM / Continuum ITSPlatform & SAAZOD
# CW RMM Uninstaller Script
# This script forcefully removes the ConnectWise RMM agent and its components.
# Run with administrative privileges.
$TranscriptPath = "$env:SystemDrive\CWRMM-Removal\CWRMM-Uninstall-$(Get-Date -Format yyyyMMdd-HHmmss).log"
New-Item -Path $TranscriptPath -ItemType Directory -Force | Out-Null
Start-Transcript -Path $TranscriptPath -Append | Out-Null
Write-Output ""
Write-Output "Beginning CW RMM Uninstall"
AppIds
# 9fcfb031-1bf6-4848-8732-5573fd64fc09 - Augmentt
# 9359814a-7403-4af9-9113-d5c8cab020ed - Rewst CSP connector
# 06bfda05-2d5e-4b3b-ac5d-79f07e402973 - Rewst Prod
# c19d36e8-6537-4998-9872-ea8b962bd0b6 - Rewst Azure Integration
# d7db2a1c-c38b-4bd1-a30f-0915167ba928 - Datto Backupify/Saas Protection
# 0c3cdc94-15ba-4b89-9222-29f599727b1c - AutoTask Client Portal SSO
# 62603940-b9b0-454f-b138-eb8d571f21d3 - Eshgro Smarter 365
Axcient x360 Cloud, e08a7460-e37a-4c43-911f-9cee560e973c
@kkrypt0nn
kkrypt0nn / ansi-colors-discord.md
Last active August 16, 2026 10:52
A guide to ANSI on Discord

A guide to ANSI on Discord

Discord is now slowly rolling out the ability to send colored messages within code blocks. It uses the ANSI color codes, so if you've tried to print colored text in your terminal or console with Python or other languages then it will be easy for you.

Quick Explanation

To be able to send a colored text, you need to use the ansi language for your code block and provide a prefix of this format before writing your text:

\u001b[{format};{color}m
CVEs:
• http://blog.ptsecurity.com/2020/03/cve-2019-18683-exploiting-linux-kernel.html
Exploiting a Linux kernel vuln. in the V4L2 subsystem (CVE-2019-18683).
• https://google.github.io/security-research/pocs/linux/cve-2021-22555/writeup.html
Turning \x00\x00 into 10000$ (CVE-2021-22555).
• https://coreruleset.org/20210630/cve-2021-35368-crs-request-body-bypass/
CRS Request Body Bypass (CVE-2021-35368).
@btarg
btarg / crashcreator.bat
Created January 18, 2021 01:16
Discord Crash Video Creator
@echo off
title Discord Crash Video Creator
color c
echo ========================= NOTE =========================
echo This script creates videos that crash Discord/Chrome.
echo Hardware acceleration must be enabled for it to work.
echo Crash videos will get you banned in some Discord groups!
echo.
echo FFmpeg needs to be installed for this to work:
@antiops
antiops / pixieset-scrape.js
Created November 1, 2020 04:16
pixieset.com dumper
/* pixieset.com full size image scraper
*
* Rips all images in highest quality
*
* To use scroll to the very bottom of the album and press F12 then paste the below snippet in and press enter.
* The full file list will be copied to your clipboard afterwards. You can use jdownloader to easily download the full list.
*/
(() => {
const data = document.querySelectorAll('.masonry-brick img')