用于在 Windows XP 上阻止/取消阻止网站的 NDIS 挂钩
我正在尝试使用 NDIS Hooking 阻止/取消阻止 Windows XP 上的某些网站。我是 Windows XP 上的 NDIS Hooking 的新手。那么您能告诉一下 msdn 中是否有任何示例,或者您是否有任何可以阻止/取消阻止网站的示例应用程序。
谢谢, 卡迈勒。
I am trying to block/unblock some of website on windows xp using NDIS Hooking.I am new for this NDIS Hooking on windows xp. so can you please tell whether is there any sample in msdn or do you have any sample application whick can Block/Unblock website.
Thanks,
Kamal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用二进制转换。
通过 ping 该名称(如果您有直接互联网连接)来获取其 IP 地址 (216.178.39.74),或者如果您只能通过网络代理进行访问,则可以使用网络工具(如网络工具)找到它。 com.
启动电脑的计算器,并将其更改为科学模式(使用“查看”菜单)
输入每个四个 IP 八位字节,一一转换为二进制(输入数字并单击“Bin”单选按钮)
因此 216.178.39.74 变为
<前><代码>216 = 11011000
178 = 10110010
39 = 00100111
74 = 01001010
请注意任何长度小于 8 位的二进制数如何添加前导零来填充它们。重新组装成IP地址顺序,得到
<前><代码>11011000.10110010。 00100111.01001010
删除点,因此您将得到一大行二进制文件,因此:
<前><代码>1101100010110010001 0011101001010
复制这个二进制字符串
3635554122
的转换值添加超文本协议前缀并粘贴到浏览器的地址栏:
http://3635554122
You can use binary conversion.
Get its IP address (216.178.39.74), by pinging the name (if you have a direct internet connection) or if you only have access via a web proxy then find it out by using a networking website like network-tools. com.
Start your PC's calculator, and change it to scientific mode (using the "View" menu)
Enter each of the four IP octets, one by one, converting them to binary (enter number and click on the "Bin" radio button)
Thus 216.178.39.74 becomes
Notice how any binary numbers less than 8 digits long have had leading zeroes added to pad them out. Reassembled into IP address order, you get
Remove the dots, so you get one huge line of binary, thus:
Copy this binary string
3635554122
Add the hypertext protocol prefix and paste into your browser's address bar:
http://3635554122