shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
resources
/
js
/
components
/
inputs
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Toggle.vue
<template> <button type="button" class="toggle-container" :class="{ 'on': value, 'cursor-not-allowed read-only': readOnly }" @click="toggle" :aria-pressed="stateLiteral" :aria-label="__('Toggle Button')" > <div class="toggle-slider"> <div class="toggle-knob" tabindex="0" @keyup.prevent.space.enter="toggle" ref="knob" /> </div> </button> </template> <script> export default { props: { value: { type: Boolean }, readOnly: { type: Boolean, default: () => false }, }, computed: { stateLiteral() { if (this.value) { return 'true'; } return 'false'; } }, methods: { toggle() { if (! this.readOnly) { this.$emit("input", !this.value) } } } } </script>
© 2026 UnknownSec