Skip to content

Instantly share code, notes, and snippets.

View SWORDIntel's full-sized avatar

Epimetheus SWORDIntel

  • Getting Lost
  • 16:29 (UTC -05:00)
View GitHub Profile
@SWORDIntel
SWORDIntel / ABCAM PDF BYPASS
Created March 29, 2025 11:42
ABCAM,COM PII BYPASS
// ==UserScript==
// @name Abcam Adaptive Direct PDF Redirector
// @namespace http://tampermonkey.net/
// @version 1.269420
// @description Adaptive mechanism to bypass Abcam tracking pages by testing candidate PDF URLs based on heuristics, then redirecting to the working link. Also cleans direct PDF URLs.
// @match *://go.myabcam.com/*
// @match *://docs.abcam.com/*
// @grant GM_xmlhttpRequest
// @connect docs.abcam.com
// ==/UserScript==
@SWORDIntel
SWORDIntel / HWIDSPOOF.py
Created March 27, 2025 02:13
HWID Spoofer PoC untested
#!/usr/bin/env python3
"""
Advanced Hardware ID Spoofer for Debian-based systems
For security testing and research purposes only
Author: Assistant
Date: 2023-11-02
"""
import os
@SWORDIntel
SWORDIntel / zimbra
Created March 21, 2025 14:43
Zimbra-SMASH
#!/bin/bash
# Complete Zimbra server backup script
BACKUP_DIR="/backup/zimbra_full_$(date +"%Y%m%d_%H%M%S")"
mkdir -p $BACKUP_DIR
# Stop Zimbra services
su - zimbra -c "zmcontrol stop"
# Database backup (MariaDB/MySQL)
@SWORDIntel
SWORDIntel / ABCAMBYP
Created March 18, 2025 06:40
ABCAM Tracking Bypass
// ==UserScript==
// @name Abcam Universal Redirector
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Bypass Abcam tracking pages and remove tracking parameters from direct PDF links.
// @match *://go.myabcam.com/*
// @match *://docs.abcam.com/*
// @grant none
// ==/UserScript==
@SWORDIntel
SWORDIntel / pycompiler.py
Created February 21, 2025 17:10
pycompiler.py
#!/usr/bin/env python3
#pip install uncompyle6
import os
import subprocess
import py_compile
import compileall
import tkinter as tk
from tkinter import filedialog, messagebox, scrolledtext
class CompilerGUI(tk.Tk):
@SWORDIntel
SWORDIntel / capacli.py
Last active February 21, 2025 17:10
CAPA CLI
#!/usr/bin/env python3
import os
import subprocess
from datetime import datetime
import tkinter as tk
from tkinter import filedialog, ttk, messagebox, scrolledtext
class CapaGUI(tk.Tk):
def __init__(self):
super().__init__()
@SWORDIntel
SWORDIntel / moonwalk.c
Created February 21, 2025 06:03
Download and clean up moonwalk as part of a C exploit build
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
// Helper: check if file exists
int file_exists(const char *path) {
return (access(path, F_OK) == 0);
}
@SWORDIntel
SWORDIntel / sshkill9.3p2.py
Created February 21, 2025 05:29
sshkill9.3p2.py
#!/usr/bin/env python3
"""
README:
======
https://www.openwall.com/lists/oss-security/2023/07/20/1
https://www.cvedetails.com/cve/CVE-2023-38408/
Ignore everything about fucking 9.1:
The PKCS#11 feature in ssh-agent in OpenSSH before 9.3p2 has an insufficiently trustworthy search path, leading to remote code execution if an agent is forwarded to an attacker-controlled system. (Code in /usr/lib is not necessarily safe for loading into ssh-agent.) NOTE: this issue exists because of an incomplete fix for CVE-2016-10009.
its 9.3p fuckign 2.
@SWORDIntel
SWORDIntel / cardsrort.py
Last active February 21, 2025 03:54
Card Sort
#!/usr/bin/env python3
import os
import sys
import socket
import datetime
import subprocess
import tkinter as tk
from tkinter import filedialog
import pandas as pd
import ipaddress