Skip to content

Commit c3f0ec7

Browse files
author
Ivan Konstantinov
committed
GDB-11623
Parse and modify /etc/graphdb/graphdb.env file inline to prevent potential code execution (and in some cases, privilege escalation).
1 parent 19f2987 commit c3f0ec7

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# IDEs
2-
2+
*.iml
33
.idea/
44

55
# Local .terraform directories

modules/graphdb/templates/04_gdb_conf_overrides.sh.tpl

+5-4
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,11 @@ fi
8585
# Appends environment overrides to GDB_JAVA_OPTS
8686
if [[ $SSM_PARAMETERS == *"/${name}/graphdb/graphdb_java_options"* ]]; then
8787
extra_graphdb_java_options="$(aws --cli-connect-timeout 300 ssm get-parameter --region ${region} --name "/${name}/graphdb/graphdb_java_options" --with-decryption | jq -r .Parameter.Value)"
88-
(
89-
source /etc/graphdb/graphdb.env
90-
echo "GDB_JAVA_OPTS=\"$GDB_JAVA_OPTS $extra_graphdb_java_options\"" >> /etc/graphdb/graphdb.env
91-
)
88+
if grep GDB_JAVA_OPTS &>/dev/null /etc/graphdb/graphdb.env; then
89+
sed -ie 's/GDB_JAVA_OPTS="\(.*\)"/GDB_JAVA_OPTS="$extra_graphdb_java_options \1"/g' /etc/graphdb/graphdb.env
90+
else
91+
echo "GDB_JAVA_OPTS=$extra_garphdb_java_options" > /etc/graphdb/graphdb.env
92+
fi
9293
fi
9394

9495
log_with_timestamp "Completed applying overrides"

0 commit comments

Comments
 (0)