shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
bacon
/
bacon-qr-code
/
src
/
Renderer
/
Path
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Move.php
<?php declare(strict_types = 1); namespace BaconQrCode\Renderer\Path; final class Move implements OperationInterface { public function __construct(private readonly float $x, private readonly float $y) { } public function getX() : float { return $this->x; } public function getY() : float { return $this->y; } /** * @return self */ public function translate(float $x, float $y) : OperationInterface { return new self($this->x + $x, $this->y + $y); } /** * @return self */ public function rotate(int $degrees) : OperationInterface { $radians = deg2rad($degrees); $sin = sin($radians); $cos = cos($radians); $xr = $this->x * $cos - $this->y * $sin; $yr = $this->x * $sin + $this->y * $cos; return new self($xr, $yr); } }
© 2026 UnknownSec