¡@

Home 

php Programming Glossary: sensitive

Secure files for download

http://stackoverflow.com/questions/10834196/secure-files-for-download

that logged in users can download. These have very sensitive information. How can I best secure the folder. I come from a..

PHP: How do Cookies and Sessions work?

http://stackoverflow.com/questions/11142882/php-how-do-cookies-and-sessions-work

a new session and repeat the steps from 1 7. You can store sensitive information on a session because it is kept on the server but..

Reference - frequently asked questions about PDO [closed]

http://stackoverflow.com/questions/15990857/reference-frequently-asked-questions-about-pdo

While unconditionally echoed error message may reveal some sensitive information to a potential attacker yet confuse a honest visitor...

Prevent Direct Access To File Called By ajax Function

http://stackoverflow.com/questions/1756591/prevent-direct-access-to-file-called-by-ajax-function

simply examining the headers. The data being passed is not sensitive but it could potentially be abused since it is also trivial..

How do you implement a good profanity filter? [closed]

http://stackoverflow.com/questions/273516/how-do-you-implement-a-good-profanity-filter

public image search to find pictures that get added to a sensitive community pool. If they can search for penis then they will..

How do I use cookies across two different domains?

http://stackoverflow.com/questions/315132/how-do-i-use-cookies-across-two-different-domains

proper encryption authentication etc to avoid releasing sensitive information and to avoid various attacks replay man in the middle..

How do I remove  from the beginning of a file?

http://stackoverflow.com/questions/3255993/how-do-i-remove-i-from-the-beginning-of-a-file

encoding in case you have some other piece of code sensitive to encoding and counting on the default value. previous_encoding..

String comparison using == vs. strcmp

http://stackoverflow.com/questions/3333353/string-comparison-using-vs-strcmp

using vs. strcmp It seems that PHP's operator is case sensitive So is there any reason to use strcmp Is it safe to do something..

Exotic names for methods, constants, variables and fields - Bug or Feature?

http://stackoverflow.com/questions/3417180/exotic-names-for-methods-constants-variables-and-fields-bug-or-feature

different rules for these. Let's start with the case insensitive ones. Case insensitive identifiers class and function method.. these. Let's start with the case insensitive ones. Case insensitive identifiers class and function method names The general guideline.. conclusion if we use multi byte encodings for these case insensitive identifiers we're looking for trouble. It's not just that we..

How should I choose an authentication library for CodeIgniter?

http://stackoverflow.com/questions/346980/how-should-i-choose-an-authentication-library-for-codeigniter

permissions should always be stored exactly where the sensitive logic is . Dealbreaker Includes a native poor CAPTCHA reCAPTCHA..

Session lost when switching from HTTP to HTTPS in PHP

http://stackoverflow.com/questions/441496/session-lost-when-switching-from-http-to-https-in-php

flaws here so I would not use this code to transfer sensitive information. It is just meant as a workable example. When I..

PHP Session Fixation / Hijacking

http://stackoverflow.com/questions/5081025/php-session-fixation-hijacking

means any of the following User authentication Storing sensitive info in the session Changing anything about the session etc.....

Are PHP functions case sensitive?

http://stackoverflow.com/questions/5643496/are-php-functions-case-sensitive

PHP functions case sensitive I was digging through some code and I found some calls to mySQL_fetch_array.. and I found some calls to mySQL_fetch_array . Is PHP case sensitive about function names I recall reading this somewhere but can't.. can't seem to find any reference to it. php function case sensitive share improve this question I am quoting from this Note..

What are the best practices for avoiding xss attacks in a PHP site

http://stackoverflow.com/questions/71328/what-are-the-best-practices-for-avoiding-xss-attacks-in-a-php-site

you may use escape 'htmlall' modifier to convert all sensitive characters to HTML entities I use own e modifier which is alias..

Match a^n b^n c^n (e.g. “aaabbbccc”) using regular expressions (PCRE)

http://stackoverflow.com/questions/7434272/match-an-bn-cn-e-g-aaabbbccc-using-regular-expressions-pcre

far can you go Is it also possible to parse the context sensitive grammar a n b n c n n 0 e.g. aaabbbccc using PCRE php regex..