6

Click here to load reader

Web Application Security 101 - 12 Logging

Embed Size (px)

DESCRIPTION

In part 12 of the Web Application Security 101 we talk about logging best practices.

Citation preview

Page 1: Web Application Security 101 - 12 Logging

LoggingInappropriate logging.

Page 2: Web Application Security 101 - 12 Logging

Types Of IssuesIncorrect time synchronization.

Logging of sensitive information.

Unauthorized access to logs.

Page 3: Web Application Security 101 - 12 Logging

Incorrect Time SynchronizationIf the time of the logs is desynchronized it will make it difficult to

perform forensic investigation in case of a break-in.

Page 4: Web Application Security 101 - 12 Logging

Logging Of Sensitive InformationSome types of information such as user session ids, passwords, credit

card numbers, cvv data and more should not be logged.

Page 5: Web Application Security 101 - 12 Logging

Unauthorized Access To LogsLog files may contain sensitive data and therefore needs to be protected.

Page 6: Web Application Security 101 - 12 Logging

LabWe will explore some of these areas in more detail.