Revision history for ProgrammierenMitPHP
Additions:
delete
Deletions:
== für das WWW und andere Lösungen ==
((1)) Sicherheit
Hinweise zum sicheren Quelltext:
- Absicherung der ##includes## in PHP - http://www.webmasterpro.de/coding/article/php-sicherheit-include-absichern.html
- do not use "register globals"
- /etc/php.ini > register_globals = OFF
- if you use "register_globals", then initialize every variable!
- do not trust incoming data
- you shouldn't use "include($_GET['seite']);"
- use safe settings in your APACHE / PHP configuration
- [[http://www.php.net/manual/de/features.safe-mode.php SafeMode]] in php.ini
- OpenBasedir in httpd.conf
((1)) Reguläre Ausdrücke
Interessante Seite, auch wenn noch nicht probiert: http://regexp-evaluator.de
----
CategoryITWL
Additions:
((1)) Reguläre Ausdrücke
Interessante Seite, auch wenn noch nicht probiert: http://regexp-evaluator.de
Interessante Seite, auch wenn noch nicht probiert: http://regexp-evaluator.de
Deletions:
Additions:
== für das WWW und andere Lösungen ==
((1))
((1))
Deletions:
Additions:
- do not use "register globals"
- /etc/php.ini > register_globals = OFF
- if you use "register_globals", then initialize every variable!
- do not trust incoming data
- you shouldn't use "include($_GET['seite']);"
- use safe settings in your APACHE / PHP configuration
- [[http://www.php.net/manual/de/features.safe-mode.php SafeMode]] in php.ini
- OpenBasedir in httpd.conf
- /etc/php.ini > register_globals = OFF
- if you use "register_globals", then initialize every variable!
- do not trust incoming data
- you shouldn't use "include($_GET['seite']);"
- use safe settings in your APACHE / PHP configuration
- [[http://www.php.net/manual/de/features.safe-mode.php SafeMode]] in php.ini
- OpenBasedir in httpd.conf
Deletions:
Additions:
===== PHP Skriptsprache =====
== für das WWW ==
== für das WWW ==