A community-driven collection of pattern groups for JS Extractor.
JS Extractor is a browser extension that helps security researchers and bug bounty hunters extract sensitive information, endpoints, and hidden parameters from JavaScript files.
This repository provides pre-configured extraction groups in YAML format that you can easily import into your JS Extractor extension to enhance your web security testing.
- Ensure you have the JS Extractor extension installed in your browser.
- Open the extension's Options/Settings page.
- Locate the YAML Import/Export section for groups.
- Copy the raw contents of any
.ymlfile from this repository and paste it into the import window. - Once imported, the new extraction group and its patterns will be active inside your extension!
We welcome contributions from the community! If you have a solid set of regex patterns useful for bug bounty hunting or security research, we'd love to see them added:
- Fork this repository.
- Create or update a YAML file following the
js-extractorgroup structure (refer to existing files as a template). - Submit a Pull Request with your new patterns.
js-extractor:
name: Your Custom Group
patterns:
- regex: "YOUR_REGEX_HERE"
description: "Description of what this regex finds"
- regex: "ANOTHER_REGEX"
description: "Another description"