socketsecurity 1.0.3__tar.gz → 1.0.4__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.3/socketsecurity.egg-info → socketsecurity-1.0.4}/PKG-INFO +2 -1
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/README.md +1 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/__init__.py +1 -1
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/socketcli.py +25 -6
- {socketsecurity-1.0.3 → socketsecurity-1.0.4/socketsecurity.egg-info}/PKG-INFO +2 -1
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/LICENSE +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/pyproject.toml +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/setup.cfg +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/__init__.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/classes.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/exceptions.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/git_interface.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/github.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/gitlab.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/issues.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/licenses.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/messages.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity/core/scm_comments.py +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity.egg-info/SOURCES.txt +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity.egg-info/dependency_links.txt +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity.egg-info/entry_points.txt +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity.egg-info/requires.txt +0 -0
- {socketsecurity-1.0.3 → socketsecurity-1.0.4}/socketsecurity.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: socketsecurity
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Socket Security CLI for CI/CD
|
|
5
5
|
Author-email: Douglas Coburn <douglas@socket.dev>
|
|
6
6
|
Maintainer-email: Douglas Coburn <douglas@socket.dev>
|
|
@@ -60,3 +60,4 @@ If you don't want to provide the Socket API Token every time then you can use th
|
|
|
60
60
|
| --disable-security-issue | | False | False | If enabled will disable Security Issue Comments |
|
|
61
61
|
| --files | | False | | If provided in the format of `["file1", "file2"]` it will only look for those files and not glob the path |
|
|
62
62
|
| --ignore-commit-files | | False | False | If enabled then the CLI will ignore what files are changed in the commit and look for all manifest files |
|
|
63
|
+
| --disable-blocking | | False | False | Disables failing checks and will only exit with an exit code of 0 |
|
|
@@ -37,3 +37,4 @@ If you don't want to provide the Socket API Token every time then you can use th
|
|
|
37
37
|
| --disable-security-issue | | False | False | If enabled will disable Security Issue Comments |
|
|
38
38
|
| --files | | False | | If provided in the format of `["file1", "file2"]` it will only look for those files and not glob the path |
|
|
39
39
|
| --ignore-commit-files | | False | False | If enabled then the CLI will ignore what files are changed in the commit and look for all manifest files |
|
|
40
|
+
| --disable-blocking | | False | False | Disables failing checks and will only exit with an exit code of 0 |
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__author__ = 'socket.dev'
|
|
2
|
-
__version__ = '1.0.
|
|
2
|
+
__version__ = '1.0.4'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import argparse
|
|
2
2
|
import json
|
|
3
3
|
from socketsecurity.core import Core, __version__
|
|
4
|
-
from socketsecurity.core.classes import FullScanParams, Diff, Package,
|
|
4
|
+
from socketsecurity.core.classes import FullScanParams, Diff, Package, Issue
|
|
5
5
|
from socketsecurity.core.messages import Messages
|
|
6
6
|
from socketsecurity.core.scm_comments import Comments
|
|
7
7
|
from socketsecurity.core.git_interface import Git
|
|
@@ -12,6 +12,7 @@ import logging
|
|
|
12
12
|
|
|
13
13
|
logging.basicConfig(level=logging.INFO)
|
|
14
14
|
log = logging.getLogger("socketcli")
|
|
15
|
+
blocking_disabled = False
|
|
15
16
|
|
|
16
17
|
parser = argparse.ArgumentParser(
|
|
17
18
|
prog="socketcli",
|
|
@@ -142,6 +143,13 @@ parser.add_argument(
|
|
|
142
143
|
default=False
|
|
143
144
|
)
|
|
144
145
|
|
|
146
|
+
parser.add_argument(
|
|
147
|
+
'--disable-blocking',
|
|
148
|
+
help='Disables failing checks and will only exit with an exit code of 0',
|
|
149
|
+
action='store_true',
|
|
150
|
+
default=False
|
|
151
|
+
)
|
|
152
|
+
|
|
145
153
|
|
|
146
154
|
def output_console_comments(diff_report: Diff, sbom_file_name: str = None) -> None:
|
|
147
155
|
console_security_comment = Messages.create_console_security_alert_table(diff_report)
|
|
@@ -150,7 +158,8 @@ def output_console_comments(diff_report: Diff, sbom_file_name: str = None) -> No
|
|
|
150
158
|
log.info("Security issues detected by Socket Security")
|
|
151
159
|
msg = f"\n{console_security_comment}"
|
|
152
160
|
log.info(msg)
|
|
153
|
-
|
|
161
|
+
if not blocking_disabled:
|
|
162
|
+
sys.exit(1)
|
|
154
163
|
else:
|
|
155
164
|
log.info("No New Security issues detected by Socket Security")
|
|
156
165
|
|
|
@@ -159,7 +168,7 @@ def output_console_json(diff_report: Diff, sbom_file_name: str = None) -> None:
|
|
|
159
168
|
console_security_comment = Messages.create_security_comment_json(diff_report)
|
|
160
169
|
save_sbom_file(diff_report, sbom_file_name)
|
|
161
170
|
print(json.dumps(console_security_comment))
|
|
162
|
-
if not report_pass(diff_report):
|
|
171
|
+
if not report_pass(diff_report) and not blocking_disabled:
|
|
163
172
|
sys.exit(1)
|
|
164
173
|
|
|
165
174
|
|
|
@@ -167,7 +176,7 @@ def report_pass(diff_report: Diff) -> bool:
|
|
|
167
176
|
report_passed = True
|
|
168
177
|
if len(diff_report.new_alerts) > 0:
|
|
169
178
|
for alert in diff_report.new_alerts:
|
|
170
|
-
alert:
|
|
179
|
+
alert: Issue
|
|
171
180
|
if report_passed and alert.error:
|
|
172
181
|
report_passed = False
|
|
173
182
|
break
|
|
@@ -184,11 +193,17 @@ def cli():
|
|
|
184
193
|
main_code()
|
|
185
194
|
except KeyboardInterrupt:
|
|
186
195
|
log.info("Keyboard Interrupt detected, exiting")
|
|
187
|
-
|
|
196
|
+
if not blocking_disabled:
|
|
197
|
+
sys.exit(2)
|
|
198
|
+
else:
|
|
199
|
+
sys.exit(0)
|
|
188
200
|
except Exception as error:
|
|
189
201
|
log.error("Unexpected error when running the cli")
|
|
190
202
|
log.error(error)
|
|
191
|
-
|
|
203
|
+
if not blocking_disabled:
|
|
204
|
+
sys.exit(3)
|
|
205
|
+
else:
|
|
206
|
+
sys.exit(0)
|
|
192
207
|
|
|
193
208
|
|
|
194
209
|
def main_code():
|
|
@@ -214,6 +229,10 @@ def main_code():
|
|
|
214
229
|
disable_overview = arguments.disable_overview
|
|
215
230
|
disable_security_issue = arguments.disable_security_issue
|
|
216
231
|
ignore_commit_files = arguments.ignore_commit_files
|
|
232
|
+
disable_blocking = arguments.disable_blocking
|
|
233
|
+
if disable_blocking:
|
|
234
|
+
global blocking_disabled
|
|
235
|
+
blocking_disabled = True
|
|
217
236
|
files = arguments.files
|
|
218
237
|
log.info(f"Starting Socket Security Scan version {__version__}")
|
|
219
238
|
api_token = os.getenv("SOCKET_SECURITY_API_KEY") or arguments.api_token
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: socketsecurity
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Socket Security CLI for CI/CD
|
|
5
5
|
Author-email: Douglas Coburn <douglas@socket.dev>
|
|
6
6
|
Maintainer-email: Douglas Coburn <douglas@socket.dev>
|
|
@@ -60,3 +60,4 @@ If you don't want to provide the Socket API Token every time then you can use th
|
|
|
60
60
|
| --disable-security-issue | | False | False | If enabled will disable Security Issue Comments |
|
|
61
61
|
| --files | | False | | If provided in the format of `["file1", "file2"]` it will only look for those files and not glob the path |
|
|
62
62
|
| --ignore-commit-files | | False | False | If enabled then the CLI will ignore what files are changed in the commit and look for all manifest files |
|
|
63
|
+
| --disable-blocking | | False | False | Disables failing checks and will only exit with an exit code of 0 |
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|