首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏李珣

    Exchange 2010 重定向OWA访问后会话超时解决办法

    3、ctrl+f查找httponly.发现requireSSL属性为true,问题找到了。 4、修改httpCookies = "false" requireSSL = "true" domain = "",将requireSSL = "true"修改为"false" 5、重启IIS,登录OWA

    1K40发布于 2019-03-14
  • 来自专栏学习记录的专栏

    Acunetix扫描安全漏洞的记录

    3、未设置安全标志的 Cookie解决方案:在web.config配置 <httpCookiesrequireSSL="true"/>,添加在<system.web>节点里面<httpCookies requireSSL ="true" /><authentication mode="Forms"> <forms requireSSL="true" ..... /></authentication>如果节点下面有authentication 节点还需要在 表单forms里面配置requireSSL="true"。

    1.4K30编辑于 2022-06-28
  • 来自专栏爱可生开源社区

    分布式 | 如何与 DBLE 进行“秘密通话”

    requireSSL=false&useSSL=true&verifyServerCerti REQUIRED MySQL client:mysql -uroot -proot --ssl-mode=REQUIREDJDBC requireSSL=true&useSSL=true&verifyServ VERIFY_CA 单向认证(客户端会认证服务端的身份) MySQL client:mysql -uroot -proot requireSSL=true&useSSL=true&verifyServerCertificate=true&trustCertificateKeyStoreUrl=file:${自签名CA的JKS requireSSL=true&useSSL=true&verifyServerCertificate=true&trustCertificateKeyStoreUrl=file:${自签名CA证书的JKS useSSL=true&requireSSL=true&verifyServerCertificate=false"; 然后再次抓包并执行 Demo 进行查询,解析数据包并过滤得到: 图片 可以发现在建立

    1.1K20编辑于 2022-06-24
  • 来自专栏张善友的专栏

    WCF服务中操作FormsAuthentication的Cookie

    authCookie.Path = FormsAuthentication.FormsCookiePath;                authCookie.Secure = FormsAuthentication.RequireSSL

    87350发布于 2018-01-19
  • 来自专栏技术博客

    MVC项目开发中那些用到的知识点(登录权限认证)

    Forms">       <forms loginUrl="~/Account/Login" protection="All" timeout="30" name=".ASPXAUTH" path="/" requireSSL

    79030发布于 2018-09-11
  • 来自专栏软件工程师Michael

    .NET 6 + Hangfire 实现后台作业管理

    Authorization = new[] {new BasicAuthAuthorizationFilter(new BasicAuthAuthorizationFilterOptions { RequireSsl

    2.2K10编辑于 2022-12-10
  • 来自专栏全栈程序员必看

    C# AntiForgeryToken防XSRF漏洞攻击

    HttpOnly = true }; // Note: don't use "newCookie.Secure = _config.RequireSSL if (_config.RequireSSL) { newCookie.Secure = true; }

    1.8K10编辑于 2022-08-31
  • 来自专栏问问计算机

    AppScan扫描常见问题解决方法

    加密会话(SSL)Cookie中缺少Secure属性 给cookie添加secure属性: 在ASP.NET的项目中在Web.config中添加如下配置: <httpCookies requireSSL

    5.5K20发布于 2021-05-08
  • 来自专栏CSDN

    Mysql开启ssl加密协议及Java客户端配置操作指南

    &characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&verifyServerCertificate=true&requireSSL

    95911编辑于 2024-03-29
  • 来自专栏飞鸟的专栏

    MongoDB的安全和权限控制(一)

    以下是一个启用TLS/SSL的示例:net: ssl: mode: requireSSL PEMKeyFile: /path/to/keyfile在上面的示例中,我们启用了TLS/SSL,

    71240编辑于 2023-05-09
  • 来自专栏全栈程序员必看

    springboot 配置mybatis通用mapper

    characterEncoding=utf-8&verifyServerCertificate=false&useSSL=false&requireSSL=false driver-class-name

    96920编辑于 2022-09-12
  • 来自专栏明志德到的IT笔记

    NetCore 中 后台任务利器之Hangfire 的使用

    BasicAuthAuthorizationFilterOptions(){ SslRedirect=false, RequireSsl

    5.3K10编辑于 2023-10-21
  • 【 Java 应用程序在连接 MySQL 数据库时遇到了 SSL 相关的警告和异常】

    useSSL=true&requireSSL=true&verifyServerCertificate=true& clientCertificateKeyStoreUrl=file:/path/to/

    39210编辑于 2025-08-29
  • 来自专栏玖叁叁

    MongoDB安全和权限

    将证书复制到服务器上,然后将以下行添加到MongoDB配置文件中:net: ssl: mode: requireSSL PEMKeyFile: /path/to/mongodb-cert.key

    1.1K10编辑于 2023-04-14
  • 来自专栏.Net Core技术分享

    asp.net Forms身份验证详解

    ="URL" protection="[All|None|Encryption|Validation]" timeout="[MM]" path="path" requireSSL requireSSL:指定是否需要 SSL 连接来传输身份验证 Cookie。默认值为 False。 slidingExpiration:指定是否启用可调过期时间。

    2.7K10发布于 2019-09-25
  • 来自专栏程序随笔

    ASP.NET底层封装HttpModule实例---FormsAuthentication类的分析

    cookie.Value = cookieValue; cookie.Secure = FormsAuthentication.RequireSSL

    68810编辑于 2023-10-18
  • 来自专栏圣杰的专栏

    Asp.net mvc 知多少(八)

    mode="Forms"> <forms loginUrl="Login.aspx" protection="All" timeout="30" name=".ASPXAUTH" path="/" requireSSL

    1.9K90发布于 2018-01-11
  • 来自专栏轩辕镜像

    基于 Docker 的 MongoDB 部署与使用指南

    bind_ip_all","--keyFile","/etc/mongo-keyfile/keyfile",#挂载keyfile"--authorization","enabled",#启用认证"--sslMode","requireSSL ","--bind_ip_all","--keyFile","/etc/mongo-keyfile/keyfile","--authorization","enabled","--sslMode","requireSSL ","--bind_ip_all","--keyFile","/etc/mongo-keyfile/keyfile","--authorization","enabled","--sslMode","requireSSL

    62511编辑于 2026-01-07
  • 来自专栏技术小讲堂

    ASP.NET AJAX(10)__Authentication ServiceAuthentication ServiceAuthentication Service属性Authentication

    出于安全性的考虑,ASP.NET AJAX 在默认情况下不会开发Authentication Service功能 <authenticationService enabled="true|false" requireSSL

    2.1K90发布于 2018-03-07
  • 来自专栏MongoDB中文社区

    MongoDB安全权威指南

    2.2.4 如何用TLS/SSL配置mongod和mongos 要在MongoDB部署中使用TLS/SSL,请在mongod和mongos中包含以下配置选项: net.ssl模式设置为requireSSL

    1.3K20发布于 2019-05-24
领券