mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-09 19:37:42 +02:00
72 lines
1.7 KiB
Python
72 lines
1.7 KiB
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
'',
|
|
views.index,
|
|
name='scan_engine_index'),
|
|
path(
|
|
'add/',
|
|
views.add_engine,
|
|
name='add_engine'),
|
|
path(
|
|
'delete/<int:id>',
|
|
views.delete_engine,
|
|
name='delete_engine_url'),
|
|
path(
|
|
'update/<int:id>',
|
|
views.update_engine,
|
|
name='update_engine'),
|
|
path(
|
|
'wordlist/',
|
|
views.wordlist_list,
|
|
name='wordlist_list'),
|
|
path(
|
|
'wordlist/add/',
|
|
views.add_wordlist,
|
|
name='add_wordlist'),
|
|
path(
|
|
'wordlist/delete/<int:id>',
|
|
views.delete_wordlist,
|
|
name='delete_wordlist'),
|
|
path(
|
|
'configuration/',
|
|
views.configuration_list,
|
|
name='configuration_list'),
|
|
path(
|
|
'configuration/add/',
|
|
views.add_configuration,
|
|
name='add_configuration'),
|
|
path(
|
|
'configuration/update/<int:id>',
|
|
views.update_configuration,
|
|
name='update_configuration'),
|
|
path(
|
|
'configuration/delete/<int:id>',
|
|
views.delete_configuration,
|
|
name='delete_configuration'),
|
|
path(
|
|
'interesting/lookup/',
|
|
views.interesting_lookup,
|
|
name='interesting_lookup'),
|
|
path(
|
|
'tool_settings',
|
|
views.tool_specific_settings,
|
|
name='tool_settings'),
|
|
path(
|
|
'rengine_settings',
|
|
views.rengine_settings,
|
|
name='rengine_settings'),
|
|
path(
|
|
'notification_settings',
|
|
views.notification_settings,
|
|
name='notification_settings'),
|
|
path(
|
|
'proxy_settings',
|
|
views.proxy_settings,
|
|
name='proxy_settings'),
|
|
]
|