File: webservers.yaml

package info (click to toggle)
forensic-artifacts 20190113-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 712 kB
  • sloc: python: 1,669; sh: 166; makefile: 21
file content (35 lines) | stat: -rw-r--r-- 787 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Webserver related artifacts.

name: NginxAccessLogs
doc: Location where nginx access logs are stored
sources:
- type: FILE
  attributes:
    paths:
      - '/var/log/nginx/access.log*'
labels: [Software, Logs]
supported_os: [Linux]
---
name: ApacheAccessLogs
doc: Location where Apache access logs are stored
sources:
- type: FILE
  attributes:
    paths:
      - '/var/log/apache/access.log*'
      - '/var/log/apache2/access.log*'
      - '/var/log/httpd/access.log'
labels: [Software, Logs]
supported_os: [Linux]
---
name:  WordpressConfigFile
doc: WordPress configuration file
sources:
- type: FILE
  attributes:
    paths:
      - '/wp/wp-config.php'
      - '/var/www/wp-config.php'
      - '/var/www/**/wp-config.php'
labels: [Configuration Files]
supported_os: [Linux, Darwin]