Hi Team,
I am working on a use-case for CyberArk and would like to know if there is any feasibility to call "meta value" of any "meta key" in the "meta value" of another "meta key".
Scenario is: CyberArk-Password Retrieved from another user.
Case Study: Source Username is the field which capture affected user for which password is retrieved and destination username is the field which capture the detail of user who retried the password. Source Username will have additional pre-fix of "adm_". E.g. Source Username = adm_deepak and Destination Username = deepak.
My logic is to build something like, source username doesn't contain destination username.
Seeking your hep here.....
Regards,
Deepak Shukla
Hey Deepak,
You sure can. The below will alert when user_src does not contain the value in user_dst (assuming user_src and _user_dst are from the same event):
SELECT * FROM Event(user_src NOT LIKE '%' || user_dst || '%')
Cheers,
Lee