shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolas.brannanatkinson.com
/
vendor
/
ueberdosis
/
tiptap-php
/
src
/
Marks
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Bold.php
<?php namespace Tiptap\Marks; use Tiptap\Core\Mark; use Tiptap\Utils\HTML; use Tiptap\Utils\InlineStyle; class Bold extends Mark { public static $name = 'bold'; public function addOptions() { return [ 'HTMLAttributes' => [], ]; } public function parseHTML() { return [ [ 'tag' => 'strong', ], [ 'tag' => 'b', 'getAttrs' => function ($DOMNode) { return ! InlineStyle::hasAttribute($DOMNode, [ 'font-weight' => 'normal', ]) ? null : false; }, ], [ 'style' => 'font-weight', 'getAttrs' => function ($value) { return (bool) preg_match('/^(bold(er)?|[5-9]\d{2,})$/', $value) ? null : false; }, ], ]; } public function renderHTML($mark, $HTMLAttributes = []) { return [ 'strong', HTML::mergeAttributes($this->options['HTMLAttributes'], $HTMLAttributes), 0, ]; } }
© 2026 UnknownSec