模块未找到错误:没有名为 'capfuzz' 的模块



当我尝试使用命令python manage.py runserverWindows 10中启动MobSF(移动安全框架(时,出现以下错误:

c:UsersusernameMobile-Security-Framework-MobSF>python manage.py runserver
Performing system checks...
Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x000001C247E189D8>
Traceback (most recent call last):
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangoutilsautoreload.py", line 225, in wrapper
fn(*args, **kwargs)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangocoremanagementcommandsrunserver.py", line 120, in inner_run
self.check(display_num_errors=True)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangocoremanagementbase.py", line 364, in check
include_deployment_checks=include_deployment_checks,
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangocoremanagementbase.py", line 351, in _run_checks
return checks.run_checks(**kwargs)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangocorechecksregistry.py", line 73, in run_checks
new_errors = check(app_configs=app_configs)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangocorechecksurls.py", line 13, in check_url_config
return check_resolver(resolver)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangocorechecksurls.py", line 23, in check_resolver
return check_method()
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangourlsresolvers.py", line 397, in check
for pattern in self.url_patterns:
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangoutilsfunctional.py", line 36, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangourlsresolvers.py", line 536, in url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangoutilsfunctional.py", line 36, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "C:UsersusernameAppDataRoamingPythonPython37site-packagesdjangourlsresolvers.py", line 529, in urlconf_module
return import_module(self.urlconf_name)
File "C:Program FilesPython37libimportlib__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "c:UsersusernameMobile-Security-Framework-MobSFMobSFurls.py", line 4, in <module>
import DynamicAnalyzer.views.android.dynamic
File "c:UsersusernameMobile-Security-Framework-MobSFDynamicAnalyzerviewsandroiddynamic.py", line 24, in <module>
from DynamicAnalyzer.tools.webproxy import (
File "c:UsersusernameMobile-Security-Framework-MobSFDynamicAnalyzertoolswebproxy.py", line 6, in <module>
import capfuzz as cp
ModuleNotFoundError: No module named 'capfuzz'

为什么会这样?

通过这些命令安装CapFuzz

git clone https://github.com/MobSF/CapFuzz.git 
cd CapFuzz
python setup.py install

相关内容

  • 没有找到相关文章

最新更新