Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Infrastructure
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XiphInfra
Infrastructure
Commits
2d4f06cb
Verified
Commit
2d4f06cb
authored
3 years ago
by
Ralph Giles
Browse files
Options
Downloads
Patches
Plain Diff
Add a container for osuosl's smtpd tls auditor.
parent
fd657219
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
osuosl-auditor/Dockerfile
+19
-0
19 additions, 0 deletions
osuosl-auditor/Dockerfile
osuosl-auditor/README.md
+28
-0
28 additions, 0 deletions
osuosl-auditor/README.md
with
47 additions
and
0 deletions
osuosl-auditor/Dockerfile
0 → 100644
+
19
−
0
View file @
2d4f06cb
FROM
docker.io/library/debian:10
ARG
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
RUN
apt-get
-y
upgrade
RUN
apt-get
-y
install
curl
RUN
curl
-L
https://omnitruck.cinc.sh/install.sh | bash
-s
--
-P
cinc-auditor
-v
4
RUN
apt-get clean all
CMD
cinc-auditor exec \
--input ssl_host=mailfish.xiph.org ssl_port=[25,465] \
-l info \
https://github.com/osuosl/osuosl-baseline/archive/main.tar.gz
# Run with e.g.
# podman run --rm osuosl-auditor
This diff is collapsed.
Click to expand it.
osuosl-auditor/README.md
0 → 100644
+
28
−
0
View file @
2d4f06cb
# OSUOSL's smtpd auditor
This is a script to audit the TLS config of mailservers.
It uses the cinc project's auditor packages, compatible
with chef, and a rule set downloaded from osuosl.org.
There's also a
`docker.io/cincproject/auditor`
image, but
it doesn't support aarch64, and of course doesn't have our
local default command line.
To build the image
(Subsitute
`docker`
for
`podman`
if you prefer that tool.)
```
podman build -t osuosl-auditor .
```
Invoke with bare arguments to check the default mailserver:
```
podman run --rm osuosl-audior
```
Invoke against a different host or ports:
```
podman run --rm osuosl-audior cinc-auditor exec \
--input ssl_host=hostfish.xiph.org ssl_port=[25,465] -l info \
https://github.com/osuosl/osuosl-baseline/archive/main.tar.gz
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment