Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NeuraLegion/sslscan.cr
Crystal shard wrapping the rbsec/sslscan utility
https://github.com/NeuraLegion/sslscan.cr
crystal detection scanner security shard ssl tls vulnerabilities
Last synced: 3 months ago
JSON representation
Crystal shard wrapping the rbsec/sslscan utility
- Host: GitHub
- URL: https://github.com/NeuraLegion/sslscan.cr
- Owner: NeuraLegion
- License: mit
- Created: 2020-09-24T12:14:50.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-25T08:59:22.000Z (about 3 years ago)
- Last Synced: 2024-06-21T18:10:27.467Z (5 months ago)
- Topics: crystal, detection, scanner, security, shard, ssl, tls, vulnerabilities
- Language: Crystal
- Homepage:
- Size: 59.6 KB
- Stars: 10
- Watchers: 17
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-crystal - sslscan.cr - Crystal shard wrapping the rbsec/sslscan utility (Misc)
README
# sslscan.cr [![CI](https://github.com/NeuraLegion/sslscan.cr/actions/workflows/ci.yml/badge.svg)](https://github.com/NeuraLegion/sslscan.cr/actions/workflows/ci.yml) [![Releases](https://img.shields.io/github/release/NeuraLegion/sslscan.cr.svg)](https://github.com/NeuraLegion/sslscan.cr/releases) [![License](https://img.shields.io/github/license/NeuraLegion/sslscan.cr.svg)](https://github.com/NeuraLegion/sslscan.cr/blob/master/LICENSE)
Crystal shard wrapping [sslscan](https://github.com/rbsec/sslscan) (v2) utility.
## Installation
1. Add the dependency to your `shard.yml`:
```yaml
dependencies:
sslscan:
github: NeuraLegion/sslscan.cr
```2. Run `shards install`
## Usage
```crystal
require "sslscan"report = SSLScan.scan "github.com" # => #
# Browse the already aggregated issues
report.issues.each do |issue|
issue.severity # SSLScan::Issue::Severity
issue.type # String
issue.context # String
end
report.issues.select(&.severity.high?) # => Set{...}# Or access the test results directly for further inspection
report.test # => #
```## Contributing
1. Fork it ()
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## Contributors
- [Sijawusz Pur Rahnama](https://github.com/Sija) - creator and maintainer