05 2019 档案

IIS Express 使用方法
摘要:配置文件位置: "%userprofile%\My Documents\IISExpress\config\applicationhost.config" 站点配置节: 启动站点(32位): start "Woo!" "C:\Program Files (x86)\IIS Express\iisex 阅读全文

posted @ 2019-05-27 10:44 空明流光 阅读(400) 评论(0) 推荐(0) 编辑

c# 排列组合代码类
摘要:枚举出键盘所有组合键代码: 阅读全文

posted @ 2019-05-25 18:40 空明流光 阅读(253) 评论(0) 推荐(0) 编辑

c# 匿名委托递归
摘要:Func, int> GetVirtualCode = null; // 递归不能直接=,要赋初值。微软得优化啊,这语法糖不够甜 GetVirtualCode = delegate(List args) { if (args.Count == 0) r... 阅读全文

posted @ 2019-05-25 17:54 空明流光 阅读(342) 评论(0) 推荐(0) 编辑

获取哪些键正在被按下
摘要:[DllImport("user32.dll", EntryPoint = "keybd_event")] private static extern void keybd_event( byte bVk, //虚拟键值 byte bScan,// 一般为0 int dwFlags, //这里是整数类... 阅读全文

posted @ 2019-05-25 09:49 空明流光 阅读(114) 评论(0) 推荐(0) 编辑

判断Ctrl Shift Alt 键当前是否被按下
摘要:以此类推 阅读全文

posted @ 2019-05-24 13:07 空明流光 阅读(642) 评论(0) 推荐(0) 编辑

cross appdomain access
摘要:result: 阅读全文

posted @ 2019-05-19 08:25 空明流光 阅读(130) 评论(0) 推荐(0) 编辑

c# 动态加载tlb为程序集
摘要:private enum RegKind { RegKind_Default = 0, RegKind_Register = 1, RegKind_None = 2 } [DllImport("oleaut32.dll", CharSet = CharSet.Unicode,... 阅读全文

posted @ 2019-05-17 10:03 空明流光 阅读(1039) 评论(0) 推荐(0) 编辑

获取当前进程当前runtime加载的appdomain
摘要:using System.Runtime.InteropServices; // Add the following as a COM reference - C:\WINDOWS\Microsoft.NET\Framework\vXXXXXX\mscoree.tlb using mscoree; public sta... 阅读全文

posted @ 2019-05-16 17:23 空明流光 阅读(251) 评论(0) 推荐(0) 编辑

C++ 命名管道示例
摘要:想做一个 Hook CreateFile 重定向到内存的功能,貌似可以假借命名管道实现这个功能。不熟悉命名管道,做了几个demo,如下: Server: Client: Server & Client: 阅读全文

posted @ 2019-05-13 18:37 空明流光 阅读(3372) 评论(0) 推荐(0) 编辑

C#模块初始化注入
摘要:这个功能可以实现很多很有用的功能,比如程序集加密,Hook安装等。英文转载备忘。 原地址:https://www.coengoedegebure.com/module-initializers-in-dotnet/ Creating a module initializer in .NET This 阅读全文

posted @ 2019-05-10 11:02 空明流光 阅读(1217) 评论(0) 推荐(0) 编辑

c++调用c#代码
摘要:此项目加入了Reactor加壳保护,在编译后事件中添加命令: "C:\Program Files (x86)\Eziriz\.NET Reactor\dotNET_Reactor.Console.exe" -file "$(TargetPath)" -targetfile "<AssemblyLoc 阅读全文

posted @ 2019-05-09 15:57 空明流光 阅读(982) 评论(0) 推荐(0) 编辑

.net refactor 命令行
摘要:VS中设置项目的编译后事件命令(此命令会在程序集生成后自动在原位置加密,覆盖原来的程序集): "C:\Program Files (x86)\Eziriz\.NET Reactor\dotNET_Reactor.Console.exe" -file "$(TargetPath)" -targetfi 阅读全文

posted @ 2019-05-09 15:50 空明流光 阅读(309) 评论(0) 推荐(0) 编辑

导航