Skip to content

Instantly share code, notes, and snippets.

@smx-smx
smx-smx / XZ Backdoor Analysis
Last active June 2, 2025 22:53
[WIP] XZ Backdoor Analysis and symbol mapping
XZ Backdoor symbol deobfuscation. Updated as i make progress
@ruevaughn
ruevaughn / 1_top+hacker_methodologies.md
Last active September 17, 2025 10:00
Hacker Methodologies & Tools (NEW)

The Top Hacker Methodologies & Tools Notes

Nuclei Templates

Concrete5 CMS : Identification, Mass Hunting, Nuclei Template Writing & Reporting


@Kipjr
Kipjr / userdata
Last active March 27, 2023 07:35
nocloud/userdata
#cloud-config
autoinstall:
version: 1
refresh-installer:
update: no
channel: edge
early-commands:
- /cdrom/_SOFTWARE/early.sh
apt:
geoip: true
@Lissy93
Lissy93 / Example 1 - Getting Started - conf.yml
Last active October 1, 2025 16:36
Example Config Files for Dashy
---
# Page meta info, like heading, footer text and nav links
pageInfo:
title: Dashy
description: Welcome to your new dashboard!
navLinks:
- title: GitHub
path: https://github.com/Lissy93/dashy
- title: Documentation
path: https://dashy.to/docs
@craysiii
craysiii / Uninstall-Chrome.ps1
Created May 2, 2020 00:25
Uninstall Chrome with Powershell Silently
$64bit = if ([System.IntPtr]::Size -eq 8) { $true } else { $false }
$RegKeys = @('HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\')
if ($true -eq $64bit) { $RegKeys += 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\'}
$Apps = $RegKeys | Get-ChildItem | Get-ItemProperty | Where-Object { $_.DisplayName -like '*Chrome*' }
$Apps | ForEach-Object {
$ExecLocation = "$($_.UninstallString.Split('"')[1])"
Start-Process -FilePath "$ExecLocation" -ArgumentList "--uninstall --system-level --force-uninstall" -Wait
}
@mauler
mauler / http_server_auth.py
Last active September 6, 2025 11:46 — forked from fxsjy/SimpleAuthServer.py
Python3 http.server supporting basic HTTP Auth (username/password)
# Extended python -m http.serve with --username and --password parameters for
# basic auth, based on https://gist.github.com/fxsjy/5465353
from functools import partial
from http.server import SimpleHTTPRequestHandler, test
import base64
import os
class AuthHTTPRequestHandler(SimpleHTTPRequestHandler):
@guillermo-musumeci
guillermo-musumeci / Install-FireFox.ps1
Last active October 3, 2025 08:30
Unattended install of Firefox for Windows using PowerShell
# Unattended Install of Firefox
$SourceURL = "https://download.mozilla.org/?product=firefox-msi-latest-ssl&os=win64&lang=en-US";
$Installer = $env:TEMP + "\firefox.exe";
Invoke-WebRequest $SourceURL -OutFile $Installer;
Start-Process -FilePath $Installer -Args "/s" -Verb RunAs -Wait;
Remove-Item $Installer;