From: David Garcia Date: Tue, 10 Aug 2021 15:50:21 +0000 (+0200) Subject: Remove unsecure and unused function X-Git-Tag: release-v11.0-start~10 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=commitdiff_plain;h=ba1d07263821169bc36b3f9f9f93cbed93baad4a;hp=f980ac078081a1ed91134e046326cd33a4678e8e Remove unsecure and unused function Fixes this critical vulnerability: https://osm.etsi.org/gitlab/osm/n2vc/-/security/vulnerabilities/948 Change-Id: If3ab88575028808855f2e068c816fccd8be6cb88 Signed-off-by: David Garcia --- diff --git a/n2vc/k8s_helm_base_conn.py b/n2vc/k8s_helm_base_conn.py index 4a43ee2..89f6199 100644 --- a/n2vc/k8s_helm_base_conn.py +++ b/n2vc/k8s_helm_base_conn.py @@ -26,7 +26,6 @@ import time import shlex import shutil import stat -import subprocess import os import yaml from uuid import uuid4 @@ -1142,22 +1141,6 @@ class K8sHelmBaseConnector(K8sConnector): new_list.append(new_dict) return new_list - def _local_exec(self, command: str) -> (str, int): - command = self._remove_multiple_spaces(command) - self.log.debug("Executing sync local command: {}".format(command)) - # raise exception if fails - output = "" - try: - output = subprocess.check_output( - command, shell=True, universal_newlines=True - ) - return_code = 0 - self.log.debug(output) - except Exception: - return_code = 1 - - return output, return_code - async def _local_async_exec( self, command: str,