https://github.com/borisskert/md5-spider
https://github.com/borisskert/md5-spider
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/borisskert/md5-spider
- Owner: borisskert
- License: mit
- Created: 2020-12-07T18:49:07.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-08T13:21:21.000Z (almost 5 years ago)
- Last Synced: 2025-08-17T19:39:52.613Z (2 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# md5-spider
A javascript website md5 change detector.
## Prepare settings
```json
{
"url": "",
"check_interval": 10,
"ignores": [
"([A-Za-z0-9\" :/\\.=\\-\\|\\n\\*\\!;\\/\\_\\s\\[\\]{}]+(<!\\[CDATA\\[)[A-Za-z0-9\" :/\\.=\\-\\|\\n\\*\\!;\\/\\_\\s\\[\\]{}<>]+(\\]\\{}]+>)?[A-Za-z0-9\" :/\\.=\\-\\|\\n\\*\\!;\\/\\_\\s\\[\\]{}]+)?<\\/script>"
],
"db_file": "/var/local/md5spider/db.json",
"recipients": [
"your recipients"
],
"smtp": {
"server": "<your smtp server>",
"port": 587,
"from": "<your sender address>",
"username": "<your smtp username>",
"password": "<your smtp password>"
}
}
```## Usage
### Docker
```shell script
docker run \
-v $(pwd)/settings.json:/settings.json \
-v $(pwd)/.db:/var/local/md5spider \
borisskert/md5spider:latest
```### docker-compose
```shell script
version: '3'services:
md5spider:
image: borisskert/md5spider:latest
volumes:
- ./settings.json:/settings.json:ro
- ./.db:/var/local/md5spider:rw
```## Links
* [md5-spider @ hub.docker.com](https://hub.docker.com/repository/docker/borisskert/md5spider)