SMTP compliance, custom EHLO hostname #189
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Scan IIS Web Server | |
| on: | |
| push: | |
| branches: [release] | |
| pull_request: | |
| branches: [release] | |
| jobs: | |
| build: | |
| runs-on: windows-2019 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.8 | |
| - name: Install IIS | |
| run: | | |
| Install-WindowsFeature -name Web-Server -IncludeManagementTools -IncludeAllSubFeature | |
| Import-Module IISAdministration | |
| # Generate a self-signed cert | |
| $Cert = New-SelfSignedCertificate -DnsName "TestSite" -KeyAlgorithm RSA -KeyLength 2048 -CertStoreLocation "Cert:\LocalMachine\My" -NotAfter (Get-Date).AddYears(10) | |
| $ThumbPrint = $Cert.Thumbprint | |
| # Create an HTTPS binding with the self-signed cert | |
| New-IISSiteBinding -Name "Default Web Site" -BindingInformation "*:443:" -CertificateThumbPrint $ThumbPrint -CertStoreLocation "Cert:\LocalMachine\My" -Protocol https | |
| - name: Install pip | |
| run: | | |
| python -m pip install --upgrade pip setuptools | |
| - name: Install SSLyze | |
| run: python setup.py install | |
| - name: Scan web server | |
| run: python tests/web_servers/scan_localhost.py iis |