Modify ↓
Opened 11 years ago
Closed 10 years ago
#513 closed Bug/Fehler (fixed)
application_top.php - inputfilter zu spät
| Reported by: | Volker Strähle | Owned by: | somebody |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.0.0 |
| Component: | Sicherheit | Version: | 2.0.0.0 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
Der Bereich
// security inputfilter for GET/POST/COOKIE require (DIR_WS_CLASSES.'class.inputfilter.php'); $InputFilter = new InputFilter(); /**/ $_GET = $InputFilter->process($_GET); $_POST = $InputFilter->process($_POST); $_REQUEST = $InputFilter->process($_REQUEST); $_GET = $InputFilter->safeSQL($_GET); $_POST = $InputFilter->safeSQL($_POST); $_REQUEST = $InputFilter->safeSQL($_REQUEST);
wir in der application_top zu spät ausgeführt.
Das sollte unbedingt vor
// include the list of project filenames require (DIR_WS_INCLUDES.'filenames.php');
stehen, mindestens jedoch vor dem ersten autoinclude, da sonst Parameter ohne Prüfung übergeben werden können.
Attachments (0)
Note:
See TracTickets
for help on using tickets.

In 8375: