文章
· 六月 26, 2022 阅读大约需 1 分钟

以程序化的方式检查审计设置

下面的代码允许用户查看其实例的审计设置。通过运行类方法 "test "来运行该代码。:


class objectscript.checkAudit Extends %RegisteredObject
{
    classmethod test() {
        w "Checking for Auditing...",!
        Set SYSOBJ = ##class(Security.System).%OpenId("SYSTEM")
        If +SYSOBJ = 0 Set SYSOBJ = ##class(Security.System).%New()
        i SYSOBJ.AuditEnabled {
            w "Security Auditing is enabled for the following services",!
            s rs=##class(%ResultSet).%New("Security.Events:ListAllSystem")
            s sc=rs.Execute()  If $$$ISERR(sc) Do DisplayError^%apiOBJ(sc) Quit
            while rs.%Next() {
                d:rs.Data("Enabled")="Yes" rs.%Print()
            }
            d rs.Close()
         
            s rs=##class(%ResultSet).%New("Security.Events:ListAllUser")
            s sc=rs.Execute()  If $$$ISERR(sc) Do DisplayError^%apiOBJ(sc) Quit
            while rs.%Next() {
                d:rs.Data("Enabled")="Yes" rs.%Print()
            }
            d rs.Close()
        }
    }
}   

这是 GitHub的链接: https://github.com/intersystems-community/code-snippets/blob/master/src/...

讨论 (0)1
登录或注册以继续