2022-10-18 19:13:42 +00:00
name : user_ssh_keys
2024-05-27 23:18:56 +00:00
examples : |-
2024-04-05 16:11:18 +00:00
```
SELECT * FROM users CROSS JOIN user_ssh_keys USING (uid);
```
2022-10-18 19:13:42 +00:00
Identify SSH keys stored in clear text in user directories
```
2023-11-10 21:11:30 +00:00
SELECT * FROM users JOIN user_ssh_keys USING (uid) WHERE encrypted = 0;
2022-10-18 19:13:42 +00:00
```
columns :
- name : pid_with_namespace
platforms :
- linux
- name : uid
2024-04-05 16:11:18 +00:00
notes : Querying this table requires joining against the `users` table. [Learn more](https://fleetdm.com/guides/osquery-consider-joining-against-the-users-table)