Home
last modified time | relevance | path

Searched refs:security (Results 1 – 25 of 36) sorted by relevance

12

/PHP-7.3/Zend/tests/
H A Dbug69315.phpt19 Warning: strlen() has been disabled for security reasons in %sbug69315.php on line %d
22 Warning: defined() has been disabled for security reasons in %sbug69315.php on line %d
25 Warning: constant() has been disabled for security reasons in %sbug69315.php on line %d
28 Warning: call_user_func() has been disabled for security reasons in %sbug69315.php on line %d
31 Warning: is_string() has been disabled for security reasons in %sbug69315.php on line %d
H A Derrmsg_020.phpt13 Warning: phpinfo() has been disabled for security reasons in %s on line %d
H A Derrmsg_021.phpt16 Warning: test() has been disabled for security reasons in %s on line %d
H A Dbug77494.phpt13 Warning: CURLFile() has been disabled for security reasons in %sbug77494.php on line 2
/PHP-7.3/TSRM/
H A Dtsrm_win32.c454 SECURITY_ATTRIBUTES security; in popen_ex() local
505 security.nLength = sizeof(SECURITY_ATTRIBUTES); in popen_ex()
506 security.bInheritHandle = TRUE; in popen_ex()
507 security.lpSecurityDescriptor = NULL; in popen_ex()
509 if (!type_len || !CreatePipe(&in, &out, &security, 2048L)) { in popen_ex()
543 …DuplicateTokenEx(thread_token, MAXIMUM_ALLOWED, &security, SecurityImpersonation, TokenPrimary, &t… in popen_ex()
564 …res = CreateProcessAsUserW(token_user, NULL, cmdw, &security, &security, security.bInheritHandle, … in popen_ex()
567 …res = CreateProcessW(NULL, cmdw, &security, &security, security.bInheritHandle, dwCreateFlags, env… in popen_ex()
/PHP-7.3/ext/snmp/tests/
H A Dsnmp-object-setSecurity_error.phpt39 Warning: SNMP::setSecurity(): Invalid security level '' in %s on line %d
42 Warning: SNMP::setSecurity(): Invalid security level 'bugusPriv' in %s on line %d
54 Warning: SNMP::setSecurity(): Unknown security protocol 'BBB' in %s on line %d
H A Dsnmp3-error.phpt42 Warning: snmp3_get(): Invalid security level '' in %s on line %d
45 Warning: snmp3_get(): Invalid security level 'bugusPriv' in %s on line %d
57 Warning: snmp3_get(): Unknown security protocol 'BBB' in %s on line %d
H A Dsnmp-object.phpt95 echo "SNMPv3 (default security settings)\n";
209 SNMPv3 (default security settings)
/PHP-7.3/ext/standard/
H A Dproc_open.c368 # define pipe(pair) (CreatePipe(&pair[0], &pair[1], &security, 0) ? 0 : -1)
427 SECURITY_ATTRIBUTES security; in PHP_FUNCTION() local
500 memset(&security, 0, sizeof(security)); in PHP_FUNCTION()
501 security.nLength = sizeof(security); in PHP_FUNCTION()
502 security.bInheritHandle = TRUE; in PHP_FUNCTION()
503 security.lpSecurityDescriptor = NULL; in PHP_FUNCTION()
737 …newprocok = CreateProcessW(NULL, cmdw, &security, &security, TRUE, dwCreateFlags, envpw, cwdw, &si… in PHP_FUNCTION()
758 …newprocok = CreateProcessW(NULL, cmdw2, &security, &security, TRUE, dwCreateFlags, envpw, cwdw, &s… in PHP_FUNCTION()
/PHP-7.3/ext/opcache/tests/
H A Dbug76796.phpt17 Warning: strpos() has been disabled for security reasons in %s on line %d
H A Dbug68104.phpt19 Warning: dl() has been disabled for security reasons in %sbug68104.php on line %d
/PHP-7.3/
H A DREADME.input_filter10 through which a company-wide or site-wide security policy can be
12 treat_data and post handler functions. To implement your own security
15 peoples' needs. However, if you want to implement your own security
H A DREADME.GIT-RULES56 stable version and is open for security fixes only.
59 stable version and is open for security fixes only.
H A Dphp.ini-development76 ; php.ini-production contains settings which hold security, performance and
78 ; compatibility with older or less security conscience applications. We
307 ; This directive allows you to disable certain functions for security reasons.
312 ; This directive allows you to disable certain classes for security reasons.
367 ; (e.g. by adding its signature to the Web server header). It is no security
740 ; see documentation for security issues. The alternate is to use the
780 ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
794 ; of the web tree and people will not be able to circumvent .htaccess security.
798 ; security tokens of the calling client. This allows IIS to define the
799 ; security context that the request runs under. mod_fastcgi under Apache
[all …]
H A Dphp.ini-production76 ; php.ini-production contains settings which hold security, performance and
78 ; compatibility with older or less security conscience applications. We
307 ; This directive allows you to disable certain functions for security reasons.
312 ; This directive allows you to disable certain classes for security reasons.
367 ; (e.g. by adding its signature to the Web server header). It is no security
742 ; see documentation for security issues. The alternate is to use the
782 ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
796 ; of the web tree and people will not be able to circumvent .htaccess security.
800 ; security tokens of the calling client. This allows IIS to define the
801 ; security context that the request runs under. mod_fastcgi under Apache
[all …]
/PHP-7.3/tests/basic/
H A Dbug55500.phpt2 Bug #55500 (Corrupted $_FILES indices lead to security concern)
/PHP-7.3/ext/openssl/tests/
H A Dbug65538_002.phpt21 Warning: remote cafile streams are disabled for security purposes in %s on line %d
/PHP-7.3/ext/standard/tests/network/
H A Dnews.rss24 …evelopment team announces the immediate availability of PHP 5.4.37. Six security-related bugs were…
/PHP-7.3/ext/phar/
H A Dphar_internal.h586 …r_get_entry_info(phar_archive_data *phar, char *path, size_t path_len, char **error, int security);
587 …fo_dir(phar_archive_data *phar, char *path, size_t path_len, char dir, char **error, int security);
588 …me_len, char *path, size_t path_len, const char *mode, char allow_dir, char **error, int security);
589 …me_len, char *path, size_t path_len, const char *mode, char allow_dir, char **error, int security);
H A Dutil.c343 …har *path, size_t path_len, const char *mode, char allow_dir, char **error, int security) /* {{{ */ in phar_get_entry_data() argument
381 … allow_dir, for_create && !PHAR_G(readonly) && !phar->is_data ? NULL : error, security)) == NULL) { in phar_get_entry_data()
388 …, path_len, for_create && !PHAR_G(readonly) && !phar->is_data ? NULL : error, security)) == NULL) { in phar_get_entry_data()
509 …har *path, size_t path_len, const char *mode, char allow_dir, char **error, int security) /* {{{ */ in phar_get_or_create_entry_data() argument
527 …== phar_get_entry_data(&ret, fname, fname_len, path, path_len, mode, allow_dir, error, security)) { in phar_get_or_create_entry_data()
1200 …ry_info(phar_archive_data *phar, char *path, size_t path_len, char **error, int security) /* {{{ */ in phar_get_entry_info() argument
1202 return phar_get_entry_info_dir(phar, path, path_len, 0, error, security); in phar_get_entry_info()
1210 …ar_archive_data *phar, char *path, size_t path_len, char dir, char **error, int security) /* {{{ */ in phar_get_entry_info_dir() argument
1226 if (security && path_len >= sizeof(".phar")-1 && !memcmp(path, ".phar", sizeof(".phar")-1)) { in phar_get_entry_info_dir()
/PHP-7.3/ext/exif/tests/
H A Dbug50845.phpt45 …nd (LSD-41), May 5, 2016. The vehicles were loaded to support a theater security cooperation event…
/PHP-7.3/ext/session/tests/
H A Dsave_handler.inc133 // security reasons for production save handler.
156 // NOTE: This handler is mandatory for session security.
/PHP-7.3/ext/shmop/
H A DREADME24 …(the n flag is mostly useful for security perpouses, so that you don't end up opening a faked segm…
/PHP-7.3/tests/security/
H A Dopen_basedir.inc14 // recommended for production use as . bypasses all semblence of security..!
/PHP-7.3/win32/build/
H A Dconfig.w32309 ARG_ENABLE("security-flags", "Disable the compiler security flags", "yes");

Completed in 55 milliseconds

12