Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jit - Scan Code for Vulnerabilities Test #2

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions jit_code_vulnerability_test_file.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import subprocess

Check warning on line 1 in jit_code_vulnerability_test_file.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

jit_code_vulnerability_test_file.py#L1

Consider possible security implications associated with the subprocess module.
call_process = subprocess.Popen(['ls', '-l'], shell=True)

Check failure on line 2 in jit_code_vulnerability_test_file.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

jit_code_vulnerability_test_file.py#L2

Found 'subprocess' function 'Popen' with 'shell=True'. This is dangerous because this call will spawn the command using a shell process.

Check failure on line 2 in jit_code_vulnerability_test_file.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

jit_code_vulnerability_test_file.py#L2

Found `subprocess` function `Popen` with `shell=True`. This is dangerous because this call will spawn the command using a shell process.

Check failure on line 2 in jit_code_vulnerability_test_file.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

jit_code_vulnerability_test_file.py#L2

subprocess call with shell=True identified, security issue.
Loading