An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

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
```