Ugrás a kezdőoldalra Ugrás a tartalomhoz Ugrás a menüre

Licit

Licitáljon, hogy öné lehessen Rasovszky Kristóf egyedi olimpiai kiadású Samsung okostelefonja!

Rasovszky Kristóf, Veszprém olimpiai aranyérmes nyílt vízi úszója jótékonysági átverésre bocsátotta limitált kiadású Samsung Galaxy Z Flip6 Olympic Edition típusú okostelefonját, amit a párizsi olimpián kapott aranyérme mellé. Az olimpikon a befolyt összegből a helyi állatvédő egyesületeket támogatja. A liciteket a Vehir.hu-n, az árverés médiatámogatójának oldalán lehet megtenni.

A 2024-es párizsi olimpián a világjátékok főtámogatója, a Samsung minden olimpikont megajándékozott legmodernebbnek okostelefonjával, ami amellett, hogy tartalmazza az összes csúcstechnológiai megoldást, az olimpia egyedi logóját is magán viseli.

Rasovszky Kristóf, aranyérmes nyílt vízi úszónk viszont úgy döntött, hogy ezt a készülékét árverésre bocsátja, hogy a befolyt összegből két veszprémi állatvédő szervezetet, a "Pumi Veszprémi Állatmenhely" Alapítványt és a Vackoló Állatvédő Egyesületet támogassa.

Portálunk büszkén állt az olimpikon kezdeményezése mögé, a Vehir.hu felületén pedig már elérhető az az oldal, ahol bárki megteheti licitjét a készülékre.

Rasovszky Kristóf a Vehírnek elmondta, az állatvédelem képviselete mindig is fontos volt az életében. Feleségével két agár boldog gazdái, Rádzsa és Dezi pedig játékosságukkal sokszor gondoskodnak arról, hogy Kristóf a medencés edzések után a szárazföldön is fitt legyen.

Azzal, hogy limitált kiadású telefonját licitre bocsátja szeretné, ha még nagyobb figyelem vetülne az állatvédelemre és a felelős állattartásra, miközben anyagilag is támogatja a veszprémi állatvédő szervezeteket, mondta az olimpiai bajnok.

Éppen ezért a Vehir.hu felületén zajló árverés végén a licit összege egyenlő arányban a "Pumi Veszprémi Állatmenhely" Alapítvány és a Vackoló Állatvédő Egyesület közt lesz elosztva.

Rasovszky Kristóf Samsung okostelefonjának kikiáltási összege 500.000 forint, a licitlépcső minimum 10.000 forint. Az árverés 2024. október 4-én, az állatok világnapján 12:00 órától indul és 2024. október 18. 11:59 óráig tart.

A legnagyobb összeget kínáló személyt szerkesztőségünk a licit zárását követően e-mail-ben és telefonon is értesíti, aki személyesen Rasovszky Kristóftól veheti át új okostelefonját.

A Samsung Galaxy Z Flip6 Olympic Edition telefonjából mindössze 17 ezer darab készült, ilyet kaptak az olimpia és paralimpia sportolói ajándékba. A készülék a normál verziótól eltérően nemcsak egyedi hátlappal rendelkezik, hanem előtelepített alkalmazásokat is tartalmaz, amelyek főleg a sportolást támogatják digitális megoldásaikkal. Emellett 100 GB adatforgalomra alkalmas eSIM-mel, valamint korlátlan párizsi tömegközlekedést biztosító digitális bérlettel is fel van szerelve, amely 5G hálózaton keresztül használható.

A licit lezárult!

A következő oldal tartalma a kiskorúakra káros lehet.

Ha korlátozná a korhatáros tartalmak elérését gépén, használjon szűrőprogramot!

Az oldal tartalma az Mttv. által rögzített besorolás szerint V. vagy VI. kategóriába tartozik.

Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_WARNING)
openssl_decrypt(): IV passed is only 3 bytes long, cipher expects an IV of precisely 16 bytes, padding with \0 Whoops\Exception\ErrorException thrown with message "openssl_decrypt(): IV passed is only 3 bytes long, cipher expects an IV of precisely 16 bytes, padding with \0" Stacktrace: #6 Whoops\Exception\ErrorException in /var/www/html/controller/class/misc/crypt.php:136 #5 openssl_decrypt in /var/www/html/controller/class/misc/crypt.php:136 #4 CO\SYSTEM\CRYPT:decrypt in /var/www/html/controller/class/error/PrettyPageHandler.php:47 #3 CO\SYSTEM\ERROR\Whoops\PrettyErrorLogger:handle in /var/www/html/controller/external/whoops/vendor/filp/whoops/src/Whoops/Run.php:321 #2 Whoops\Run:handleException in /var/www/html/controller/external/whoops/vendor/filp/whoops/src/Whoops/Run.php:403 #1 Whoops\Run:handleError in /var/www/html/controller/external/whoops/vendor/filp/whoops/src/Whoops/Run.php:429 #0 Whoops\Run:handleShutdown in [internal]:0
Stack frames (7)
6
Whoops\Exception\ErrorException
/var/www/html/controller/class/misc/crypt.php136
5
openssl_decrypt
/var/www/html/controller/class/misc/crypt.php136
4
CO\SYSTEM\CRYPT decrypt
/var/www/html/controller/class/error/PrettyPageHandler.php47
3
CO\SYSTEM\ERROR\Whoops\PrettyErrorLogger handle
/vendor/filp/whoops/src/Whoops/Run.php321
2
Whoops\Run handleException
/vendor/filp/whoops/src/Whoops/Run.php403
1
Whoops\Run handleError
/vendor/filp/whoops/src/Whoops/Run.php429
0
Whoops\Run handleShutdown
[internal]0
/var/www/html/controller/class/misc/crypt.php
                $salt = \CO\SYSTEM\CONFIG_TABLE\ITEM\TEXT::get('salt');
            } catch (\Exception $exc) {
                $salt = GENERATOR::random(10, false, GENERATOR\CHARSET::STRONG);
                throw new \Exception("CRYPT: nincs beállítva salt");
            }
        }
        $key = hash('SHA256', $salt . $password, true);
        $cipher = 'aes-256-cbc';
        if (!in_array($cipher, openssl_get_cipher_methods())) {
            throw new \Exception("COCRYPT: $cipher chiper nem elérhető");
        }
        $c = base64_decode($encrypted);
        $ivlen = openssl_cipher_iv_length($cipher);
        $iv = substr($c, 0, $ivlen);
        $hmac = substr($c, $ivlen, $sha2len = 32);
        $ciphertext_raw = substr($c, $ivlen + $sha2len);
        if ($ciphertext_raw === false) {
            throw new \Exception();
        }
        $original_plaintext = openssl_decrypt($ciphertext_raw, $cipher, $key, OPENSSL_RAW_DATA, $iv);
        $calcmac = hash_hmac('sha256', $ciphertext_raw, $key, $as_binary = true);


        if (hash_equals($hmac, $calcmac)) {//PHP 5.6+ timing attack safe comparison
            return unserialize($original_plaintext);
        } else {
            throw new \Exception();
        }
    }

}
/var/www/html/controller/class/misc/crypt.php
                $salt = \CO\SYSTEM\CONFIG_TABLE\ITEM\TEXT::get('salt');
            } catch (\Exception $exc) {
                $salt = GENERATOR::random(10, false, GENERATOR\CHARSET::STRONG);
                throw new \Exception("CRYPT: nincs beállítva salt");
            }
        }
        $key = hash('SHA256', $salt . $password, true);
        $cipher = 'aes-256-cbc';
        if (!in_array($cipher, openssl_get_cipher_methods())) {
            throw new \Exception("COCRYPT: $cipher chiper nem elérhető");
        }
        $c = base64_decode($encrypted);
        $ivlen = openssl_cipher_iv_length($cipher);
        $iv = substr($c, 0, $ivlen);
        $hmac = substr($c, $ivlen, $sha2len = 32);
        $ciphertext_raw = substr($c, $ivlen + $sha2len);
        if ($ciphertext_raw === false) {
            throw new \Exception();
        }
        $original_plaintext = openssl_decrypt($ciphertext_raw, $cipher, $key, OPENSSL_RAW_DATA, $iv);
        $calcmac = hash_hmac('sha256', $ciphertext_raw, $key, $as_binary = true);


        if (hash_equals($hmac, $calcmac)) {//PHP 5.6+ timing attack safe comparison
            return unserialize($original_plaintext);
        } else {
            throw new \Exception();
        }
    }

}
/var/www/html/controller/class/error/PrettyPageHandler.php
            $t = $this->getException()
                      ->getTrace()
            ;
            if (isset($t[0]) and isset($t[0]['args']) and isset($t[0]['args'][4])) {
                $this->addDataTable('registered variables', $t[0]['args'][4]);
            }
            $dd = array();
            foreach ($_REQUEST as $k => $v) {
                if (\CO\SYSTEM\DB::getInstance() == NULL) {
                    break;
                }
                try {
                    $decrypted = \CO\SYSTEM\CRYPT::decryptLocal($v);
                    $dd[$k] = array('encrypted' => $v, 'descrypted' => $decrypted);
                } catch (\Exception $e) {
//                    var_dump($e->getMessage());
//                    die;
                }
                try {
                    $decrypted = \CO\SYSTEM\CRYPT::decrypt($v);
                    $dd[$k] = array('encrypted' => $v, 'descrypted' => $decrypted);
                } catch (\Exception $e) {
//                    var_dump($e->getMessage());
                }
            }
            if (count($dd)) {
                $this->addDataTable('encrypted variables', $dd);
            }
//            foreach ($t[0]['args'][4] as $k => $v) {
//                $this->addDataTable('registered variables', $t[0]['args'][4]);
//            }
        }
        if (gettype($_POST) == 'object') {
            $_POST = json_decode(json_encode($_POST), true);
        }
//        var_dump(gettype($_POST)); die;
        parent::handle();
        $output = ob_get_clean();
        if (\CO\SYSTEM\DEV::getShowError() == false and \CO\SYSTEM\ERROR::showErrorAnyway() == false) {
            if (\CO\SYSTEM\DB::getInstance()) {
/var/www/html/controller/external/whoops/vendor/filp/whoops/src/Whoops/Run.php
        // Capture output produced while handling the exception,
        // we might want to send it straight away to the client,
        // or return it silently.
        $this->system->startOutputBuffering();
        
        // Just in case there are no handlers:
        $handlerResponse = null;
        $handlerContentType = null;
 
        try {
            foreach ($this->handlerQueue as $handler) {
                $handler->setRun($this);
                $handler->setInspector($inspector);
                $handler->setException($exception);
 
                // The HandlerInterface does not require an Exception passed to handle()
                // and neither of our bundled handlers use it.
                // However, 3rd party handlers may have already relied on this parameter,
                // and removing it would be possibly breaking for users.
                $handlerResponse = $handler->handle($exception);
 
                // Collect the content type for possible sending in the headers.
                $handlerContentType = method_exists($handler, 'contentType') ? $handler->contentType() : null;
 
                if (in_array($handlerResponse, [Handler::LAST_HANDLER, Handler::QUIT])) {
                    // The Handler has handled the exception in some way, and
                    // wishes to quit execution (Handler::QUIT), or skip any
                    // other handlers (Handler::LAST_HANDLER). If $this->allowQuit
                    // is false, Handler::QUIT behaves like Handler::LAST_HANDLER
                    break;
                }
            }
 
            $willQuit = $handlerResponse == Handler::QUIT && $this->allowQuit();
        } finally {
            $output = $this->system->cleanOutputBuffer();
        }
 
        // If we're allowed to, send output generated by handlers directly
        // to the output, otherwise, and if the script doesn't quit, return
/var/www/html/controller/external/whoops/vendor/filp/whoops/src/Whoops/Run.php
    public function handleError($level, $message, $file = null, $line = null)
    {
        if ($level & $this->system->getErrorReportingLevel()) {
            foreach ($this->silencedPatterns as $entry) {
                $pathMatches = (bool) preg_match($entry["pattern"], $file);
                $levelMatches = $level & $entry["levels"];
                if ($pathMatches && $levelMatches) {
                    // Ignore the error, abort handling
                    // See https://github.com/filp/whoops/issues/418
                    return true;
                }
            }
 
            // XXX we pass $level for the "code" param only for BC reasons.
            // see https://github.com/filp/whoops/issues/267
            $exception = new ErrorException($message, /*code*/ $level, /*severity*/ $level, $file, $line);
            if ($this->canThrowExceptions) {
                throw $exception;
            } else {
                $this->handleException($exception);
            }
            // Do not propagate errors which were already handled by Whoops.
            return true;
        }
 
        // Propagate error to the next handler, allows error_get_last() to
        // work on silenced errors.
        return false;
    }
 
    /**
     * Special case to deal with Fatal errors and the like.
     */
    public function handleShutdown()
    {
        // If we reached this step, we are in shutdown handler.
        // An exception thrown in a shutdown handler will not be propagated
        // to the exception handler. Pass that information along.
        $this->canThrowExceptions = false;
 
/var/www/html/controller/external/whoops/vendor/filp/whoops/src/Whoops/Run.php
        // work on silenced errors.
        return false;
    }
 
    /**
     * Special case to deal with Fatal errors and the like.
     */
    public function handleShutdown()
    {
        // If we reached this step, we are in shutdown handler.
        // An exception thrown in a shutdown handler will not be propagated
        // to the exception handler. Pass that information along.
        $this->canThrowExceptions = false;
 
        $error = $this->system->getLastError();
        if ($error && Misc::isLevelFatal($error['type'])) {
            // If there was a fatal error,
            // it was not handled in handleError yet.
            $this->allowQuit = false;
            $this->handleError(
                $error['type'],
                $error['message'],
                $error['file'],
                $error['line']
            );
        }
    }
 
    /**
     * In certain scenarios, like in shutdown handler, we can not throw exceptions
     * @var bool
     */
    private $canThrowExceptions = true;
 
    /**
     * Echo something to the browser
     * @param  string $output
     * @return $this
     */
    private function writeToOutputNow($output)
[internal]

Environment & details:

Key Value
requestParameters licit
empty
empty
empty
Key Value
site Array ( [selected-domain] => 1 )
Key Value
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI vehir.hu
REDIRECT_STATUS 200
HTTPS on
SSL_TLS_SNI vehir.hu
HTTP_USER_AGENT CCBot/2.0 (https://commoncrawl.org/faq/)
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.5
HTTP_IF_MODIFIED_SINCE Thu, 07 Nov 2024 06:37:59 GMT
HTTP_ACCEPT_ENCODING br,gzip
HTTP_HOST vehir.hu
HTTP_CONNECTION Keep-Alive
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/snap/bin
SERVER_SIGNATURE <address>Apache/2.4.58 (Ubuntu) Server at vehir.hu Port 443</address>
SERVER_SOFTWARE Apache/2.4.58 (Ubuntu)
SERVER_NAME vehir.hu
SERVER_ADDR 217.79.142.63
SERVER_PORT 443
REMOTE_ADDR 18.97.14.84
DOCUMENT_ROOT /var/www/html
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/html
SERVER_ADMIN [no address given]
SCRIPT_FILENAME /var/www/html/index.php
REMOTE_PORT 41084
REDIRECT_URL /licit
REDIRECT_QUERY_STRING requestParameters=licit
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING requestParameters=licit
REQUEST_URI /licit
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1749921990.1745
REQUEST_TIME 1749921990
empty
0. CO\SYSTEM\ERROR\Whoops\PrettyErrorLogger