InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Follow publication

Exploring Sensitive Data in JavaScript Files

0verlo0ked
InfoSec Write-ups
Published in
4 min readDec 26, 2024

--

Why JavaScript Files?

Manual Techniques for Exploring JavaScript Files

1. Endpoint Classification

2. Keyword Search

grep -E "(key|token|auth|password|secret)" *.js

3. Analyzing Comments

4. Focus on Variable Names

Automated Techniques for JavaScript Analysis

1. Tools for Endpoint Discovery

python linkfinder.py -i https://example.com/script.js -o cli

2. Unique URL Extraction

gau example.com | grep ".js"

3. Sensitive Data Discovery

python SecretFinder.py -i https://example.com/script.js -o cli

4. Custom Templates for Data Extraction

Efficient Bug Hunting Strategies

1. Subdomain Enumeration

subfinder -d example.com

2. Origin IP Discovery

3. Data Management

Additional Techniques and Tools

1. Content Delivery Network (CDN) and External Scripts

2. Cross-Site Scripting (XSS) Vulnerabilities in JavaScript

3. Deobfuscating JavaScript Code

Practical Example

Scenario: Testing https://example.com for vulnerabilities

gau example.com | grep ".js" > js-urls.txt
python linkfinder.py -i js-urls.txt -o cli
python SecretFinder.py -i js-urls.txt -o cli

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Written by 0verlo0ked

Fueled by Caffeine . Join me as I share rare insights and unconventional tricks to level up in the world of hacking.

No responses yet

Write a response