https://github.com/darkwizard242/ansible-role-sslscan
Ansible role for Sslscan. Available on Ansible Galaxy.
https://github.com/darkwizard242/ansible-role-sslscan
ansible ansible-galaxy ansible-role security sslscan sslscanner system
Last synced: 3 months ago
JSON representation
Ansible role for Sslscan. Available on Ansible Galaxy.
- Host: GitHub
- URL: https://github.com/darkwizard242/ansible-role-sslscan
- Owner: darkwizard242
- License: mit
- Created: 2020-04-14T14:23:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T21:48:57.000Z (almost 2 years ago)
- Last Synced: 2025-10-27T15:37:07.665Z (7 months ago)
- Topics: ansible, ansible-galaxy, ansible-role, security, sslscan, sslscanner, system
- Language: Python
- Homepage: https://galaxy.ansible.com/darkwizard242/sslscan
- Size: 29.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/darkwizard242/ansible-role-sslscan/actions?query=workflow%3Abuild-and-test) [](https://github.com/darkwizard242/ansible-role-sslscan/actions?query=workflow%3Arelease)  [](https://sonarcloud.io/dashboard?id=ansible-role-sslscan) [](https://sonarcloud.io/dashboard?id=ansible-role-sslscan) [](https://sonarcloud.io/dashboard?id=ansible-role-sslscan)  
# Ansible Role: sslscan
Role to install (_by default_) [sslscan](https://github.com/rbsec/sslscan) or uninstall (_if passed as var_) on Debian based and EL based systems. Sslscan is used for performing SSL/TLS scans.
## Requirements
None.
## Role Variables
Available variables are listed below (located in `defaults/main.yml`):
### Variables list:
```yaml
sslscan_app: sslscan
sslscan_desired_state: present
```
### Variables table:
Variable | Description
--------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------
sslscan_app | Defines the app to install i.e. **sslscan**
sslscan_desired_state | Defined to dynamically chose whether to install (i.e. either `present` or `latest`) or uninstall (i.e. `absent`) the package. Defaults to `present`.
## Dependencies
None
## Example Playbook
For default behaviour of role (i.e. installation of **sslscan** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.sslscan
```
For customizing behavior of role (i.e. installation of latest **sslscan** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.sslscan
vars:
sslscan_desired_state: latest
```
For customizing behavior of role (i.e. un-installation of **sslscan** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.sslscan
vars:
sslscan_desired_state: absent
```
## License
[MIT](https://github.com/darkwizard242/ansible-role-sslscan/blob/master/LICENSE)
## Author Information
This role was created by [Ali Muhammad](https://www.alimuhammad.dev/).