A quick way to find "all" paths for Next.js websites:
👩💻 javascript:
#BugBounty #Tips #JS
➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖
👤 t.iss.one/BugCod3BOT
📣 t.iss.one/BugCod3
console.log(__BUILD_MANIFEST.sortedPages)console.log(__BUILD_MANIFEST.sortedPages.join('\n'));#BugBounty #Tips #JS
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥8❤3⚡2👍1
JSNinja - "Hunting Bugs in JavaScript!"
💬
JSNinja is a powerful tool for extracting URLs and sensitive information from JavaScript files. It's designed for security enthusiasts,BugHunters and developers.
📊 Features:
➕ Extract URLs from JavaScript files!
➕ Identify sensitive information such as API keys and tokens!
➕ User-friendly interface!
➕ Open Source and actively maintained!
🔼 Installation:
💻 Usage:
Command-Line Options:
⚪️
⚪️
⚪️
⚪️
😸 Github
⬇️ Download
🔒
#BugBounty #JS #Tips
➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖
👤 t.iss.one/BugCod3BOT
📣 t.iss.one/BugCod3
JSNinja is a powerful tool for extracting URLs and sensitive information from JavaScript files. It's designed for security enthusiasts,BugHunters and developers.
sudo apt update
sudo apt install git python3 python3-pip -y
cd JSNinja
pip3 install -r requirements.txt
python3 jsninja.py -u https://example.com/script.js --secrets --urls
Command-Line Options:
-u or --url: Specify a single JavaScript URL to fetch.--secrets: Look for sensitive information in the JavaScript content.--urls: Extract URLs from the JavaScript content.-o or --output_file: Specify the file to save extracted links (default: extracted_links.txt).BugCod3#BugBounty #JS #Tips
Please open Telegram to view this post
VIEW IN TELEGRAM
👍8❤5⚡3🔥3
javascript How to extract urls,srcs and hrefs from all HTML elements in any website? Open DevTools and run
#js #extract #urls
➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖ ➖
👤 t.iss.one/BugCod3BOT
📣 t.iss.one/BugCod3
urls = []
$$('*').forEach(element => {
urls.push(element.src)
urls.push(element.href)
urls.push(element.url)
}); console.log(...new Set(urls))
#js #extract #urls
Please open Telegram to view this post
VIEW IN TELEGRAM
❤5⚡3👍3🔥3❤🔥2