manikant singh
10/16/2020, 10:28 AMwe have 16 immutable memtables (waiting to flush), max_write_buffer_number is set to 16
Expiring events for subscriber: file_events (overflowed limit 50000)
Subscriber events file_events exceeded limit 5000 by: 200
Can someone please guide what is the problem here.
As of now I have only two users on the machine.
One is the root with which osqueryd is running and the other is guest user.
which has only access to machine is via ssh.
Not sure why would limit will exceed here.
I have also configured FIM as follows
file_accesses:
- homes
file_paths:
homes:
- /home/%%
Any help is appreciated ,thanks.Jattind
10/16/2020, 7:54 PMAlejandro
10/19/2020, 4:53 PMDan Achin
10/19/2020, 7:54 PMEsteban
10/20/2020, 4:09 PMBen Montour
10/21/2020, 2:29 PMRaff_B
10/22/2020, 9:33 AMfritz
10/23/2020, 4:04 PMSELECT datetime(unix_time, 'unixepoch', 'localtime') FROM time;
Mystery Incorporated
10/25/2020, 9:34 AMMystery Incorporated
10/26/2020, 4:14 AMTej Gandhi
10/27/2020, 2:42 PMIvanlei
10/27/2020, 9:47 PMBen Montour
10/28/2020, 10:42 AMTej Gandhi
10/28/2020, 3:23 PMfritz
10/28/2020, 6:00 PMMystery Incorporated
10/28/2020, 6:28 PMMystery Incorporated
10/28/2020, 6:31 PMExpiring events for subscriber: windows_events (overflowed limit 50000)
allister
10/29/2020, 3:47 AMfritz
10/29/2020, 1:49 PMkolide_wmi
) which allows you to get things like USB devices on Windows. For example I just wrote a PoC query to do exactly that:
WITH pnp_raw AS (
SELECT * FROM kolide_wmi WHERE class = 'Win32_PnPEntity' AND properties = 'Availability,Caption,ClassGuid,CompatibleID,ConfigManagerErrorCode,ConfigManagerUserConfig,CreationClassName,Description,DeviceID,ErrorCleared,ErrorDescription,HardwareID,InstallDate,LastErrorCode,Manufacturer,Name,PNPClass,PNPDeviceID,PowerManagementCapabilities,PowerManagementSupported,Present,Service,Status,StatusInfo,SystemCreationClassName,SystemName'),
pivot_wmi AS (
SELECT
MAX(CASE WHEN key = 'Availability' THEN value END) AS availability,
MAX(CASE WHEN key = 'Caption' THEN value END) AS caption,
MAX(CASE WHEN key = 'ClassGuid' THEN value END) AS class_guid,
MAX(CASE WHEN key = 'CompatibleID' THEN value END) AS compatible_id,
MAX(CASE WHEN key = 'ConfigManagerErrorCode' THEN value END) AS config_mgr_err_code,
MAX(CASE WHEN key = 'ConfigManagerUserConfig' THEN value END) AS config_mgr_user_config,
MAX(CASE WHEN key = 'CreationClassName' THEN value END) AS creation_class_name,
MAX(CASE WHEN key = 'Description' THEN value END) AS description,
MAX(CASE WHEN key = 'DeviceID' THEN value END) AS device_id,
MAX(CASE WHEN key = 'ErrorCleared' THEN value END) AS error_cleared,
MAX(CASE WHEN key = 'ErrorDescription' THEN value END) AS error_description,
MAX(CASE WHEN key = 'HardwareID' THEN value END) AS hardware_id,
MAX(CASE WHEN key = 'InstallDate' THEN value END) AS install_date,
MAX(CASE WHEN key = 'LastErrorCode' THEN value END) AS last_error_code,
MAX(CASE WHEN key = 'Manufacturer' THEN value END) AS manufacturer,
MAX(CASE WHEN key = 'Name' THEN value END) AS name,
MAX(CASE WHEN key = 'PNPClass' THEN value END) AS pnp_class,
MAX(CASE WHEN key = 'PNPDeviceID' THEN value END) AS pnp_device_id,
MAX(CASE WHEN key = 'PowerManagementCapabilities' THEN value END) AS pwr_mgmt_capabilities,
MAX(CASE WHEN key = 'PowerManagementSupported' THEN value END) AS pwr_mgmt_supported,
MAX(CASE WHEN key = 'Present' THEN value END) AS present,
MAX(CASE WHEN key = 'Service' THEN value END) AS service,
MAX(CASE WHEN key = 'Status' THEN value END) AS status,
MAX(CASE WHEN key = 'StatusInfo' THEN value END) AS status_info,
MAX(CASE WHEN key = 'SystemCreationClassName' THEN value END) AS system_creation_class_name,
MAX(CASE WHEN key = 'SystemName ' THEN value END) AS system_name
FROM pnp_raw
GROUP BY parent)
SELECT * FROM pivot_wmi WHERE pnp_class = 'USBDevice'
Julian Scala
10/29/2020, 6:45 PM--config_endpoint
.
Does anyone has the response payload I need to respond to the daemon? I want to pass flags to the daemon and the docs only show how to schedule queries.Dan Achin
10/29/2020, 8:43 PMwix
and package-builder
must be run on a windows machine with binaries in the appropriate places.
Can anyone tell me where those appropriate places are? I'm guessing someone here has used launcher to build windows packages.Gonzalo Saad
10/29/2020, 8:59 PMread
(I saw that in the osqueryd logs) but I do not get the daemon to write
or even show something like this: Executing distributed query: kolide_detail_query_os_version: select * from os_version limit 1
I'm not using the fleet server, doing an experiment haha. I disable_distributed=false
and the result of the /distributed/read
is this one:
{
"queries": {
"dad0f587-abf3-4278-8664-7bc6fa8a8b762": "select * from system_info"
},
"node_invalid": false
}
What could be misconfigured in the daemon to not write data?Mystery Incorporated
10/30/2020, 5:09 AMStefano Bonicatti
10/31/2020, 1:41 PMBrandon
11/02/2020, 8:51 PM--disable_events=false
--disable_forensic=false
--enable_windows_events_publisher=true
--enable_windows_events_subscriber=true
--windows_events_channel=System,Application,Setup,Security,Microsoft-Windows-PowerShell
sundsta
11/05/2020, 10:10 PMMacear
11/06/2020, 10:58 AMsslCommonNameToCheck
? It would be really useful to specify common name of TLS server manually.
Does the flag insecure
disable common name checking?manikant singh
11/06/2020, 1:59 PMAhmed
11/09/2020, 1:20 PMDan Achin
11/09/2020, 10:13 PM