Skip to content

Commit 50b6c9d

Browse files
authored
Merge pull request #189 from aniqfakhrul/dev
Dev
2 parents 9fff740 + 7673f3f commit 50b6c9d

File tree

11 files changed

+2779
-91
lines changed

11 files changed

+2779
-91
lines changed

powerview/mcp/src/tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ async def invoke_asreproast(
753753
async def get_domain_ca(
754754
identity: str = "",
755755
properties: str = "",
756-
check_web_enrollment: bool = False,
756+
check_all: bool = False,
757757
ldapfilter: str = "",
758758
searchbase: str = "",
759759
no_cache: bool = False,
@@ -765,7 +765,7 @@ async def get_domain_ca(
765765
Args:
766766
identity: Filter by CA identity (name, DN). Defaults to empty (all CAs).
767767
properties: Comma-separated list of properties to retrieve. Defaults to '*'.
768-
check_web_enrollment: Check if web enrollment is enabled on the CA.
768+
check_all: Check all CA configurations.
769769
ldapfilter: Custom LDAP filter string.
770770
searchbase: Specify the search base DN (usually Configuration NC).
771771
no_cache: Bypass the cache and perform a live query.
@@ -777,7 +777,7 @@ async def get_domain_ca(
777777
args = type('Args', (), {
778778
'identity': identity,
779779
'properties': props,
780-
'check_web_enrollment': check_web_enrollment,
780+
'check_all': check_all,
781781
'ldapfilter': ldapfilter,
782782
'searchbase': searchbase if searchbase else None,
783783
'no_cache': no_cache,

0 commit comments

Comments
 (0)