随笔分类 -  Database Principle & Database Security

找出没有使用天津产的零件的工程号码
摘要:建表语句:https://blog.csdn.net/karive/article/details/105055038 常见写法: SELECT DISTINCT JNO FROM SPJ,S WHERE S.SNO=SPJ.SNO AND S.CITY<>'天津' SELECT DISTINCT 阅读全文

posted @ 2021-06-19 18:09 HBU_DAVID 阅读(3824) 评论(0) 推荐(0)

数据库实验 新增的安全要求及例程
摘要:https://github.com/HBU/DataBase/tree/master/Csharp/Curricula_Variable_System 登录 加 验证码。 密码需要掩码。带MD5加密验证。 登录后,要在日志记录登录信息。 用户名 正则表达式 验证。 其他部分的完整性约束,要举一反三 阅读全文

posted @ 2019-06-21 00:23 HBU_DAVID 阅读(230) 评论(0) 推荐(0)

2019春 数据库实验情况
摘要:用户表: 用户名【主键】 密码 【MD5加密】 学号/教师号/职工号【外键】 身份类型【学生、教师、管理员】 照片 image类型 出生日期 日期类型 日志表:(提供审计使用) 操作人、操作时间、动作(增删改) 阅读全文

posted @ 2019-06-20 13:56 HBU_DAVID 阅读(147) 评论(0) 推荐(0)

Syllabus of Database principle and security
摘要:绪论 :增加数据库原理课程与数据库安全课程的关系:在学习原理的基础上,进一步学习安全。适当降低原理中侧重理论的部分的要求,增加安全部分的知识的概念介绍。 关系数据库:适当减少关系代数的讲解,了解基本概念,建立关系模型思维即可。 关系数据库标准语言SQL:要求熟练掌握,强度与数据库原理课程要求一致。 阅读全文

posted @ 2019-06-17 13:19 HBU_DAVID 阅读(186) 评论(0) 推荐(0)

数据库加密
摘要:信息安全主要指三个方面: 数据安全 系统安全 电子商务的安全 核心是数据库的安全,将数据库的数据加密就抓住了信息安全的核心问题。 一般而言,一个行之有效的数据库加密技术主要有以下6个方面的功能和特性。 (1)身份认证: 用户除提供用户名、口令外,还必须按照系统安全要求提供其它相关安全凭证。如使用终端 阅读全文

posted @ 2019-06-17 12:33 HBU_DAVID 阅读(856) 评论(0) 推荐(0)

常用工具
摘要:AppScan https://www.cnblogs.com/fnng/archive/2012/05/27/2520594.html Web应用程序渗透测试。它是一个桌面应用程序,它有助于专业安全人员进行Web应用程序自动化脆弱性评估。 SQLMAP https://www.cnblogs.co 阅读全文

posted @ 2019-06-17 12:14 HBU_DAVID 阅读(159) 评论(0) 推荐(0)

SQL 注入 实例 (Win10 + SQLserver + ASP.net)
摘要:Win10 + SQLserver + ASP.net ref:https://www.cnblogs.com/webconfig/p/3622498.html 1. 搭建IIS环境 搭建成功后,在浏览器输入:localhost,显示如下网页: 2. 在SQLserver建立数据库Student,并 阅读全文

posted @ 2019-06-17 01:37 HBU_DAVID 阅读(755) 评论(0) 推荐(0)

DVWA (Dam Vulnerable Web Application): Could not connect to the MySQL service
摘要:https://www.jianshu.com/p/97d874548300 http://www.dvwa.co.uk/ https://blog.csdn.net/qq_36706878/article/details/79677078 https://jingyan.baidu.com/art 阅读全文

posted @ 2019-06-16 20:12 HBU_DAVID 阅读(956) 评论(0) 推荐(0)

Database Security: Auditing
摘要:Database auditing is used to track database access and user activity. Auditing can be used to identify who accessed database objects, what actions wer 阅读全文

posted @ 2019-06-16 16:56 HBU_DAVID 阅读(123) 评论(0) 推荐(0)

Database Security: Database Inference
摘要:A subtle vulnerability found within database technologies is inference 推理, or the ability to derive 获取 unknown information based on retrieved informat 阅读全文

posted @ 2019-06-16 16:48 HBU_DAVID 阅读(262) 评论(0) 推荐(0)

Database Security: Database Vulnerability
摘要:Security breaches are an increasing phenomenon. As more and more databases are made accessible via the Internet and web-based applications, their expo 阅读全文

posted @ 2019-06-16 14:16 HBU_DAVID 阅读(469) 评论(0) 推荐(0)

Database Security: Application Access Assessment
摘要:Most users do not access a database by directly logging into the database system. Instead they access the database through an application program. A s 阅读全文

posted @ 2019-06-16 13:44 HBU_DAVID 阅读(232) 评论(0) 推荐(0)

Database Security :Access Control
摘要:authentication 认证, authorization 授权, access control 访问控制 These three mechanisms are distinctly different but usually used in combination with a focus 阅读全文

posted @ 2019-06-16 13:27 HBU_DAVID 阅读(818) 评论(0) 推荐(0)

【Database Security 】What Students Need to Know
摘要:Ref: Database Security What Students Need to Know .pdf While database security incorporates a wide array of security topics, notwithstanding,physical 阅读全文

posted @ 2019-06-15 20:29 HBU_DAVID 阅读(167) 评论(0) 推荐(0)

数据库原理及安全
摘要:首先必须要学习好数据库原理。不懂数据库,何谈数据库安全。 但是,数据库安全课程并不是传统的数据库原理教学基础上,只把数据库安全性这一章进行扩展和强化。 安全的理念,在多个章节都有所体现:完整性、并发性、灾备……(Learn from Pro.Yu) 讲课时多举例子,便于学生理解安全的重要性和实用性, 阅读全文

posted @ 2019-06-15 11:50 HBU_DAVID 阅读(403) 评论(0) 推荐(0)

SQL SERVER : 'GO' 附近有语法错误问题
摘要:SQL SERVER management studio的问题,我把出错的sql语句copy到Notepad++格式化一下,再粘回去就没有问题了 SQL语句中,有些行的结尾处只有Char(13)没有Char(10),即:只有回车符没有换行符,这种状态在视觉上是没办法区分的。你可以这样尝试来印证:把每 阅读全文

posted @ 2018-03-28 12:20 HBU_DAVID 阅读(6671) 评论(0) 推荐(0)

Visual C# 访问 SQLserver 数据库
摘要:1 在数据库建库建表:http://www.cnblogs.com/hbuwyg/p/8641870.html 2 修改程序里面的 数据库连接字符串 3 下载并运行源代码:https://github.com/HBU/DataBase/tree/master/CsharpDB/CRUD 阅读全文

posted @ 2018-03-24 22:47 HBU_DAVID 阅读(271) 评论(0) 推荐(0)

数据库系统概论 第三章 课后作业
摘要:1 ----第3大题 2 3 --建立库 4 create database SPJbase 5 use SPJbase 6 7 8 --建立表 9 create table s --建立s表 10 ( 11 sno varchar(5) primary key, 12 sname varchar(10) not n... 阅读全文

posted @ 2018-03-24 22:42 HBU_DAVID 阅读(1214) 评论(0) 推荐(0)

数据库系统概论 第三章 建表&插入SQL语句
摘要:1 --Edit by David @ HeBei University 2018 2 3 USE MrDavid 4 GO 5 6 DROP TABLE IF EXISTS SC 7 DROP TABLE IF EXISTS Student 8 DROP TABLE IF EXISTS Course 9 10 CREATE TABLE Student ... 阅读全文

posted @ 2018-03-24 22:38 HBU_DAVID 阅读(989) 评论(0) 推荐(0)

【MySQL】Database connections will be migrated
摘要:Windows 10 MySQL 5.7.18.1 MySQL Workbench 6.3 community Database connections will be migrated 数据库连接将被迁移 Connections will be migrated to use MySQL Work 阅读全文

posted @ 2017-07-17 15:22 HBU_DAVID 阅读(2848) 评论(2) 推荐(0)

导航