Přejít na hlavní obsah
Phishing a podvodné e-maily

Phishing a podvodné e-maily

Phishing je kybernetický útok pomocí technik sociálního inženýrství, kdy se útočník snaží získat důvěrná data oběti nebo spustit na zařízení oběti. Phishing se obvykle provádí prostřednictvím e-mailů, reklam nebo stránek vypadajících podobně jako stránky, které již používáte.

První phishingový útok se v Česku odehrál v březnu 2006. Klienti CitiBank tehdy ve svých e-mailových schránkách našli podvodnou zprávu, která je upozorňovala na příchozí platbu ve výši 2000 korun. Tu příjemci měli potvrdit kliknutím na přiložený odkaz, což také řada z nich udělala. Tak ale odevzdala své přihlašovací údaje přímo do náruče hackerovi. Od té doby se incidenty tohoto typu stávají častěji. Některé z prohlížečů nebezpečné internetové obchody a podvodné stránky dovedou detekovat a účinně ochránit uživatele. 


  • umístněno

    Podpora
  • štítky


Deprecated: Tomaj\Form\Renderer\BootstrapRenderer::render(): Implicitly marking parameter $mode as nullable is deprecated, the explicit nullable type must be used instead 

Deprecated

Tomaj\Form\Renderer\BootstrapRenderer::render(): Implicitly marking parameter $mode as nullable is deprecated, the explicit nullable type must be used instead search► skip error►

File: .../tomaj/nette-bootstrap-form/src/BootstrapRenderer.php:73

63: ]; 64: 65: /** @var bool */ 66: private $novalidate; 67: 68: public function __construct(bool $novalidate = true) 69: { 70: $this->novalidate = $novalidate; 71: } 72: 73: public function render(Form $form, string $mode = null): string 74: { 75: $form->getElementPrototype()->addClass('form-horizontal'); 76: 77: if ($this->novalidate) {
566: 567: /** 568: * Scope isolated include. 569: * 570: * Prevents access to $this/self from included files. 571: * 572: * @param string $file 573: * @return void 574: */ 575: self::$includeFile = \Closure::bind(static function($file) { 576: include $file; 577: }, null, null); 578: } 579: }
#0
'/home/czhosting/web/vyvoj.czhosting.cz/public_html/vendor/tracy/tracy/src/Tracy/Debugger/Debugger.php'
417: /** 418: * Loads the given class or interface. 419: * 420: * @param string $class The name of the class 421: * @return true|null True if loaded, null otherwise 422: */ 423: public function loadClass($class) 424: { 425: if ($file = $this->findFile($class)) { 426: $includeFile = self::$includeFile; 427: $includeFile($file); 428: 429: return true; 430: } 431:
#0
'/home/czhosting/web/vyvoj.czhosting.cz/public_html/vendor/composer/../tomaj/nette-bootstrap-form/src/BootstrapRenderer.php'
9: class FormFactory 10: { 11: use Nette\SmartObject; 12: 13: /** 14: * @return Form 15: */ 16: public function create() 17: { 18: $form = new Form; 19: $form->setRenderer(new BootstrapRenderer); 20: return $form; 21: } 22: 23: }
$class
'Tomaj\Form\Renderer\BootstrapRenderer'
60: } 61: 62: protected function createComponentSignUpForm() 63: { 64: return $this->signUpFactory->create(function () { 65: $this->redirect('Homepage:'); 66: }); 67: } 68: protected function createComponentSignPrihlaseni() 69: { 70: $form = $this->formFactory->create(); 71: $form->addText('username', 'Uživatelské jméno:') 72: ->setRequired('Zadejte své uživatelské jméno.'); 73: 74: $form->addPassword('password', 'Heslo:')
158: */ 159: protected function createComponent(string $name): ?IComponent 160: { 161: $ucname = ucfirst($name); 162: $method = 'createComponent' . $ucname; 163: if ( 164: $ucname !== $name 165: && method_exists($this, $method) 166: && (new \ReflectionMethod($this, $method))->getName() === $method 167: ) { 168: $component = $this->$method($name); 169: if (!$component instanceof IComponent && !isset($this->components[$name])) { 170: $class = static::class; 171: throw new Nette\UnexpectedValueException("Method $class::$method() did not return or create the desired component."); 172: }
#0
'signPrihlaseni'
70: { 71: return $this->lookupPath(Presenter::class); 72: } 73: 74: 75: protected function createComponent(string $name): ?Nette\ComponentModel\IComponent 76: { 77: if (method_exists($this, $method = 'createComponent' . $name)) { 78: (new AccessPolicy(new \ReflectionMethod($this, $method)))->checkAccess($this); 79: } 80: $res = parent::createComponent($name); 81: if ($res && !$res instanceof SignalReceiver && !$res instanceof StatePersistent) { 82: $type = $res::class; 83: trigger_error("It seems that component '$name' of type $type is not intended to be used in the Presenter."); 84: }
$name
'signPrihlaseni'
117: 118: if (!isset($this->components[$name])) { 119: if (!preg_match(self::NameRegexp, $name)) { 120: if ($throw) { 121: throw new Nette\InvalidArgumentException("Component name must be non-empty alphanumeric string, '$name' given."); 122: } 123: 124: return null; 125: } 126: 127: $component = $this->createComponent($name); 128: if ($component && !isset($this->components[$name])) { 129: $this->addComponent($component, $name); 130: } 131: }
$name
'signPrihlaseni'
31: 32: 33: /** 34: * Returns component specified by name. Throws exception if component doesn't exist. 35: * @param string|int $name 36: * @throws Nette\InvalidArgumentException 37: */ 38: public function offsetGet($name): IComponent 39: { 40: $name = is_int($name) ? (string) $name : $name; 41: return $this->getComponent($name); 42: } 43: 44: 45: /**
$name
'signPrihlaseni'
388: <button class="btn btn-sm btn-icon btn-text-secondary u-modal-window__close" type="button" onclick="Custombox.modal.close();"> 389: <i class="fas fa-times"></i> 390: </button> 391: <!-- End Modal Close Button --> 392: 393: <!-- Content --> 394: <div class="p-5 bg-white rounded"> 395: 396: <!-- Signin --> 397: '; 398: $form = $this->global->formsStack[] = $this->global->uiControl['signPrihlaseni'] /* pos 344:60 */; 399: Nette\Bridges\FormsLatte\Runtime::initializeForm($form); 400: echo ' <form class="js-validate ajax" role="form"'; 401: echo Nette\Bridges\FormsLatte\Runtime::renderFormBegin(end($this->global->formsStack), ['class' => null, 'role' => null], false) /* pos 344:60 */; 402: echo '>
334: <!-- Modal Close Button --> 335: <button class="btn btn-sm btn-icon btn-text-secondary u-modal-window__close" type="button" onclick="Custombox.modal.close();"> 336: <i class="fas fa-times"></i> 337: </button> 338: <!-- End Modal Close Button --> 339: 340: <!-- Content --> 341: <div class="p-5 bg-white rounded"> 342: 343: <!-- Signin --> 344: <form class="js-validate ajax" role="form" n:name="signPrihlaseni"> 345: <ul class="errors" n:if="$form->hasErrors()"> 346: <li n:foreach="$form->errors as $error">{$error}</li> 347: </ul> 348: <div id="signin" data-target-group="idForm">
$name
'signPrihlaseni'
98: } 99: 100: } elseif ($this->parentName) { // extends 101: $this->params = $params; 102: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 103: 104: } elseif ($block !== null) { // single block rendering 105: $this->renderBlock($block, $this->params); 106: 107: } else { 108: $this->main($params); 109: } 110: } 111: 112:
$ʟ_args
null
92: $this->parentName = ($this->global->coreParentFinder)($this); 93: } 94: 95: if ($this->referenceType === 'import') { 96: if ($this->parentName) { 97: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 98: } 99: 100: } elseif ($this->parentName) { // extends 101: $this->params = $params; 102: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 103: 104: } elseif ($block !== null) { // single block rendering 105: $this->renderBlock($block, $this->params); 106:
$block
null
77: 78: 79: /** 80: * Renders template to output. 81: * @param object|mixed[] $params 82: */ 83: public function render(string $name, object|array $params = [], ?string $block = null): void 84: { 85: $template = $this->createTemplate($name, $this->processParams($params)); 86: $template->global->coreCaptured = false; 87: $template->render($block); 88: } 89: 90: 91: /**
$block
null
33: return $this->latte; 34: } 35: 36: 37: /** 38: * Renders template to output. 39: */ 40: public function render(?string $file = null, array $params = []): void 41: { 42: Nette\Utils\Arrays::toObject($params, $this); 43: $this->latte->render($file ?? $this->file, $this); 44: } 45: 46: 47: /**
$name
'/home/czhosting/web/vyvoj.czhosting.cz/public_html/app/presenters/templates/Podpora/clanek.latte'
$params

31: return $this->source; 32: } 33: 34: 35: /** 36: * Sends response to output. 37: */ 38: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse): void 39: { 40: if ($this->source instanceof Nette\Application\UI\Template) { 41: $this->source->render(); 42: 43: } else { 44: echo $this->source; 45: }
149: 150: Arrays::invoke($this->onPresenter, $this, $this->presenter); 151: $response = $this->presenter->run(clone $request); 152: 153: if ($response instanceof Responses\ForwardResponse) { 154: $request = $response->getRequest(); 155: goto process; 156: } 157: 158: Arrays::invoke($this->onResponse, $this, $response); 159: $response->send($this->httpRequest, $this->httpResponse); 160: } 161: 162: 163: public function createErrorRequest(\Throwable $e): ?Request
$httpRequest

$httpResponse

67: } 68: 69: 70: /** 71: * Dispatch a HTTP request to a front controller. 72: */ 73: public function run(): void 74: { 75: try { 76: Arrays::invoke($this->onStartup, $this); 77: $this->processRequest($this->createInitialRequest()); 78: Arrays::invoke($this->onShutdown, $this); 79: 80: } catch (\Throwable $e) { 81: $this->sendHttpCode($e);
$request

1: <?php 2: 3: declare(strict_types=1); 4: 5: require __DIR__ . '/../vendor/autoload.php'; 6: 7: App\Bootstrap::boot() 8: ->createContainer() 9: ->getByType(Nette\Application\Application::class) 10: ->run();

	

Requests


Presenter


			
TEMP
'/home/czhosting/tmp'
TMPDIR
'/home/czhosting/tmp'
TMP
'/home/czhosting/tmp'
PATH
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin'
USER
'czhosting'
HOME
'/home/czhosting'
SCRIPT_NAME
'/index.php'
REQUEST_URI
'/clanek/phishing-a-podvodne-e-maily?XDEBUG_SESSION_STOP=1'
QUERY_STRING
'XDEBUG_SESSION_STOP=1'
REQUEST_METHOD
'GET'
SERVER_PROTOCOL
'HTTP/1.0'
GATEWAY_INTERFACE
'CGI/1.1'
REDIRECT_QUERY_STRING
'XDEBUG_SESSION_STOP=1'
REDIRECT_URL
'/clanek/phishing-a-podvodne-e-maily'
REMOTE_PORT
'46528'
SCRIPT_FILENAME
'/home/czhosting/web/vyvoj.czhosting.cz/public_html/www/index.php'
SERVER_ADMIN
'info@vyvoj.czhosting.cz'
CONTEXT_DOCUMENT_ROOT
'/home/czhosting/web/vyvoj.czhosting.cz/public_html/www'
CONTEXT_PREFIX
''
REQUEST_SCHEME
'https'
DOCUMENT_ROOT
'/home/czhosting/web/vyvoj.czhosting.cz/public_html/www'
REMOTE_ADDR
'216.73.216.107'
SERVER_PORT
'443'
SERVER_ADDR
'81.2.197.178'
SERVER_NAME
'vyvoj.czhosting.cz'
SERVER_SOFTWARE
'Apache/2.4.57 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2'
SERVER_SIGNATURE
''
HTTP_ACCEPT_ENCODING
'gzip, br, zstd, deflate'
HTTP_USER_AGENT
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
HTTP_ACCEPT
'*/*'
HTTP_CONNECTION
'close'
HTTP_X_FORWARDED_FOR
'216.73.216.107'
HTTP_HOST
'vyvoj.czhosting.cz'
proxy-nokeepalive
'1'
SSL_TLS_SNI
'vyvoj.czhosting.cz'
HTTPS
'on'
REDIRECT_STATUS
'200'
REDIRECT_SSL_TLS_SNI
'vyvoj.czhosting.cz'
REDIRECT_HTTPS
'on'
FCGI_ROLE
'RESPONDER'
PHP_SELF
'/index.php'
REQUEST_TIME_FLOAT
1768392303.347549
REQUEST_TIME
1768392303
__NFNette Session

Nette Session

kosik

Nette.Http.UserStorage/
null
HTTP_URL_REPLACE
1
HTTP_URL_JOIN_PATH
2
HTTP_URL_JOIN_QUERY
4
HTTP_URL_STRIP_USER
8
HTTP_URL_STRIP_PASS
16
HTTP_URL_STRIP_AUTH
32
HTTP_URL_STRIP_PORT
64
HTTP_URL_STRIP_PATH
128
HTTP_URL_STRIP_QUERY
256
HTTP_URL_STRIP_FRAGMENT
512
HTTP_URL_STRIP_ALL
1024

apcu

APCu Support Enabled
Version 5.1.27
APCu Debugging Disabled
MMAP Support Enabled
MMAP File Mask no value
Serialization Support php
Build Date Sep 8 2025 06:46:49
DirectiveLocal ValueMaster Value
apc.coredump_unmapOffOff
apc.enable_cliOffOff
apc.enabledOnOn
apc.entries_hint00
apc.gc_ttl36003600
apc.mmap_file_maskno valueno value
apc.mmap_hugepage_size00
apc.preload_pathno valueno value
apc.serializerphpphp
apc.shm_size32M32M
apc.slam_defenseOffOff
apc.smart00
apc.ttl00
apc.use_request_timeOffOff

bcmath

BCMath support enabled
DirectiveLocal ValueMaster Value
bcmath.scale00

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.8, 13-Jul-2019

calendar

Calendar support enabled

cgi-fcgi

php-fpm active
DirectiveLocal ValueMaster Value
cgi.discard_pathOffOff
cgi.fix_pathinfoOnOn
cgi.force_redirectOnOn
cgi.nphOffOff
cgi.redirect_status_envno valueno value
cgi.rfc2616_headersOffOff
fastcgi.error_headerno valueno value
fastcgi.loggingOnOn
fpm.configno valueno value

Core

PHP Version 8.4.13
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
arg_separator.input&&
arg_separator.output&&
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionspcntl_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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popenpcntl_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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen
display_errorsOnOff
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_log_mode06440644
error_prepend_stringno valueno value
error_reporting3071922527
expose_phpOffOff
extension_dir/usr/lib/php/20240924/usr/lib/php/20240924
fiber.stack_sizeno valueno value
file_uploadsOnOn
hard_timeout22
highlight.comment#FF8000#FF8000
highlight.default#0000BB#0000BB
highlight.html#000000#000000
highlight.keyword#007700#007700
highlight.string#DD0000#DD0000
html_errorsOffOn
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/usr/share/php.:/usr/share/php
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
mail.add_x_headerOffOff
mail.force_extra_parametersno valueno value
mail.logno valueno value
mail.mixed_lf_and_crlfOffOff
max_execution_time480480
max_file_uploads2020
max_input_nesting_level6464
max_input_time480480
max_input_vars40004000
max_multipart_body_parts-1-1
memory_limit256M256M
open_basedir/home/czhosting/.composer:/home/czhosting/web/vyvoj.czhosting.cz/public_html/:/home/czhosting/web/vyvoj.czhosting.cz/private:/home/czhosting/web/vyvoj.czhosting.cz/public_shtml:/home/czhosting/tmp:/tmp:/var/www/html:/bin:/usr/bin:/usr/local/bin:/usr/share:/opt/home/czhosting/.composer:/home/czhosting/web/vyvoj.czhosting.cz/public_html/:/home/czhosting/web/vyvoj.czhosting.cz/private:/home/czhosting/web/vyvoj.czhosting.cz/public_shtml:/home/czhosting/tmp:/tmp:/var/www/html:/bin:/usr/bin:/usr/local/bin:/usr/share:/opt
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size100M100M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOffOff
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i -f admin@vyvoj.czhosting.cz/usr/sbin/sendmail -t -i -f admin@vyvoj.czhosting.cz
serialize_precision-1-1
short_open_tagOffOff
SMTPlocalhostlocalhost
smtp_port2525
sys_temp_dirno valueno value
syslog.facilityLOG_USERLOG_USER
syslog.filterno-ctrlno-ctrl
syslog.identphpphp
unserialize_callback_funcno valueno value
upload_max_filesize100M100M
upload_tmp_dir/home/czhosting/tmp/home/czhosting/tmp
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions-1-1
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.exception_ignore_argsOffOn
zend.exception_string_param_max_len00
zend.max_allowed_stack_size00
zend.multibyteOffOff
zend.reserved_stack_size00
zend.script_encodingno valueno value
zend.signal_checkOffOff

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.81.0
Age 9
Features
AsynchDNS Yes
CharConv No
Debug No
GSS-Negotiate No
IDN Yes
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
NTLMWB Yes
SPNEGO Yes
SSL Yes
SSPI No
TLS-SRP Yes
HTTP2 Yes
GSSAPI Yes
KERBEROS5 Yes
UNIX_SOCKETS Yes
PSL Yes
HTTPS_PROXY Yes
MULTI_SSL No
BROTLI Yes
ALTSVC Yes
HTTP3 No
UNICODE No
ZSTD Yes
HSTS Yes
GSASL No
Protocols dict, file, ftp, ftps, gopher, gophers, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtmp, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/3.0.2
ZLib Version 1.2.11
libSSH Version libssh/0.9.6/openssl/zlib
DirectiveLocal ValueMaster Value
curl.cainfono valueno value

date

date/time support enabled
timelib version 2022.12
"Olson" Timezone Database Version 0.system
Timezone Database internal
Default timezone Europe/Prague
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.83333390.833333
date.sunset_zenith90.83333390.833333
date.timezoneEurope/PragueUTC

dom

DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.9.14
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled

exif

EXIF Support enabled
Supported EXIF Version 0220
Supported filetypes JPEG, TIFF
Multibyte decoding support using mbstring enabled
Extended EXIF tag formats Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson
DirectiveLocal ValueMaster Value
exif.decode_jis_intelJISJIS
exif.decode_jis_motorolaJISJIS
exif.decode_unicode_intelUCS-2LEUCS-2LE
exif.decode_unicode_motorolaUCS-2BEUCS-2BE
exif.encode_jisno valueno value
exif.encode_unicodeISO-8859-15ISO-8859-15

FFI

FFI support enabled
DirectiveLocal ValueMaster Value
ffi.enablepreloadpreload
ffi.preloadno valueno value

fileinfo

fileinfo support enabled
libmagic 545

filter

Input Validation and Filtering enabled
DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled
FTPS support enabled

gd

GD Support enabled
GD headers Version 2.3.3
GD library Version 2.3.3
FreeType Support enabled
FreeType Linkage with freetype
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
PNG Support enabled
WBMP Support enabled
XPM Support enabled
XBM Support enabled
WebP Support enabled
BMP Support enabled
AVIF Support enabled
TGA Read Support enabled
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warningOnOn

gettext

GetText Support enabled

hash

hash support enabled
Hashing Engines md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b crc32c fnv132 fnv1a32 fnv164 fnv1a64 joaat murmur3a murmur3c murmur3f xxh32 xxh64 xxh3 xxh128 haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
MHASH support Enabled
MHASH API Version Emulated Support

iconv

iconv support enabled
iconv implementation glibc
iconv library version 2.35
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

imagick

imagick moduleenabled
imagick module version 3.8.0
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
Imagick compiled with ImageMagick version ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
Imagick using ImageMagick library version ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
ImageMagick copyright (C) 1999-2021 ImageMagick Studio LLC
ImageMagick release date 2021-01-25
ImageMagick number of supported formats: 247
ImageMagick supported formats 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
DirectiveLocal ValueMaster Value
imagick.allow_zero_dimension_images00
imagick.locale_fix00
imagick.progress_monitor00
imagick.set_single_thread11
imagick.shutdown_sleep_count1010
imagick.skip_version_check11

imap

IMAP extension Version 1.0.3
IMAP c-Client Version 2007f
SSL Support enabled
Kerberos Support enabled
DirectiveLocal ValueMaster Value
imap.enable_insecure_rshOffOff

intl

Internationalization support enabled
ICU version 70.1
ICU Data version 70.1
ICU TZData version 2025b
ICU Unicode version 14.0
DirectiveLocal ValueMaster Value
intl.default_localeno valueno value
intl.error_level00
intl.use_exceptionsOffOff

json

json support enabled

ldap

LDAP Support enabled
Total Links 0/unlimited
API Version 3001
Vendor Name OpenLDAP
Vendor Version 20519
SASL Support Enabled
DirectiveLocal ValueMaster Value
ldap.max_linksUnlimitedUnlimited

libxml

libXML support active
libXML Compiled Version 2.9.14
libXML Loaded Version 20914
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) version 6.9.7
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.http_inputno valueno value
mbstring.http_outputno valueno value
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.regex_retry_limit10000001000000
mbstring.regex_stack_limit100000100000
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

mysqli

MysqlI Support enabled
Client API library version mysqlnd 8.4.13
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 1
DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOffOff
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port33063306
mysqli.default_pwno valueno value
mysqli.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysqli.default_userno valueno value
mysqli.local_infile_directoryno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlnd enabled
Version mysqlnd 8.4.13
Compression supported
core SSL supported
extended SSL supported
Command buffer size 4096
Read buffer size 32768
Read timeout 86400
Collecting statistics Yes
Collecting memory statistics No
Tracing n/a
Loaded plugins mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_caching_sha2_password,auth_plugin_sha256_password
API Extensions mysqli,pdo_mysql

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 3.0.2 15 Mar 2022
OpenSSL Header Version OpenSSL 3.0.2 15 Mar 2022
Openssl default config /usr/lib/ssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 10.40 2022-04-14
PCRE Unicode Version 14.0.0
PCRE JIT Support enabled
PCRE JIT Target x86 64bit (little endian + unaligned)
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jitOnOn
pcre.recursion_limit100000100000

PDO

PDO support enabled
PDO drivers mysql

pdo_mysql

PDO Driver for MySQL enabled
Client API version mysqlnd 8.4.13
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock

Phar

Phar: PHP Archive support enabled
Phar API version 1.1.1
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression enabled
Native OpenSSL support enabled
Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

posix

POSIX support enabled

pspell

PSpell Support enabled
PSpell extension version 1.0.1

random

Version 8.4.13

readline

Readline Support enabled
Readline library EditLine wrapper
DirectiveLocal ValueMaster Value
cli.pagerno valueno value
cli.prompt\b \> \b \>

Reflection

Reflection enabled

session

Session Support enabled
Registered save handlers files user
Registered serializer handlers php_serialize php php_binary
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOnOff
session.cookie_lifetime12096000
session.cookie_path//
session.cookie_samesiteLaxno value
session.cookie_secureOnOff
session.gc_divisor10001000
session.gc_maxlifetime12096001440
session.gc_probability00
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/home/czhosting/tmp/home/czhosting/tmp
session.serialize_handlerphpphp
session.sid_bits_per_character44
session.sid_length3232
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_strict_modeOnOff
session.use_trans_sidOffOff

shmop

shmop support enabled

SimpleXML

SimpleXML support enabled
Schema support enabled

soap

Soap Client enabled
Soap Server enabled
DirectiveLocal ValueMaster Value
soap.wsdl_cache11
soap.wsdl_cache_dir/tmp/tmp
soap.wsdl_cache_enabledOnOn
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

sodium

sodium support enabled
libsodium headers version 1.0.18
libsodium library version 1.0.18

SPL

SPL support enabled
Interfaces OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException

standard

Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i -f admin@vyvoj.czhosting.cz
DirectiveLocal ValueMaster Value
assert.activeOnOn
assert.bailOffOff
assert.callbackno valueno value
assert.exceptionOnOn
assert.warningOnOn
auto_detect_line_endingsOffOff
default_socket_timeout6060
fromno valueno value
session.trans_sid_hostsno valueno value
session.trans_sid_tagsa=href,area=href,frame=src,form=a=href,area=href,frame=src,form=
unserialize_max_depth40964096
url_rewriter.hostsno valueno value
url_rewriter.tagsform=form=
user_agentno valueno value

sysvmsg

sysvmsg support enabled

sysvsem

sysvsem support enabled

sysvshm

sysvshm support enabled

tokenizer

Tokenizer Support enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.14

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.34
libxslt compiled against libxml Version 2.9.13
EXSLT enabled
libexslt Version 1.1.34

Zend OPcache

Opcode Caching Up and Running
Optimization Enabled
SHM Cache Enabled
File Cache Disabled
JIT Off
Startup OK
Shared memory model mmap
Cache hits 13248658
Cache misses 2400883
Used memory 522139600
Free memory 160
Wasted memory 14731152
Interned Strings Used memory 8388600
Interned Strings Free memory 8
Cached scripts 17510
Cached keys 27410
Max keys 130987
OOM restarts 0
Hash keys restarts 0
Manual restarts 0
Start time 2026-01-14T11:43:48+0100
Last restart time none
Last force restart time none
DirectiveLocal ValueMaster Value
opcache.blacklist_filenameno valueno value
opcache.dups_fixOffOff
opcache.enableOnOn
opcache.enable_cliOffOff
opcache.enable_file_overrideOffOff
opcache.error_logno valueno value
opcache.file_cacheno valueno value
opcache.file_cache_consistency_checksOnOn
opcache.file_cache_onlyOffOff
opcache.file_update_protection22
opcache.force_restart_timeout180180
opcache.huge_code_pagesOffOff
opcache.interned_strings_buffer88
opcache.jitno valueno value
opcache.jit_bisect_limit00
opcache.jit_blacklist_root_trace1616
opcache.jit_blacklist_side_trace88
opcache.jit_buffer_size64M64M
opcache.jit_debug00
opcache.jit_hot_func127127
opcache.jit_hot_loop6464
opcache.jit_hot_return88
opcache.jit_hot_side_exit88
opcache.jit_max_exit_counters81928192
opcache.jit_max_loop_unrolls88
opcache.jit_max_polymorphic_calls22
opcache.jit_max_recursive_calls22
opcache.jit_max_recursive_returns22
opcache.jit_max_root_traces10241024
opcache.jit_max_side_traces128128
opcache.jit_max_trace_length10241024
opcache.jit_prof_threshold0.0050.005
opcache.lockfile_path/tmp/tmp
opcache.log_verbosity_level11
opcache.max_accelerated_files100000100000
opcache.max_file_size00
opcache.max_wasted_percentage55
opcache.memory_consumption512512
opcache.opt_debug_level00
opcache.optimization_level0x7FFEBFFF0x7FFEBFFF
opcache.preferred_memory_modelno valueno value
opcache.preloadno valueno value
opcache.preload_userno valueno value
opcache.protect_memoryOffOff
opcache.record_warningsOffOff
opcache.restrict_apino valueno value
opcache.revalidate_freq22
opcache.revalidate_pathOffOff
opcache.save_commentsOnOn
opcache.use_cwdOnOn
opcache.validate_permissionOffOff
opcache.validate_rootOffOff
opcache.validate_timestampsOnOn

zip

Zip enabled
Zip version 1.22.6
Libzip version 1.7.3
BZIP2 compression Yes
XZ compression No
ZSTD compression No
AES-128 encryption Yes
AES-192 encryption Yes
AES-256 encryption Yes

zlib

ZLib Support enabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.11
Linked Version 1.2.11
DirectiveLocal ValueMaster Value
zlib.output_compressionOffOff
zlib.output_compression_level-1-1
zlib.output_handlerno valueno value

Additional Modules

Module Name
array (1)
0 => array (7)
| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 20592 | 'level' => 0 | 'chunk_size' => 4096 | 'buffer_size' => 16384 | 'buffer_used' => 706

GET https://vyvoj.czhosting.cz/clanek/phishing-a-podvodne-e-maily?XDEBUG_SESSION_STOP=1

Accept-Encoding
'gzip, br, zstd, deflate'
User-Agent
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
Accept
'*/*'
Connection
'close'
X-Forwarded-For
'216.73.216.107'
Host
'vyvoj.czhosting.cz'

$_GET

XDEBUG_SESSION_STOP
'1'

$_POST

empty

$_COOKIE

empty

Code: 200

Set-Cookie
'tracy-session=626fa00eeb; expires=Thu, 14 Jan 2027 18:05:03 GMT; Max-Age=31557600; path=/; HttpOnly'
X-Powered-By
'Nette Framework 3'
Content-Type
'text/html; charset=utf-8'
X-Frame-Options
'SAMEORIGIN'
Set-Cookie
'_nss=1; path=/; secure; HttpOnly; SameSite=Strict'
Set-Cookie
'PHPSESSID=1ee126acb2ad9e9bfb0994e72f22f6ad; expires=Wed, 28 Jan 2026 12:05:03 GMT; Max-Age=1209600; path=/; secure; HttpOnly; SameSite=Lax'
Expires
'Thu, 19 Nov 1981 08:52:00 GMT'
Cache-Control
'no-store, no-cache, must-revalidate'
Pragma
'no-cache'
Vary
'X-Requested-With'

Headers have been sent, output started at .../latte/templates-Menu-hornimenu.latte--b7fb85b38d.php:28 source

18: } 19: 20: echo ' 21: 22: <!-- Nav --> 23: <nav class="js-mega-menu navbar navbar-expand-lg u-header__navbar"> 24: <!-- Logo --> 25: <div class="u-header__navbar-brand-wrapper"> 26: <a href="'; 27: echo LR\HtmlHelpers::escapeAttr($this->global->uiControl->link('Homepage:default')) /* pos 7:56 */; 28: echo '" class="navbar-brand u-header__navbar-brand" aria-label="CZhosting"> 29: <img class="u-header__navbar-brand-default" src="/imgs/logo/logo-czhosting-menu.svg" alt="Logo"> 30: <img class="u-header__navbar-brand-on-scroll" src="/imgs/logo/logo-czhosting-menu.svg" alt="Logo"> 31: <img class="u-header__navbar-brand-mobile" src="/imgs/logo/logo-czhosting-menu.svg" alt="Logo"> 32: </a>