socketsecurity 1.0.29__tar.gz → 1.0.30__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {socketsecurity-1.0.29/socketsecurity.egg-info → socketsecurity-1.0.30}/PKG-INFO +1 -1
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/__init__.py +1 -1
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/__init__.py +5 -4
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/classes.py +7 -2
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/socketcli.py +3 -2
- {socketsecurity-1.0.29 → socketsecurity-1.0.30/socketsecurity.egg-info}/PKG-INFO +1 -1
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/LICENSE +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/README.md +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/pyproject.toml +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/setup.cfg +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/exceptions.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/git_interface.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/github.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/gitlab.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/issues.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/licenses.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/messages.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity/core/scm_comments.py +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity.egg-info/SOURCES.txt +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity.egg-info/dependency_links.txt +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity.egg-info/entry_points.txt +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity.egg-info/requires.txt +0 -0
- {socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity.egg-info/top_level.txt +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__author__ = 'socket.dev'
|
|
2
|
-
__version__ = '1.0.
|
|
2
|
+
__version__ = '1.0.30'
|
|
@@ -749,10 +749,11 @@ class Core:
|
|
|
749
749
|
if alert.type in security_policy:
|
|
750
750
|
action = security_policy[alert.type]['action']
|
|
751
751
|
setattr(issue_alert, action, True)
|
|
752
|
-
if issue_alert.
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
752
|
+
if issue_alert.type != 'licenseSpdxDisj':
|
|
753
|
+
if issue_alert.key not in alerts:
|
|
754
|
+
alerts[issue_alert.key] = [issue_alert]
|
|
755
|
+
else:
|
|
756
|
+
alerts[issue_alert.key].append(issue_alert)
|
|
756
757
|
return alerts
|
|
757
758
|
|
|
758
759
|
@staticmethod
|
|
@@ -161,10 +161,15 @@ class Issue:
|
|
|
161
161
|
|
|
162
162
|
if hasattr(self, "created_at"):
|
|
163
163
|
self.created_at = self.created_at.strip(" (Coordinated Universal Time)")
|
|
164
|
-
if not hasattr(self, "introduced_by"):
|
|
165
|
-
self.introduced_by = []
|
|
166
164
|
if not hasattr(self, "manifests"):
|
|
167
165
|
self.manifests = ""
|
|
166
|
+
if not hasattr(self, "introduced_by"):
|
|
167
|
+
self.introduced_by = []
|
|
168
|
+
else:
|
|
169
|
+
for item in self.introduced_by:
|
|
170
|
+
pkg, manifest = item
|
|
171
|
+
self.manifests += f"{manifest};"
|
|
172
|
+
self.manifests = self.manifests.rstrip(";")
|
|
168
173
|
if not hasattr(self, "error"):
|
|
169
174
|
self.error = False
|
|
170
175
|
if not hasattr(self, "warn"):
|
|
@@ -167,11 +167,11 @@ def output_console_comments(diff_report: Diff, sbom_file_name: str = None) -> No
|
|
|
167
167
|
console_security_comment = Messages.create_console_security_alert_table(diff_report)
|
|
168
168
|
save_sbom_file(diff_report, sbom_file_name)
|
|
169
169
|
log.info(f"Socket Full Scan ID: {diff_report.id}")
|
|
170
|
-
if
|
|
170
|
+
if len(diff_report.new_alerts) > 0:
|
|
171
171
|
log.info("Security issues detected by Socket Security")
|
|
172
172
|
msg = f"\n{console_security_comment}"
|
|
173
173
|
log.info(msg)
|
|
174
|
-
if not blocking_disabled:
|
|
174
|
+
if not report_pass(diff_report) and not blocking_disabled:
|
|
175
175
|
sys.exit(1)
|
|
176
176
|
else:
|
|
177
177
|
log.info("No New Security issues detected by Socket Security")
|
|
@@ -306,6 +306,7 @@ def main_code():
|
|
|
306
306
|
if ignore_commit_files:
|
|
307
307
|
no_change = False
|
|
308
308
|
elif is_repo and files is not None and len(files) > 0:
|
|
309
|
+
log.info(files)
|
|
309
310
|
no_change = core.match_supported_files(files)
|
|
310
311
|
|
|
311
312
|
set_as_pending_head = False
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{socketsecurity-1.0.29 → socketsecurity-1.0.30}/socketsecurity.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|