tristanlatr / WPWatcher

Wordpress Watcher is a wrapper for WPScan that manages scans on multiple sites and reports by email and/or syslog. Schedule scans and get notified when vulnerabilities, outdated plugins and other risks are found.
https://wpwatcher.readthedocs.io
Apache License 2.0
47 stars 18 forks source link

Use a real database system to store reports #7

Closed tristanlatr closed 4 years ago

tristanlatr commented 4 years ago

Currently, reports are loaded as a whole at the beginning of the script and wrote to file when a scan end using the json.dump() method. See WPWatcher. update_and_write_wp_reports() method.

Could use https://pypi.org/project/tinydb/ It will increase the performance of the script.

tristanlatr commented 4 years ago

Won't work on that anytime soon