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

Latest Code Analysis #422

Merged
merged 1 commit into from
Aug 21, 2024
Merged
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
12 changes: 6 additions & 6 deletions static_code_analysis.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Run started:2024-04-10 18:50:16.910112
Run started:2024-08-21 17:50:53.695155

Test results:
>> Issue: [B403:blacklist] Consider possible security implications associated with pickle module.
Expand Down Expand Up @@ -75,10 +75,10 @@ Test results:
Severity: Medium Confidence: High
CWE: CWE-502 (https://cwe.mitre.org/data/definitions/502.html)
More Info: https://bandit.readthedocs.io/en/1.7.7/blacklists/blacklist_calls.html#b301-pickle
Location: ./copulas/univariate/base.py:477:19
476 with open(path, 'rb') as pickle_file:
477 return pickle.load(pickle_file)
478
Location: ./copulas/univariate/base.py:488:19
487 with open(path, 'rb') as pickle_file:
488 return pickle.load(pickle_file)
489

--------------------------------------------------
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
Expand All @@ -95,7 +95,7 @@ Test results:
--------------------------------------------------

Code scanned:
Total lines of code: 3973
Total lines of code: 3953
Total lines skipped (#nosec): 0
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0

Expand Down
Loading