-
Windows防火墙管理-netsh
Friday, June 28, 2024 在 windows
Categories:
Windows防火墙管理-netsh Windows 防火墙管理-netsh 管理工具 netsh advfirewall # 导出防火墙规则 netsh advfirewall export advfirewallpolicy.wfw # 导入防火墙规则 netsh advfirewall import advfirewallpolicy.wfw # 查看防火墙状态 netsh advfirewall show allprofiles state # 查看防火墙默认规则 netsh …
-
Windows相关资源
Friday, June 28, 2024 在 windows
Categories:
Windows相关资源 Windows 资源整理 Windows 资源整理 工具篇 监控&分析 AntiRootkit 工具 PE 工具 逆向&调试 注入工具 网络 压测工具 其他 代码篇 操作系统 内核封装 VT 技术 其他 CTF 资源 渗透相关 专利免费查询 这里只列举了一些 Windows 上调试,排查问题以及测试的一些常用工具,其他的加壳脱壳,加密解密,文件编辑器以及编程工具不进行整理了。 工具篇 监控&分析 工具名 下载地址 说明 DebugView …
-
windows-ipv6管理
Friday, June 28, 2024 在 windows
Categories:
windows-ipv6管理 windows-ipv6 管理 # 查看ipv6地址, 过滤locallink地址, 过滤Loopback地址 Get-NetIPAddress -AddressFamily IPv6 | Where-Object {$_.IPAddress -notlike "fe80*" -and $_.IPAddress -notlike "::1"} | Format-Table -AutoSize # 查看ipv6 …
-
window-message
Friday, June 28, 2024 在 windows
Categories:
window-message windows-message All windows messages as C# enum (github.com) List Of Windows Messages - WineHQ Wiki pinvoke.net: WM (Constants) pinvoke.net: WindowsMessages (Enums) Window Notifications
-
Win-to-go
Friday, June 28, 2024 在 windows
Categories:
=== Windows To Go 的优点在于移动便携性, 缺点在于经典 Windows系统的数个功能受到限制. 前言 Windows To Go Overview Windows To Go 和传统 Windows 安装方式的区别 使用 Windows To Go 来移动工作 准备安装 Windows To Go 硬件要求 USB 硬盘或 U盘 载体机器(Host computer) 检查载体 PC 和 Windows To Go 盘的架构兼容性 Windows To Go …
-
wsl
Friday, June 28, 2024 在 environment
Categories:
配置 wsl 配置 wsl 远程访问 ssh 配置 wsl 远程访问 ssh wsl sudo apt install openssh-server sudo nano /etc/ssh/sshd_config /etc/ssh/sshd_config ...STUFF ABOVE THIS... Port 2222 #AddressFamily any ListenAddress 0.0.0.0 #ListenAddress :: ...STUFF BELOW THIS... windows …
-
简易server-client代码
Friday, June 28, 2024 在 测试工具
Categories:
简易server-client代码 简易 server-client 代码 windows Windows Complete Winsock Client Code Complete Winsock Server Code Linux Linux Socket Programming Simple client/server application in C
-
docker介绍
Friday, June 28, 2024 在 docker
Categories:
docker介绍 docker 介绍 docker 是一个应用容器引擎, 可以打包应用及其依赖包到一个可移植的容器中, 然后发布到任何流行的 Linux 或 Windows 机器上, 也可以实现虚拟化. 为什么会有 docker, 因为开发和运维经常遇到一类问题, 那就是应用在开发人员的环境上运行没有任何问题, 但在实际生产环境中却 bug 百出. 程序的运行从硬件架构到操作系统, 再到应用程序, 这些都是不同的层次, 但是开发人员往往只关注应用程序的开发, 而忽略了其他层次的问题. …