Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Mar 5, 2019
1 parent 79ec638 commit ab08733
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 15 deletions.
23 changes: 16 additions & 7 deletions data/antivirus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ sources:
- type: FILE
attributes:
paths:
- '%%environ_allusersappdata%%\Microsoft\Microsoft Antimalware\Quarantine\**'
- '%%environ_allusersappdata%%\Microsoft\Windows Defender\Quarantine\**'
- '%%environ_allusersprofile%%\Application Data\Microsoft\Microsoft Antimalware\Quarantine\**'
- '%%environ_allusersprofile%%\Application Data\Microsoft\Windows Defender\Quarantine\**'
- '%%environ_programdata%%\Microsoft\Microsoft Antimalware\Quarantine\**'
- '%%environ_programdata%%\Microsoft\Windows Defender\Quarantine\**'
separator: '\'
supported_os: [Windows]
labels: [Antivirus]
Expand All @@ -28,7 +30,9 @@ sources:
supported_os: [Darwin]
- type: FILE
attributes:
paths: ['%%environ_allusersappdata%%\Sophos\Sophos Anti-Virus\Logs\*']
paths:
- '%%environ_allusersprofile%%\Application Data\Sophos\Sophos Anti-Virus\Logs\*'
- '%%environ_programdata%%\Sophos\Sophos Anti-Virus\Logs\*'
separator: '\'
supported_os: [Windows]
supported_os: [Darwin, Windows]
Expand All @@ -42,7 +46,9 @@ sources:
supported_os: [Darwin]
- type: FILE
attributes:
paths: ['%%environ_allusersappdata%%\Sophos\Sophos Anti-Virus\INFECTED\*']
paths:
- '%%environ_allusersprofile%%\Application Data\Sophos\Sophos Anti-Virus\INFECTED\*'
- '%%environ_programdata%%\Sophos\Sophos Anti-Virus\INFECTED\*'
separator: '\'
supported_os: [Windows]
supported_os: [Darwin, Windows]
Expand All @@ -54,8 +60,9 @@ sources:
- type: FILE
attributes:
paths:
- '%%environ_allusersappdata%%\Symantec\Symantec Endpoint Protection\*\Data\Logs\*.log'
- '%%users.localappdata%%\Symantec\Symantec Endpoint Protection\Logs\*.log'
- '%%environ_allusersprofile%%\Application Data\Symantec\Symantec Endpoint Protection\*\Data\Logs\*.log'
- '%%environ_programdata%%\Symantec\Symantec Endpoint Protection\*\Data\Logs\*.log'
- '%%users.localappdata%%\Symantec\Symantec Endpoint Protection\Logs\*.log'
separator: '\'
supported_os: [Windows]
supported_os: [Windows]
Expand All @@ -66,7 +73,9 @@ doc: Symantec Anti-Virus Quarantine (Infected) files.
sources:
- type: FILE
attributes:
paths: ['%%environ_allusersappdata%%\Symantec\Symantec Endpoint Protection\**5.vbn']
paths:
- '%%environ_allusersprofile%%\Application Data\Symantec\Symantec Endpoint Protection\**5.vbn'
- '%%environ_programdata%%\Symantec\Symantec Endpoint Protection\**5.vbn'
separator: '\'
supported_os: [Windows]
supported_os: [Windows]
Expand Down
19 changes: 12 additions & 7 deletions data/tomcat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ sources:
- type: ARTIFACT_GROUP
attributes:
names:
- 'TomcatLogFiles'
- 'TomcatPasswordFile'
- 'TomcatLogFiles'
- 'TomcatPasswordFile'
labels: [Software]
supported_os: [Darwin,Linux,Windows]
---
Expand All @@ -17,10 +17,14 @@ sources:
- type: FILE
attributes:
paths:
- '%%environ_allusersappdata%%\Apache Software Foundation\Tomcat*\logs\**\access_log*'
- '%%environ_allusersappdata%%\Apache Software Foundation\Tomcat*\logs\access_log*'
- '%%environ_allusersappdata%%\Apache Software Foundation\Tomcat*\logs\**\catalina.out'
- '%%environ_allusersappdata%%\Apache Software Foundation\Tomcat*\logs\catalina.out'
- '%%environ_allusersprofile%%\Application Data\Apache Software Foundation\Tomcat*\logs\**\access_log*'
- '%%environ_allusersprofile%%\Application Data\Apache Software Foundation\Tomcat*\logs\access_log*'
- '%%environ_allusersprofile%%\Application Data\Apache Software Foundation\Tomcat*\logs\**\catalina.out'
- '%%environ_allusersprofile%%\Application Data\Apache Software Foundation\Tomcat*\logs\catalina.out'
- '%%environ_programdata%%\Apache Software Foundation\Tomcat*\logs\**\access_log*'
- '%%environ_programdata%%\Apache Software Foundation\Tomcat*\logs\access_log*'
- '%%environ_programdata%%\Apache Software Foundation\Tomcat*\logs\**\catalina.out'
- '%%environ_programdata%%\Apache Software Foundation\Tomcat*\logs\catalina.out'
- '%%environ_programfiles%%\Apache Software Foundation\Tomcat*\logs\**\access_log*'
- '%%environ_programfiles%%\Apache Software Foundation\Tomcat*\logs\access_log*'
- '%%environ_programfiles%%\Apache Software Foundation\Tomcat*\logs\**\catalina.out'
Expand Down Expand Up @@ -78,7 +82,8 @@ sources:
- type: FILE
attributes:
paths:
- '%%environ_allusersappdata%%\Apache Software Foundation\Tomcat*\conf\tomcat-users.xml'
- '%%environ_allusersprofile%%\Application Data\Apache Software Foundation\Tomcat*\conf\tomcat-users.xml'
- '%%environ_programdata%%\Apache Software Foundation\Tomcat*\conf\tomcat-users.xml'
- '%%environ_programfiles%%\Apache Software Foundation\Tomcat*\conf\tomcat-users.xml'
- '%%environ_programfilesx86%%\Apache Software Foundation\Tomcat*\conf\tomcat-users.xml'
separator: '\'
Expand Down
4 changes: 3 additions & 1 deletion data/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,9 @@ doc: Windows Search database (Windows.edb).
sources:
- type: FILE
attributes:
paths: ['%%environ_allusersappdata%%\Microsoft\Search\Data\Applications\Windows\Windows.edb']
paths:
- '%%environ_allusersprofile%%\Application Data\Microsoft\Search\Data\Applications\Windows\Windows.edb'
- '%%environ_programdata%%\Microsoft\Search\Data\Applications\Windows\Windows.edb'
separator: '\'
labels: [Software]
supported_os: [Windows]
Expand Down

0 comments on commit ab08733

Please sign in to comment.