https://github.com/jacobbednarz/mixed-content-scanner
A tool to identify mixed content and assets
https://github.com/jacobbednarz/mixed-content-scanner
Last synced: about 1 month ago
JSON representation
A tool to identify mixed content and assets
- Host: GitHub
- URL: https://github.com/jacobbednarz/mixed-content-scanner
- Owner: jacobbednarz
- License: mit
- Created: 2015-01-31T06:39:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-31T08:01:14.000Z (about 10 years ago)
- Last Synced: 2025-02-07T13:55:39.991Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 137 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SSL mixed content scanner
This tool is designed to quickly identify any mixed content a page contains in
order to serve a secure page without any security warnings.## Installation
Via RubyGems:
```bash
$ gem install mixed_content_scanner
```## Usage
The tool accepts a single parmeter which is the URL you wish to scan for mixed
content.```bash
$ mixed-content-scanner https://example.com
```## Tests
To ensure I don't break changes in future releases, be sure to include tests
with all changes (the exception here is for documentation changes). The test
suite of choice is minitest.Running tests can be done using `rake test`.
## Contributing
1. Fork it (https://github.com/jacobbednarz/mixed_content_scanner/fork)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request