Skip to content

Commit 87a7dc6

Browse files
authored
Fix KICS findings (#356)
Fix KICS findings Our security scanner KICS found some issues with the current version of the code. Some are real issues and others need exceptions to be declared. --------- Signed-off-by: Thomas Widhalm <[email protected]>
1 parent 6967c27 commit 87a7dc6

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

molecule/elasticstack_default/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
elasticstack_full_stack: true
1919
elasticstack_no_log: false
2020
logstash_pipeline_unsafe_shutdown: true
21-
logstash_redis_password: "ThisIsMyRedisTest"
21+
logstash_redis_password: "{{ lookup('ansible.builtin.password', '/tmp/redispassword', chars=['ascii_letters'], length=15) }}"
2222
redis_requirepass: "{{ logstash_redis_password }}"
2323
beats_filebeat_syslog_udp: true
2424
beats_filebeat_syslog_tcp: true

molecule/elasticstack_default/prepare.yml

+5
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@
3535
- unzip
3636
- systemd
3737

38+
# KICS complains about packages being updated.
39+
# In this case, a mere test scenario it is OK, though.
40+
3841
- name: Update all installed packages RHEL
3942
ansible.builtin.yum:
4043
name: '*'
44+
# kics-scan ignore-line
4145
state: latest
4246
update_cache: yes
4347
update_only: yes
@@ -46,6 +50,7 @@
4650
- name: Update all installed packages Debian
4751
ansible.builtin.apt:
4852
name: '*'
53+
# kics-scan ignore-line
4954
state: latest
5055
update_cache: yes
5156
when: ansible_os_family == "Debian"

roles/beats/tasks/auditbeat.yml

+3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@
3939
when:
4040
- ansible_os_family == "Debian"
4141

42+
# KICS complains about "latest" package but this is a dedicated update task
43+
4244
- name: Install Auditbeat latest version - rpm - full stack
4345
ansible.builtin.package:
4446
name: auditbeat
47+
# kics-scan ignore-line
4548
state: latest
4649
enablerepo:
4750
- "elastic-{{ elasticstack_release }}.x"

roles/elasticsearch/tasks/main.yml

+5
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,16 @@
268268
enabled: yes
269269
register: elasticsearch_freshstart
270270

271+
# The comment in the following task will disable KICS security checks for this
272+
# very line. In this state of the system we can only communicate without https
273+
# so the finding is a false positive
274+
271275
- name: Handle cluster setup without security
272276
when: not elasticsearch_security | bool
273277
block:
274278
- name: Check for cluster status without security
275279
ansible.builtin.uri:
280+
# kics-scan ignore-line
276281
url: "http://{{ elasticsearch_api_host }}:{{ elasticstack_elasticsearch_http_port }}/_cluster/health?pretty"
277282
register: elasticsearch_cluster_status
278283
ignore_errors: "{{ ansible_check_mode }}"

0 commit comments

Comments
 (0)