摘要:github.com
阅读全文
12 2021 档案
摘要:摘录自:windows - How does DCOM authentication compare to RPC based authentication/auth? - Information Security Stack Exchange 正确的答案是: I had similar quest
阅读全文
摘要:服务器调用RpcImpersonateClient以使用客户端安全上下文覆盖服务器线程的安全性。任务完成后,服务器将调用RpcRevertToSelf或RpcRevertToSelfEx来还原为服务器线程定义的安全上下文。 绑定时,客户端可以指定有关安全性的服务质量信息
阅读全文
摘要:Windows RPC编程详解 一、什么是远程过程调用 什么是远程过程调用 RPC(Remote Procedure Call)? 你可能对这个概念有点陌生, 而你可能非常熟悉 NFS, 是的,NFS 就是基于 RPC 的. 为了理解远程过程调用,我们先来看一下过程调用。 所谓过程调用,就是将控制从
阅读全文
摘要:参见:(11条消息) 浅析Windows命名管道Named Pipe_谢公子的博客-CSDN博客_named pipe
阅读全文
摘要:Troubleshooting "The RPC server is unavailable" Table of Contents Introduction The RPC Server The RPC Client RPC Quick Fixes Unable to resolve DNS or
阅读全文
摘要:SMB and Null Sessions: Why Your Pen Test is Probably Wrong IPC$ Share # IPC$ is a special share used to facilitate inter-process communication (IPC).
阅读全文
摘要:网上邻居一直以来都是依赖于SMB1.0,运行computer browser服务。 微软早就替换成了WS-DISCOVERY protocol。由Function Discovery Provider Host" and "Function Discovery Resource Publicatio
阅读全文
摘要:netbios是在PC时代早期,那时候各厂家都生产发明各自的网络,TCP/IP还没成为主流。 苹果有Apple talk, Digital有DECnet,IBM有SNA网络。SNA相对PC是大家伙,于是IBM雇佣了一家叫做Sytec的公司开发了"PC Network". 这个PC network是一
阅读全文
摘要:这里有答案 Can the lifetime be longer than the renewal time? Technically, yes. Logically, the ticket lifetime should not be longer than ticket renewal time
阅读全文
摘要:Kerberos Pre-Authentication: Why It Should Not Be Disabled The Key Distribution Center (KDC) is available as part of the domain controller and perform
阅读全文
摘要:There are 3 Types of Kerberos Delegation: Unconstrained Constrained Resource Based Constrained
阅读全文
摘要:一图胜过所有 嗅探challenge应答可以得到明文challeange并且暴力破解用户密码 NTLMv1 Hash计算 NTLM v2 Hash计算 引用:NTLM Authentication: A Wrap Up · csandker.io
阅读全文
摘要:说到RPC,不得不说下IPC,也就是进程间调用,如何在两个进程之间传输数据的问题。 两个进程可以是独立进程各自互不影响各自有自己的内存空间。 也可是是父子之类的进程。 IPC有如下方式 1.共享内存 2.信号量 3.消息队列 4.pipe-(又分匿名,有名) pipe在windows中被看作文件对象
阅读全文