Metrics:
Total lines of code: 1151
Total lines skipped (#nosec): 0

blacklist: Standard pseudo-random generators are not suitable for security/cryptographic purposes.
Test ID: B311
Severity: LOW
Confidence: HIGH
CWE: CWE-330
File: /custom_nodes/ComfyUI-Custom-Scripts/py/math_expression.py
Line number: 47
More info: https://bandit.readthedocs.io/en/1.7.9/blacklists/blacklist_calls.html#b311-random
43	        "hint": "...numbers"
44	    },
45	    "randomint": {
46	        "args": (2, 2),
47	        "call": lambda a, b: random.randint(a, b),
48	        "hint": "min, max"
49	    },
50	    "randomchoice": {
blacklist: Standard pseudo-random generators are not suitable for security/cryptographic purposes.
Test ID: B311
Severity: LOW
Confidence: HIGH
CWE: CWE-330
File: /custom_nodes/ComfyUI-Custom-Scripts/py/math_expression.py
Line number: 52
More info: https://bandit.readthedocs.io/en/1.7.9/blacklists/blacklist_calls.html#b311-random
48	        "hint": "min, max"
49	    },
50	    "randomchoice": {
51	        "args": (2, None),
52	        "call": lambda *args: random.choice(args),
53	        "hint": "...numbers"
54	    },
55	}
try_except_pass: Try, Except, Pass detected.
Test ID: B110
Severity: LOW
Confidence: HIGH
CWE: CWE-703
File: /custom_nodes/ComfyUI-Custom-Scripts/pysssss.py
Line number: 101
More info: https://bandit.readthedocs.io/en/1.7.9/plugins/b110_try_except_pass.html
97	        try:
98	            import _winapi
99	            _winapi.CreateJunction(src, dst)
100	            return True
101	        except:
102	            pass
103	    try:
104	        os.symlink(src, dst)
105	        return True