metadata
license: mit
tags:
- security-research
- modelscan-bypass
Modelscan Bypass: inspect.getsource Source Code Disclosure
Summary
Bypasses modelscan 0.7.6 while reading Python source code of any loaded module.
Chain
importlib.import_module("ssl")- load target moduleinspect.getsource(module)- read its full source code
Why It Works
inspectmodule NOT in modelscan blocklistimportlibNOT blocked (meta-bypass enabling module)- Can read source of ANY importable module including application code
Impact
Source code disclosure - reads full Python source of any module. Combined with importlib, can enumerate and read application-specific modules containing secrets, API keys, or business logic.
Modelscan Result
No issues found!