This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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__() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |