CakePHP Set-Cookie Response Header

4

Ho familiarità con il cookie cakePHP e le impostazioni della sessione, ma non sono sicuro del motivo per cui (durante l'analisi tramite Burp Proxy Suite trovo 2 separate% risposte% di_dei:

Set-Cookie: DropZone=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/
Set-Cookie: DropZone=spackr9fhhgod0lqk9glh3ch44; expires=Tue, 28-Jan-2014 23:01:37 GMT; path=/; secure; HttpOnly

Mi sono preso il tempo di impostare i flag Set-Cookie e HTTPOnly . Quello che non capisco è la prima riga qui:

Set-Cookie: DropZone=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/

Da dove proviene questa intestazione Secure ? Ancora più importante, potrebbe essere più di una minaccia alla sicurezza informativa?

Sono chiaramente nel mio file Set-Cookie che imposta le impostazioni di app/Config/core.php :

Configure::write('Session', array(
    'defaults' => 'php',
    'cookie' => 'DropZone',
    'timeout' => 15,
    'ini' => array(
        'session.cookie_secure' => true,
        'session.cookie_httponly' => true)
));
    
posta lockdown 29.01.2014 - 00:11
fonte

1 risposta

2

Questo in realtà proviene da dove CakePHP sta rinnovando la sessione. Il colpevole può essere trovato a:

CakePHP 2.4: link

CakePHP 2.6: link

E la documentazione in setcookie ha chiaramente detto che:

Cookies must be deleted with the same parameters as they were set with. If the value argument is an empty string, or FALSE, and all other arguments match a previous call to setcookie, then the cookie with the specified name will be deleted from the remote client. This is internally achieved by setting value to 'deleted' and expiration time to one year in past.

Questo è il motivo per cui ricevi una chiamata setonokia non httponly ogni volta che la sessione si sta rinnovando, in particolare stai facendo un'azione di disconnessione.

    
risposta data 17.09.2014 - 10:52
fonte

Leggi altre domande sui tag