Minor default user config tweak

This commit is contained in:
2025-11-17 12:24:09 -05:00
parent 4a47cbe661
commit a7fc1b71e1
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -115,6 +115,14 @@ class AirlockAPIWrapper:
payload = {"groupid": groupid}
result = self._post("/v1/agent/find", payload)
return pd.DataFrame(result["response"]["agents"])
#Baseline Managment
def baseline_find_all(self) -> pd.DataFrame:
"""Retrieve all agents."""
result = self._post("/v1/agent/find", {})
return pd.DataFrame(result["response"]["agents"])
# Hash Management
def hash_add_to_allowlist(self, applicationid: str, hashes: List[str]) -> dict: