mirror of
https://github.com/trufflesecurity/xsshunter
synced 2024-11-10 06:44:13 +00:00
initializing user
This commit is contained in:
parent
9916a01f56
commit
d01cc488d3
3 changed files with 2 additions and 9 deletions
|
@ -3,7 +3,6 @@
|
|||
<side-bar>
|
||||
<template slot="links">
|
||||
<sidebar-link to="/" name="XSS Payload Fires" icon="fas fa-fire" />
|
||||
<sidebar-link to="/collectedpages" name="Collected Pages" icon="fas fa-file" />
|
||||
<sidebar-link to="/xsspayloads" name="XSS Payloads" icon="fas fa-file-code" />
|
||||
<sidebar-link to="/settings" name="Settings" icon="fas fa-cogs" />
|
||||
<li class="nav-item mt-5">
|
||||
|
@ -50,4 +49,4 @@ export default {
|
|||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
@ -136,7 +136,7 @@
|
|||
</small>
|
||||
</div>
|
||||
<div>
|
||||
<li v-for="secret in secrets">
|
||||
<li v-for="secret in report.secrets">
|
||||
Secret type: {{ secret.secret_type }}
|
||||
Secret value: {{ secret.secret_value }}
|
||||
</li>
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import DashboardLayout from "@/layout/dashboard/DashboardLayout.vue";
|
||||
|
||||
const XSSPayloadFireReports = () => import("@/pages/XSSPayloadFireReports.vue");
|
||||
const CollectedPages = () => import("@/pages/CollectedPages.vue");
|
||||
const XSSPayloads = () => import("@/pages/XSSPayloads.vue");
|
||||
const Settings = () => import("@/pages/Settings.vue");
|
||||
|
||||
|
@ -16,11 +15,6 @@ const routes = [
|
|||
name: "XSS Payload Fire Reports",
|
||||
component: XSSPayloadFireReports
|
||||
},
|
||||
{
|
||||
path: "/collectedpages",
|
||||
name: "Collected Pages",
|
||||
component: CollectedPages
|
||||
},
|
||||
{
|
||||
path: "/xsspayloads",
|
||||
name: "XSS Payloads",
|
||||
|
|
Loading…
Reference in a new issue