https://github.com/riza/linx
Reveals invisible links within JavaScript files
https://github.com/riza/linx
bugbounty recon
Last synced: about 2 months ago
JSON representation
Reveals invisible links within JavaScript files
- Host: GitHub
- URL: https://github.com/riza/linx
- Owner: riza
- License: mit
- Created: 2022-06-26T00:08:44.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-21T08:06:08.000Z (11 months ago)
- Last Synced: 2025-05-21T08:44:40.136Z (11 months ago)
- Topics: bugbounty, recon
- Language: Go
- Homepage:
- Size: 35.2 KB
- Stars: 211
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bugbounty-tools - linx - Reveals invisible links within JavaScript files (Recon / Links)
README
linx
Reveals invisible links within JavaScript files. Inspired by LinkFinder
# Installation
linx requires **go1.17** to install successfully. Run the following command to get the repo -
```sh
go install -v github.com/riza/linx/cmd/linx@latest
```
# Usage
```sh
# Scan a single JavaScript file and output results in HTML format
linx https://rizasabuncu.com/assets/admin_acces.js --output=admin_access_result.html
# Scan a single JavaScript file and output results in JSON format
linx https://rizasabuncu.com/assets/admin_acces.js --output=admin_access_result.json
# Scan multiple JavaScript files
linx https://example.com/js/file1.js,https://example.com/js/file2.js --output=results.html
# Scan multiple JavaScript files in parallel
linx https://example.com/js/file1.js,https://example.com/js/file2.js --output=results.html --parallel
# Show debug information
linx https://example.com/js/file1.js --output=results.html --debug
```