Exemplo n.º 1
0
        public ActionResult SQLInjection()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("SQL Injection");

                return(View(MBdc));
            }
        }
Exemplo n.º 2
0
        public ActionResult DatabaseAuditing()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Database Auditing");

                return(View(MBdc));
            }
        }
Exemplo n.º 3
0
        public ActionResult SecurityMatrix()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Security Matrix");

                return(View(MBdc));
            }
        }
Exemplo n.º 4
0
        public ActionResult RowLevelSecurity()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Row Level Security");

                return(View(MBdc));
            }
        }
Exemplo n.º 5
0
        public ActionResult AccessControl()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Access Control");

                return(View(MBdc));
            }
        }
Exemplo n.º 6
0
        public ActionResult ReferentialIntegrity()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Referential Integrity");

                return(View(MBdc));
            }
        }
Exemplo n.º 7
0
        public ActionResult SP_Triggers()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Stored Procedures and Triggers");

                return(View(MBdc));
            }
        }
Exemplo n.º 8
0
        public ActionResult EmbeddedSQL()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Embedded SQL");

                return(View(MBdc));
            }
        }
Exemplo n.º 9
0
        public ActionResult Recovery()
        {
            using (ModuleBaseModelDataContext MBdc = new ModuleBaseModelDataContext())
            {
                MBdc.GenerateBaseElements("Recovery");

                return View(MBdc);
            }
        }