mirror of
https://github.com/Li4n0/revsuit.git
synced 2026-09-27 00:51:55 +08:00
feat: complete basic functions
Support http,dns and mysql connection. Support custom http, dns response. Support dns rebinding. Support mysql load local files and jdbc deserialize exploit.
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
import Vue from 'vue'
|
||||
import VueRouter from 'vue-router'
|
||||
import Home from '../views/Home.vue'
|
||||
|
||||
Vue.use(VueRouter)
|
||||
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
name: 'Home',
|
||||
component: Home
|
||||
},
|
||||
{
|
||||
path: '/logs/http',
|
||||
name: 'HttpLogs',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/logs/Http')
|
||||
},
|
||||
{
|
||||
path: '/logs/dns',
|
||||
name: 'DnsLogs',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/logs/Dns')
|
||||
},
|
||||
{
|
||||
path: '/logs/mysql',
|
||||
name: 'MysqlLogs',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/logs/Mysql')
|
||||
},
|
||||
{
|
||||
path: '/rules/http',
|
||||
name: 'HttpRules',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/rules/Http')
|
||||
},
|
||||
{
|
||||
path: '/rules/dns',
|
||||
name: 'DnsRules',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/rules/Dns')
|
||||
},
|
||||
{
|
||||
path: '/rules/mysql',
|
||||
name: 'MysqlRules',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/rules/Mysql')
|
||||
}
|
||||
]
|
||||
|
||||
const router = new VueRouter({
|
||||
routes
|
||||
})
|
||||
|
||||
export default router
|
||||
Reference in New Issue
Block a user