Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cryptix720/aeolusx
https://github.com/cryptix720/aeolusx
Last synced: about 20 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/cryptix720/aeolusx
- Owner: Cryptix720
- License: mit
- Created: 2017-10-10T22:22:15.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T09:22:31.000Z (about 6 years ago)
- Last Synced: 2024-11-01T12:36:30.869Z (7 days ago)
- Language: PHP
- Size: 59.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Aeolusx
Build Status
Installation:Run command: npm install -g aeolusx in your terminal
Usage:
aeolusx [options] [file/directory]
Options:
- -h, --help - output usage information
- -V, --version - output the version number
- -v, --verbose - be verbose
- -r, --recursive - scan directories recursively. All the subdirectories in the given directory will be scanned
- -l, --log - save scan report to #file.
- --json - save scan report in JSON format.
- --exclude - don't scan file names matching regular expression.
- --exclude-dir - don't scan directory names matching regular expression.
- --include - only scan file matching regular expression.
- --include-dir - only scan directory matching regular expression.
- --max-filesize - scan files with size at most #n kilobytes (default: 100 MB)
- -w, --whitelist - use whitelist database to minimize false positive resultsv
- -p, --product - provide product information added to the whitelist database
- --update-whitelist - add files signatures to the whitelist database provided by --whitelist parameter
Examples:
Check all files in /var/www/htdocs folder.
$ aeolusx -r /var/www/htdocs
Check only JavaScript in /var/www/htdocs folder and show the list of all checked files.
$ aeolusx -r -v --include \.js$ /var/www/htdocs
Add WordPress to whitelist.
$ aeolusx --update-whitelist -w ./whitelist.sqlite -p "WordPress 4.3.1" ./temp/wordpress
Check all files in /var/www/htdocs folder using whitelist.
$ aeolusx -r -w ./whitelist.sqlite /var/www/htdocs