摘要: 一、数据库操作 1、创建model表 基本结构 1 2 3 4 5 6 from django.db import models class userinfo(models.Model): #如果没有models.AutoField,默认会创建一个id的自增列 name = models.CharF 阅读全文
posted @ 2019-06-28 17:07 陈臭屁 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 一、对保存到cookie里面的敏感信息必须加密 二、设置HttpOnly为true 1、该属性值的作用就是防止Cookie值被页面脚本读取。 2、但是设置HttpOnly属性,HttpOnly属性只是增加了攻击者的难度,Cookie盗窃的威胁并没有彻底消除,因为cookie还是有可能传递的过程中被监 阅读全文
posted @ 2019-06-28 16:24 陈臭屁 阅读(2590) 评论(0) 推荐(0) 编辑
ヾ(≧O≦)〃chencp top