Started seeing this failure in Azure Pipelines after latest 0.4.2 version.
pip3 install --upgrade mobsfscan
mobsfscan --exit-warning --sarif --output mobsf-report-android.sarif .
/usr/lib/python3/dist-packages/requests/__init__.py:87: RequestsDependencyWarning: urllib3 (2.2.3) or chardet (4.0.0) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
##[error]Bash exited with code '1'.
Fixed by downgrading to 0.4.1
pip3 install --force-reinstall -v "mobsfscan==0.4.1"