Professional security vulnerability scanner for Python code (checks for SQL injection, hardcoded passwords, unsafe functions, etc.)
Files Checked: 6
Issues Found: 1

/geobridge/api_client.py Line 170

Audit url open for permitted schemes. Allowing use of file:/ or custom schemes is often unexpected.

169         try:
170             with urllib.request.urlopen(
171                 request, timeout=self.timeout, context=ssl_context
172             ) as response:
173                 text = response.read().decode("utf-8")





/geobridge/dialog.py Line 366

line break before binary operator

W503

/geobridge/layer_converter.py Line 89

line break before binary operator

W503

