security.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. - name: 'Install auto upgrades package'
  2. apt:
  3. pkg: 'unattended-upgrades'
  4. state: 'installed'
  5. update_cache: 'yes'
  6. when: with_auto_upgrade
  7. - name: 'Reconfigure unattended-upgrades package'
  8. debconf:
  9. name: 'unattended-upgrades'
  10. question: 'unattended-upgrades/enable_auto_updates'
  11. value: 'true'
  12. vtype: 'boolean'
  13. notify:
  14. - 'Reconfigure unattended-upgrades'
  15. when: with_auto_upgrade
  16. - name: 'Update unattended-upgrades configuration'
  17. template:
  18. src: '{{ item }}'
  19. dest: '/etc/apt/apt.conf.d/90unattended-upgrades-local'
  20. owner: 'root'
  21. group: 'root'
  22. mode: '0644'
  23. with_first_found:
  24. - 'apt/auto-upgrades.{{ ansible_lsb.codename }}.j2'
  25. - 'apt/auto-upgrades.j2'
  26. when: with_auto_upgrade
  27. - name: 'Install logcheck packages'
  28. apt:
  29. pkg: '{{ item }}'
  30. state: 'installed'
  31. update_cache: 'yes'
  32. with_items:
  33. - 'logcheck'
  34. - 'logcheck-database'
  35. when: with_logcheck
  36. - name: 'Install local configuration files for logcheck'
  37. copy:
  38. src: 'logcheck/{{ item }}_local'
  39. dest: '/etc/logcheck/ignore.d.server/{{ item }}_local'
  40. owner: 'root'
  41. group: 'root'
  42. mode: '0644'
  43. with_items:
  44. - 'amavisd-new'
  45. - 'ansible'
  46. - 'apache2'
  47. - 'bind'
  48. - 'dhclient'
  49. - 'dnsmasq'
  50. - 'dovecot'
  51. - 'dropbear'
  52. - 'ferm'
  53. - 'git-daemon'
  54. - 'gogs'
  55. - 'ipmi'
  56. - 'irqbalance'
  57. - 'kernel'
  58. - 'libpam-modules'
  59. - 'mon'
  60. - 'noip2'
  61. - 'ntp'
  62. - 'openvpn'
  63. - 'php'
  64. - 'postfix'
  65. - 'pure-ftpd'
  66. - 'pve-cluster'
  67. - 'redir'
  68. - 'rpc-mountd'
  69. - 'rrdcached'
  70. - 'rsyslog'
  71. - 'smartd'
  72. - 'spamd'
  73. - 'sshd'
  74. - 'svn'
  75. - 'sympa'
  76. - 'systemd'
  77. - 'zabbix-agentd'
  78. when: with_logcheck
  79. - name: 'Update logcheck cron job'
  80. template:
  81. src: 'cron/logcheck.j2'
  82. dest: '/etc/cron.d/logcheck'
  83. owner: 'root'
  84. group: 'root'
  85. mode: '0644'
  86. when: with_logcheck
  87. - name: 'Install rkhunter related packages'
  88. apt:
  89. pkg: '{{ item }}'
  90. state: 'installed'
  91. update_cache: 'yes'
  92. with_items:
  93. - 'lsof'
  94. - 'unhide'
  95. - 'rkhunter'
  96. when: with_rkhunter
  97. - name: 'Reconfigure rkhunter package'
  98. debconf:
  99. name: '{{item.name}}'
  100. question: '{{item.question}}'
  101. value: '{{item.value}}'
  102. vtype: '{{item.vtype}}'
  103. with_items:
  104. - { name: 'rkhunter', question: 'rkhunter/apt_autogen', value: 'true', vtype: 'boolean' }
  105. - { name: 'rkhunter', question: 'rkhunter/cron_daily_run', value: 'true', vtype: 'boolean' }
  106. - { name: 'rkhunter', question: 'rkhunter/cron_db_update', value: 'true', vtype: 'boolean' }
  107. notify:
  108. - 'Reconfigure rkhunter'
  109. when: with_rkhunter
  110. - name: Update rkhunter configuration
  111. template: src=rkhunter/{{ ansible_lsb.codename }}.conf.j2 dest=/etc/rkhunter.conf owner=root group=root mode=0644
  112. when: with_rkhunter
  113. - name: Update chkrootkit configuration
  114. template: src=chkrootkit/chkrootkit.conf.j2 dest=/etc/chkrootkit.conf owner=root group=root mode=0644
  115. when: with_chkrootkit
  116. - name: Update fstab to hide pids from /proc
  117. lineinfile: dest=/etc/fstab regexp='(^proc\s+/proc\s+proc\s+)(\S+)(\s+[0-9]\s+[0-9])\s*$' line='\1defaults,hidepid=2\3' backrefs=yes
  118. notify:
  119. - Remount /proc
  120. when: with_hideproc and hideproc_gid == ''
  121. - name: Update fstab to hide pids from /proc with group id (gid)
  122. lineinfile: dest=/etc/fstab regexp='(^proc\s+/proc\s+proc\s+)(\S+)(\s+[0-9]\s+[0-9])\s*$' line='\1defaults,hidepid=2,gid={{hideproc_gid}}\3' backrefs=yes
  123. notify:
  124. - Remount /proc
  125. when: with_hideproc and hideproc_gid != ''
  126. - name: 'Create Diffie-Helman parameters'
  127. command: 'openssl dhparam -2 -out /etc/ssl/private/dh{{ item }}.pem {{ item }}'
  128. args:
  129. creates: '/etc/ssl/private/dh{{ item }}.pem'
  130. with_items:
  131. - '2048'