Ibra
08/18/2022, 12:57 PMOjas
08/19/2022, 7:45 AMnick fury
08/21/2022, 2:31 PMAdam Connor
08/22/2022, 1:28 AMzahida naeem
08/22/2022, 8:11 AMJason
08/22/2022, 3:46 PMfile_events
etc ?Harrison
08/22/2022, 6:38 PMOjas
08/23/2022, 4:24 AMzlib
version 1.2.12-r1
was detected in APK package manager
on a container image running Alpine 3.16.0
is vulnerable to CVE-2022-37434
, which exists in versions \u003c 1.2.12-r2
.\n\nThe vulnerability was found in the [Official Alpine Security Advisories](https://security.alpinelinux.org/vuln/CVE-2022-37434) with vendor severity: Critical
([NVD](https://nvd.nist.gov/vuln/detail/CVE-2022-37434) severity: Critical
).\n\nThis vulnerability has a known exploit available. Source: Github [[1](https://github.com/ivd38/zlib_overflow), [2](https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063), [3](https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764)].\n\nThe vulnerability can be remediated by updating the package to version 1.2.12-r2
or higher,Ojas
08/23/2022, 7:58 AMnick fury
08/23/2022, 12:44 PMnick fury
08/23/2022, 7:31 PMVlad Previn
08/24/2022, 7:26 AMjimmy
08/24/2022, 1:02 PMnatewalck
08/24/2022, 1:28 PMShend Saliaga
08/24/2022, 8:21 PMBenjamin Edwards
08/26/2022, 3:02 PMpvirani
08/26/2022, 5:13 PMzahida naeem
08/28/2022, 12:58 PM{
"options": {
"config_plugin": "filesystem",
"logger_plugin": "filesystem",
"logger_path": "/var/log/osquery",
"logger_snapshot_event_type": "true",
"schedule_splay_percent": "10"
},
"yara": {
"signatures": {
// Each key is an arbitrary group name to give the signatures listed
"sig_group_1": [ "/home/slyb/yara_rules/hello_worlds.yar" ]
// "sig_group_2": [ "/Users/wxs/sigs/baz.yar" ]
},
"file_paths": {
"system_binaries": [ "sig_group_1" ]
}
},
// Paths to watch for filesystem events
"file_paths": {
"system_binaries": [ "/home/slyb/%" ]
},
"packs": {
"osquery-monitoring": "/home/slyb/osquery/packs/osquery-monitoring.conf",
"fim": "/home/slyb/osquery/packs/fim.conf"
}
}
and this is my flag file
--config_plugin=filesystem
--config_path=/etc/osquery/osquery.conf
--enable_yara_sigurl=true
--logger_plugin=filesystem
--logger_path=/var/log/osquery
--disable_logging=false
--log_result_events=true
--schedule_splay_percent=10
--pidfile=/var/osquery/osquery.pidfile
--events_expiry=3600
--database_path=/var/osquery/osquery.db
--verbose=false
--worker_threads=2
--disable_events=false
--disable_audit=false
--audit_allow_config=true
--host_identifier=hostname
--enable_syslog=true
--audit_allow_sockets=true
--schedule_default_interval=3600
--enable_file_events=true
this is my yara rule file
rule ExampleRule
{
strings:
$my_text_string = "hello world"
$my_hex_string = { E2 34 A1 C8 23 FB }
condition:
$my_text_string or $my_hex_string
}
the problem is im getting no entry in yara_events table after testing for a file that has the same signature as mentioned in yara ruleJason Roberts
08/29/2022, 8:23 PMINFO: 12:50:42 Increasing width of software.vendor...
2022/08/29 12:50:43 FAIL 20220818101352_ChangeSoftwareVendorWidth.go (adding new uniquess constraint: Error 1062: Duplicate entry 'openpgm-5.2.122-rpm_packages-2.el7--x86_64' for key 'unq_name'), quitting migration.
Which led to
2022/08/29 12:56:43 FAIL 20220818101352_ChangeSoftwareVendorWidth.go (creating temp column for vendor: Error 1060: Duplicate column name 'vendor_wide'), quitting migration.
After deleting the column and row i was able to upgrade.zhong
08/29/2022, 8:25 PMconstraint failed
error when querying the windows_eventlog
table from fleet. After some troubleshooting I found that channel
is a required constraint in the WHERE clause, which I have added but still get the same constraint failed
error. is there another required constraint when querying windows_eventlog
? Any help is greatly appreciated!Kathy Satterlee
08/30/2022, 3:19 PM/api/v1/osquery/enroll
/api/v1/osquery/config
/api/v1/osquery/distributed/read
/api/v1/osquery/distributed/write
/api/v1/osquery/carve/begin
/api/v1/osquery/carve/block
Hope that helps!Harrison
08/31/2022, 4:22 PMZach Zeid
08/31/2022, 4:34 PMTarek Talaat
08/31/2022, 6:53 PMKathy Satterlee
09/01/2022, 6:20 PMpeanut butter
09/01/2022, 9:10 PMKyle Goode
09/04/2022, 12:17 AMnick fury
09/06/2022, 2:02 PMBoubacary Diallo
09/06/2022, 4:02 PMHello, how are you, I hope you are well!
I deployed a fleet of which I deployed osquery agents. Getting to a certain number of agents, often when a new host is deployed, it downgrades another one from the list. I get the following errors on the output to the osquery server:
1/osquery/distributed/read","ts":"2022-09-05T152012.164277378Z"}
Sep 5 152015 osquery fleet[69161]: {"component":"http","err":"authentication error: invalid node key: /uLuK4hiUVdU3hZVXS5dcivDzQFpwfAX","level":"info","path":"/api/v1/osquery/config","ts":"2022-09-05T152015.9287988Z"}Jason
09/06/2022, 6:27 PMNOT EXISTS
? I'm trying to run a query for a policy that will return true if a process is not running... I;m running into issues.