Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 08:03:10
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/DB/Helper/Mysql/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/DB/Helper/Mysql/Fulltext.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\DB\Helper\Mysql; use Magento\Framework\App\ResourceConnection; /** * MySQL Fulltext Query Builder */ class Fulltext { /** * Characters that have special meaning in fulltext match syntax * * @var string */ const SPECIAL_CHARACTERS = '-+<>*()~?'; /** * FULLTEXT search in MySQL search mode "natural language" */ const FULLTEXT_MODE_NATURAL = 'IN NATURAL LANGUAGE MODE'; /** * FULLTEXT search in MySQL search mode "natural language with query expansion" */ const FULLTEXT_MODE_NATURAL_QUERY = 'IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION'; /** * FULLTEXT search in MySQL search mode "boolean" */ const FULLTEXT_MODE_BOOLEAN = 'IN BOOLEAN MODE'; /** * FULLTEXT search in MySQL search mode "query expansion" */ const FULLTEXT_MODE_QUERY = 'WITH QUERY EXPANSION'; /** * FULLTEXT search in MySQL MATCH method */ const MATCH = 'MATCH'; /** * FULLTEXT search in MySQL AGAINST method */ const AGAINST = 'AGAINST'; /** * @var \Magento\Framework\DB\Adapter\AdapterInterface */ private $connection; /** * @param ResourceConnection $resource */ public function __construct(ResourceConnection $resource) { $this->connection = $resource->getConnection(); } /** * Method for FULLTEXT search in Mysql, will generated MATCH ($columns) AGAINST ('$expression' $mode) * * @param string|string[] $columns Columns which add to MATCH () * @param string $expression Expression which add to AGAINST () * @param string $mode * @return string */ public function getMatchQuery($columns, $expression, $mode = self::FULLTEXT_MODE_NATURAL) { if (is_array($columns)) { $columns = implode(', ', $columns); } $expression = $this->connection->quote($expression); $condition = self::MATCH . " ({$columns}) " . self::AGAINST . " ({$expression} {$mode})"; return $condition; } /** * Method for FULLTEXT search in Mysql; will add generated MATCH ($columns) AGAINST ('$expression' $mode) to $select * * @param \Magento\Framework\DB\Select $select * @param string|string[] $columns Columns which add to MATCH () * @param string $expression Expression which add to AGAINST () * @param bool $isCondition true=AND, false=OR * @param string $mode * @return \Magento\Framework\DB\Select */ public function match($select, $columns, $expression, $isCondition = true, $mode = self::FULLTEXT_MODE_NATURAL) { $fullCondition = $this->getMatchQuery($columns, $expression, $mode); if ($isCondition) { $select->where($fullCondition); } else { $select->orWhere($fullCondition); } return $select; } /** * Remove special characters from fulltext query expression * * @param string $expression * @return string */ public function removeSpecialCharacters(string $expression): string { return str_replace(str_split(static::SPECIAL_CHARACTERS), '', $expression); } }