Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.137.223.255 | Time @ Server : 19 Oct 2024 08:22:59
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/flow/jsonpath/tests/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/flow/jsonpath/tests/JSONPathDashedIndexTest.php

<?php namespace Flow\JSONPath\Test; use Flow\JSONPath\JSONPath; class JSONPathDashedIndexTest extends \PHPUnit_Framework_TestCase { public function indexDataProvider() { return [ // path, data, expected [ '$.data[test-test-test]', [ 'data' => [ 'test-test-test' => 'foo' ] ], [ 'foo' ] ], [ '$.data[40f35757-2563-4790-b0b1-caa904be455f]', [ 'data' => [ '40f35757-2563-4790-b0b1-caa904be455f' => 'bar' ] ], [ 'bar' ] ] ]; } /** @dataProvider indexDataProvider */ public function testSlice($path, $data, $expected) { $jsonPath = new JSONPath($data); $result = $jsonPath->find($path)->data(); $this->assertEquals($expected, $result); } }