代码拉取完成,页面将自动刷新
"""SemfPro URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.conf import settings
from django.urls.conf import include
from django.conf.urls.static import static
urlpatterns = [
path('', include('Base.urls')),
path('log/', include('Log.urls')),
path('rbac/', include('RBAC.urls')),
path('usermanage/', include('UserManage.urls')),
path('vuln/', include('Vuln.urls')),
path('building/', include('Building.urls')),
path('task/', include('Task.urls')),
path('scanner/', include('Scanner.urls')),
path('asset/', include('Asset.urls')),
path('echolog/', include('EchoLog.urls')),
path('poc/', include('Poc.urls')),
path('workflow/',include('Workflow.urls')),
path('captcha/', include('captcha.urls')),
path('api/', include('ApiManage.urls')),
# path('semfpro/', admin.site.urls),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。