summaryrefslogtreecommitdiff
path: root/admin/test-cve-2015-0235-ghost.yml
diff options
context:
space:
mode:
Diffstat (limited to 'admin/test-cve-2015-0235-ghost.yml')
-rw-r--r--admin/test-cve-2015-0235-ghost.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/admin/test-cve-2015-0235-ghost.yml b/admin/test-cve-2015-0235-ghost.yml
new file mode 100644
index 00000000..6090eb2b
--- /dev/null
+++ b/admin/test-cve-2015-0235-ghost.yml
@@ -0,0 +1,18 @@
+# Test systems for CVE-2015-0235 GHOST
+#
+# http://www.openwall.com/lists/oss-security/2015/01/27/9
+---
+- hosts: all
+ gather_facts: False
+ tasks:
+ - name: copy in the cve-2015-0235-ghost-x86-64 test program
+ copy: src=cve-2015-0235-ghost-x86-64 dest=~ mode=755
+
+ - name: run the test program
+ command: ~/cve-2015-0235-ghost-x86-64
+ register: test_output
+
+ - debug: var=test_output.stdout_lines
+
+ - name: remove test program again
+ file: path=~/cve-2015-0235-ghost-x86-64 state=absent