https://github.com/ericcornelissen/odgen-action
A GitHub Action for ODGen
https://github.com/ericcornelissen/odgen-action
actions odgen
Last synced: about 1 month ago
JSON representation
A GitHub Action for ODGen
- Host: GitHub
- URL: https://github.com/ericcornelissen/odgen-action
- Owner: ericcornelissen
- License: gpl-2.0
- Created: 2024-11-13T19:23:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-11T12:12:32.000Z (10 months ago)
- Last Synced: 2025-09-15T01:29:21.774Z (9 months ago)
- Topics: actions, odgen
- Language: Shell
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# ODGen Action
A GitHub Action for [ODGen](https://github.com/Song-Li/ODGen), scan your
JavaScript project for command execution, code execution, prototype pollution,
internal property tampering, cross-site scripting (XSS) or path traversal
vulnerabilities.
## Usage
```yml
- uses: ericcornelissen/odgen-action@v1
with:
# The type of vulnerabilities to scan for.
#
# Must be a (comma or newline separated) list of the following:
# - os_command
# - code_exec
# - proto_pollution
# - ipt
# - xss
# - path_traversal
#
# Required
vulnerability_type: os_command, proto_pollution
# The root of the project to analyze.
#
# Optional
# Default: .
root: src
# The maximum duration of the analysis in seconds.
#
# Optional
# Default: 300 (5 minutes)
timeout: 600
```
## Features & Bugs
Note that this this project only offers a GitHub Action that runs ODGen for you.
If you want to report a problem with or improve the behavior of the Action, open
an issue in this repository. Else, report it to ODGen.
## License
This project, like ODGen itself, is available under the GPL-2.0 license.