mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
11 lines
305 B
YAML
11 lines
305 B
YAML
|
name: apps
|
||
|
examples: >-
|
||
|
See the last time applications were used. Useful to know if a vulnerable
|
||
|
application is being used as well as for licensing purposes.
|
||
|
|
||
|
```
|
||
|
|
||
|
SELECT *, strftime('%Y-%m-%d %H:%M:%S',last_opened_time,'unixepoch') as LastUseDate FROM apps WHERE last_opened_time!='-1.0';
|
||
|
|
||
|
```
|