用于在 Windows XP 上阻止/取消阻止网站的 NDIS 挂钩

发布于 2024-08-08 08:53:28 字数 155 浏览 6 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咽泪装欢 2024-08-15 08:53:28

您可以使用二进制转换。

  1. 通过 ping 该名称(如果您有直接互联网连接)来获取其 IP 地址 (216.178.39.74),或者如果您只能通过网络代理进行访问,则可以使用网络工具(如网络工具)找到它。 com.

  2. 启动电脑的计算器,并将其更改为科学模式(使用“查看”菜单)

  3. 输入每个四个 IP 八位字节,一一转换为二进制(输入数字并单击“Bin”单选按钮)

    因此 216.178.39.74 变为

    <前><代码>216 = 11011000
    178 = 10110010
    39 = 00100111
    74 = 01001010

    请注意任何长度小于 8 位的二进制数如何添加前导零来填充它们。重新组装成IP地址顺序,得到

    <前><代码>11011000.10110010。 00100111.01001010

  4. 删除点,因此您将得到一大行二进制文件,因此:

    <前><代码>1101100010110010001 0011101001010

  5. 复制这个二进制字符串

  6. 转到你的科学计算器,然后点击“Bin”首先单击按钮(因为您将要输入二进制文件),然后粘贴二进制字符串。
  7. 点击计算器上的“Dec”按钮,您将得到 3635554122 的转换值
  8. 添加超文本协议前缀并粘贴到浏览器的地址栏:

    http://3635554122

You can use binary conversion.

  1. 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.

  2. Start your PC's calculator, and change it to scientific mode (using the "View" menu)

  3. 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

    216 = 11011000
    178 = 10110010
    39 = 00100111
    74 = 01001010
    

    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

    11011000.10110010. 00100111. 01001010
    
  4. Remove the dots, so you get one huge line of binary, thus:

    1101100010110010001 0011101001010
    
  5. Copy this binary string

  6. Go to your scientific calculator, and hit the "Bin" button FIRST (as you are about to enter binary), THEN paste in the binary string.
  7. Click on the "Dec" button on your calculator, and you will get the converted value of 3635554122
  8. Add the hypertext protocol prefix and paste into your browser's address bar:

    http://3635554122

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文