首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏黑白天安全团队

    利用Domain Borrowing对抗流量检测设备

    背景 Domain Borrowing是腾讯安全玄武实验室的安全研究员 Tianze Ding 和 Junyu Zhou 在Black Hat Asia 2021演讲中分享介绍的一种使用 CDN 隐藏 其中利用Domain Borrowing对抗可以为基于黑名单和威胁情报。 2.对于蓝队来说,一般都为拿捕捉到的域名/IP去查微步等等这些威胁情报来判断是不是恶意的域名,然后进行封闭和溯源操作。 但是在微步中存在一些官方标记为白名单的域名,对于这样利用Domain Borrowing劫持一些官方标记为白名单的域名用来对抗威胁情报和防止溯源操作。 常用的流量隐藏方法都有什么不足? 目前利用Domain Borrowing即可以,通过Domain Borrowing技术我们搭建一套没有什么缺点流量的C2,下面以上面样本“借助码云,仿冒微软,回连某电视台网站的RT样本分析”中的post.i.api

    90920编辑于 2023-09-20
  • 来自专栏摸鱼范式

    《数字集成电路静态时序分析基础》笔记⑪

    latch可以在opening edge以后变化,这种情况类似于向后借时间了,所以称之为Time borrowing。 ? 一个time borrowing的例子,数据可以在建立时间之前到达(DIN),也可以在边沿以后到来(delay),翻转到边沿的时间称为time borrowing,进一步下一个周期的时间余量就会变小 ? 之后到来,那么就会产生时序违例,因为就算使用time borrowing也无法让数据正确采样。 捕获路径,使用time borrowing,借了1.81ns ? 下面分析发生time borrowing时ULAT1到DFF1的时序,首先发射路径,注意,类似半周期路径,clock CLK‘ incr为5 ? 捕获路径,时序满足 ?

    1.4K10发布于 2020-06-24
  • 来自专栏天罡gg

    7.21 SpringBoot项目实战【图书借阅】并发最佳实践:细粒度Key锁、数据库乐观锁、synchronized、ReentrantLock

    向book_borrowing表插入一条【待审核】借阅记录 // 4. 向book_borrowing表插入一条【待审核】借阅记录 // 4. 向book_borrowing表插入一条【待审核】借阅记录 // 4. 向book_borrowing表插入一条【待审核】借阅记录 // 4. 向book_borrowing表插入一条【待审核】借阅记录 // 4.

    56320编辑于 2023-10-24
  • 来自专栏Ethereum

    《纸上谈兵·solidity》第 42 课:DeFi 实战(6) -- 跨资产借贷与多市场支持

    1500 ether); assertEq(usdcToken.balanceOf(user1), 1500 ether); } /** * @notice Test borrowing beyond collateral limits reverts * @dev Verifies that borrowing beyond collateral limits fails as lending.userBorrows(address(usdcToken), user2), 2000 ether); } /** * @notice Test sequential borrowing with limit enforcement * @dev Verifies that second borrow attempt respects cumulative borrowing lending.deposit(address(fake), 100 ether); vm.stopPrank(); } /** * @notice Test borrowing

    27910编辑于 2025-10-01
  • 来自专栏Rust 编程

    Rust Concept Clarification: Deref vs AsRef vs Borrow vs Cow

    For example, Add trait corresponds to +, while Deref trait corresponds to a shared(immutable) borrowing is also the DerefMut trait, which corresponds to the dereferencing operation of exclusive(mutable) borrowing the Rust ownership semantics is a language feature throughout , the semantics of Owner / immutable borrowing (&T)/ mutable borrowing(&mut T) all appear together. std[5]::convert[6]::AsRef[7] . The main reason for putting it in the borrow module is to use borrowing as much as possible and avoid

    1.4K60发布于 2021-07-14
  • 来自专栏磐创AI技术团队的专栏

    BERT文本摘要

    Williams, one of the Fed’s three key leaders, spoke in New York two days after the Fed slashed borrowing European Central Bank — which already have interest rates set below zero — have yet to further cut borrowing 集束搜索中长度惩罚的alpha值(值越大,惩罚越大) min_length,摘要的最小标记数 max_length,摘要的最大标记数 BERT_Sum_Abs完成后,我们获得以下摘要: The Fed slashed borrowing The Bank of Japan and European Central Bank have yet to further cut borrowing costs, but they have pledged

    1.8K30发布于 2020-07-28
  • 来自专栏面向加薪学习

    19.Rust-借用

    Rust 中,Borrowing(借用),就是一个函数中的变量传递给另外一个函数作为参数暂时使用。也会要求函数参数离开自己作用域的时候将所有权 还给当初传递给它的变量(好借好还,再借不难嘛!)。 语言微服务架构核心22讲", "从0到Go语言微服务架构师"]调用后,studyList3:["第一阶段学习已完成", "Go语言微服务架构核心22讲", "从0到Go语言微服务架构师"]如果我们要在Borrowing

    48230编辑于 2022-09-04
  • 来自专栏石头岛

    rust-所有权

    所有权以及相关功能:借用(borrowing)、slice 以及 Rust 如何在内存中布局数据。 所有程序都必须管理其运行时使用计算机内存的方式。 4.引用和借用 reference & borrowing 借用(borrowing) 借用就是字面意思,借来的数据,你并不拥有它。

    52620编辑于 2023-10-20
  • 来自专栏繁依Fanyi 的专栏

    【Rust 基础篇】Rust 所有权详解

    借用(Borrowing) 除了移动和克隆操作外,Rust还提供了一种借用值的方式,称为借用(borrowing)。借用允许我们暂时地借用值的引用,而不获取其所有权。

    70240编辑于 2023-10-12
  • 来自专栏程序员

    rust中的reborrow和NLL

    update_twice(x: &mut int) { update(x); update(x); } In fact, thanks to auto-borrowing i32) { *x += 1; } fn update_twice(x: &mut i32) { update(x); update(x); } 实际上,由于 "auto-borrowing

    73830编辑于 2023-09-06
  • 来自专栏架构师进阶

    Spring Boot集成Spring Data Jpa

    this pool at the same time. spring.datasource.tomcat.max-active=50 # Validate the connection before borrowing

    2.5K30发布于 2019-08-08
  • 来自专栏Rust语言学习交流

    【Rust日报】2023-11-13 异步 Rust 中的模拟测试

    视频内容概要: 介绍(Intro) 内存管理(Memory Management) 所有权(Ownership) 借用(Borrowing) 生命周期(Lifetimes) 油管视频 https://www.youtube.com

    40630编辑于 2023-11-15
  • 来自专栏Linux内核及编程语言底层相关技术研究

    用rust写了个小程序

    为了自动管理内存且不要gc的方式,设计了 ownership/borrowing/lifetime 机制,思路本身很好,但现实是使用起来太过复杂。

    2K30发布于 2019-06-02
  • 来自专栏C++ 动态新闻推送

    C++ 动态新闻推送 第31期

    Banshees and Digital Demons 讨论了各种各样新方案以及相关的abi-break问题,ABI-break这个问题必须要面对了,标准委员会还在拖 感觉未来要做ABI-break支持的准备的了 Borrowing Trouble: The Difficulties Of A C++ Borrow-Checker 直接看结论吧 We attempted to represent ownership and borrowing

    55910发布于 2021-09-26
  • 来自专栏kayden

    隐匿攻击方法

    Fronting 参见:一文搞明白域前置(Domain Fronting)技术 https://fishpond.blog.csdn.net/article/details/118413649 2、Domain Borrowing 参见:一文搞明白 Domain Borrowing https://fishpond.blog.csdn.net/article/details/118413359 3、Tor Fronting 参见

    1.4K20编辑于 2022-09-29
  • 来自专栏前端达人

    2024编程新趋势:JavaScript高手的秘密武器

    理解和应用所有权、借用(borrowing)和生命周期(lifetimes)的概念是学习Rust的关键。 引用(references)和借用(borrowing)的概念。 在Rust中,为了解决单一所有权可能带来的挑战,引入了引用(references)和借用(borrowing)的概念。 不可变借用(immutable borrowing)允许你读取数据,但不能修改它;而可变借用(mutable borrowing)则允许你改变数据。

    44210编辑于 2024-01-03
  • 来自专栏FreeBuf

    Digital-Signature-Hijack:一款针对数字签名劫持的PowerShell脚本

    v=wxmxxgL6Nz8 5、https://blog.conscioushacker.io/index.php/2017/09/27/borrowing-microsoft-code-signing-certificates

    1.1K20发布于 2020-07-22
  • 来自专栏CSDN技术头条

    用Rust解决C语言的隐患

    本质上来说,这些引用(references)还是那些老指针,但有了生命周期(Lifetimes)和借贷(Borrowing)规则,系统就能确保代码的安全性。 在Rust中 变量有一个所有权(Ownership)属性,owner有权随意调用所属的数据,也可以在有限的lifetime内借出数据(即Borrowing)。

    2.4K50发布于 2018-02-12
  • 来自专栏黄腾霄的博客

    2020-1-8-如何正确的在tooltip中实现绑定

    Binding.ElementName Property (System.Windows.Data) - Microsoft Docs ElementName Binding In ToolTips (Borrowing

    2.3K20发布于 2020-06-10
  • 来自专栏chenssy

    【追光者系列】HikariCP源码分析之evict、时钟回拨、连接创建生命周期

    com.zaxxer.hikari.util.ConcurrentBag /** * The method is used to make an item in the bag "unavailable" for * borrowing Items that are not removed * from the bag can be make available for borrowing again by calling com.zaxxer.hikari.util.ConcurrentBag的reserve对方进行保留 /** * The method is used to make an item in the bag "unavailable" for * borrowing Items that are not removed * from the bag can be make available for borrowing again by calling

    3.1K41发布于 2018-07-24
领券