ウェブアプリケーションは永続的クッキーを使用しますが、クッキーには機密情報が含まれています。
クッキーはウェブアプリケーションから送信される小さなデータビットですが、ブラウザにローカルに保存されます。これにより、アプリケーションはクッキーを使ってページ間で情報を受け渡し、可変情報を保存することができます。ウェブアプリケーションは、クッキーにどのような情報が保存され、それがどのように使用されるかを制御します。クッキーに保存される情報の典型的なタイプは、セッション識別子、パーソナライゼーションとカスタマイズ情報、まれに自動ログインを可能にするユーザー名です。クッキーには、セッション・クッキーと永続的クッキーの2種類があります。セッション・クッキーはブラウザのメモリに保存され、どこにも保存されませんが、永続クッキーはブラウザのハードドライブに保存されます。 これは、クッキーに保存された情報とそのアクセス方法によっては、セキュリティとプライバシーの問題を引き起こす可能性があります。
The web application uses persistent cookies, but the cookies contain sensitive information.
Cookies are small bits of data that are sent by the web application but stored locally in the browser. This lets the application use the cookie to pass information between pages and store variable information. The web application controls what information is stored in a cookie and how it is used. Typical types of information stored in cookies are session identifiers, personalization and customization information, and in rare cases even usernames to enable automated logins. There are two different types of cookies: session cookies and persistent cookies. Session cookies just live in the browser's memory and are not stored anywhere, but persistent cookies are stored on the browser's hard drive. This can cause security and privacy issues depending on the information stored in the cookie and how it is accessed.