https://github.com/progfay/eval-detector
Detect calling `eval()` on specific website
https://github.com/progfay/eval-detector
Last synced: 9 months ago
JSON representation
Detect calling `eval()` on specific website
- Host: GitHub
- URL: https://github.com/progfay/eval-detector
- Owner: progfay
- License: mit
- Created: 2020-12-08T13:26:34.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-13T11:47:47.000Z (about 5 years ago)
- Last Synced: 2025-01-30T20:16:16.188Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 115 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `eval()` Detector
Detect calling `eval()` on specific website
## Usage
### with docker-compose
Run headless-chrome and Node.js at the same time:
```sh
docker-compose up --build
```
Run only headless-chrome in background:
```sh
docker-compose up -d chrome
```
Run Node.js with build before executing:
```sh
docker-compose up --build node
```
### with Local Environment
1. Run only headless-chrome in background
2. Execute built Javascript code
```sh
docker-compose up -d chrome
npm start
```