今天在弄 identityServer4 项目的时候,发现好好的登录竟然没用了。 各种跟踪后发现是 HttpContext.SignInAsync 这个方法不写cookies了 原本经过这个方法后,会写入 idsrv和idsrv.session 两个cookies的。 搜索资料后发现简书上有人和我一 ...
分类:
Web程序 时间:
2020-06-13 10:36:48
阅读次数:
239
如果我们频繁地在慢查询日志中发现某个语句执行缓慢,且在表结构、索引结构、统计信息中都无法找出原因时,则可以利用sys系统库中的撒手锏:sys.session视图结合performance_schema的等待事件来找出症结所在。那么session视图有什么用呢?使用它可以查看当前用户会话的进程列表信息,数据来源于sys.processlist视图(使用该视图可以查询所有前台和后台线程的状态信息,默认
分类:
数据库 时间:
2020-06-13 09:16:51
阅读次数:
135
从一到题学习flask的session安全问题 前言 今天偶然翻看一个学长的博客,发现他记录了一道fakebook的一道题;感觉很有意思;就去看了看。 入题 看到一个登陆框; 下意识尝试admin用户登陆。发现无果。所以随意用户登陆;就拿a a来登陆吧;登陆进去之后如下: 这里我们可以提交东西;我f ...
分类:
其他好文 时间:
2020-06-13 09:13:06
阅读次数:
87
由于http是无状态的协议,这种特性严重阻碍了客户端与服务器进行动态交互,例如购物车程序,客户在购物车中添加了商品,服务器如何知道购物车已有的物品呢?为了支持客户端与服务器之间的交互,为了弥补http的不足,目前实现会话跟踪的常用技术方法:cookie、session、url重写、隐藏input。 ...
分类:
Web程序 时间:
2020-06-13 00:44:11
阅读次数:
79
TensorFlow Tutorial Initialize variables Start your own session Train algorithms Implement a Neural Network 1. Exploring the Tensorflow Library To sta ...
分类:
其他好文 时间:
2020-06-12 20:31:54
阅读次数:
80
@Override@Transactional(propagation = Propagation.REQUIRED,isolation= Isolation.REPEATABLE_READ)public User1 hsq_test_read(Integer id) { User1 user1 = ...
分类:
数据库 时间:
2020-06-11 21:55:52
阅读次数:
127
在 TensorBoard 中观察损失模型的参数,损失值等变量的变化。 一、实现步骤 1.创建事件文件 file_writer = tf.summary.FileWrite('e:/events/test',graph=sess.graph) 2.收集变量 收集对于损失函数和准确率等单值变量使用 t ...
分类:
其他好文 时间:
2020-06-11 21:54:45
阅读次数:
66
Oracle RAC TAF 无缝failover 理论背景: TAF( Transparent Application Failover ) allows oracle clients to reconnect to a surviving instance in the event of a f ...
分类:
数据库 时间:
2020-06-11 21:47:37
阅读次数:
70
以python代码为例: import requests def func(): session = requests.session() url = 'http://IP:8069/web?db=temp' # 指定数据库名称 url2 = 'http://IP:8069/stock_ex/sto ...
分类:
数据库 时间:
2020-06-11 13:47:53
阅读次数:
163
本周学习了php的页面传参,session,cokkie等知识 <!DOCTYPE html><html lang="en" xmlns="http://www.w3.org/1999/html"><head> <meta charset="UTF-8"> <title>管理员界面</title> ...
分类:
其他好文 时间:
2020-06-10 22:44:28
阅读次数:
72