惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
Help Net Security
Help Net Security
P
Proofpoint News Feed
J
Java Code Geeks
爱范儿
爱范儿
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Full Disclosure
Google DeepMind News
Google DeepMind News
H
Help Net Security
G
Google Developers Blog
Jina AI
Jina AI
Vercel News
Vercel News
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
Lohrmann on Cybersecurity
S
Schneier on Security
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Security Archives - TechRepublic
Security Archives - TechRepublic
阮一峰的网络日志
阮一峰的网络日志
N
News and Events Feed by Topic
GbyAI
GbyAI
B
Blog
O
OpenAI News
博客园_首页
Cisco Talos Blog
Cisco Talos Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News: Ask HN
Hacker News: Ask HN
TaoSecurity Blog
TaoSecurity Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
C
Cybersecurity and Infrastructure Security Agency CISA
Cyberwarzone
Cyberwarzone
Webroot Blog
Webroot Blog
Simon Willison's Weblog
Simon Willison's Weblog
Y
Y Combinator Blog
C
Cisco Blogs
A
Arctic Wolf
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
AI
AI
W
WeLiveSecurity
aimingoo的专栏
aimingoo的专栏
The Register - Security
The Register - Security
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale

博客园 - Frodo

北京骗子花样——母婴篇 MSN的弹出页面里面也有病毒,当心 makefile学习笔记 Base-from-Member 惯用法(转) boost.asio库学习笔记—— receive和read的区别: 手动安装boost库 http://www.taobao.com Sample OpenVPN 2.0 config file 配置文件的简单翻译 - Frodo 奥运节目主持人爆笑口误 转——让IRIS嗅探器可以在Win2003 SP1上运行 转 —— http cookie HTTP Cookies 扫盲 在多个进程间共享内核对象时的安全性 进程间数据通讯要注意的问题 不要混合使用运行时库的静态版本和动态版本!!!! Linux下面如何进行C语言编程技术教程 linux command 如何关闭 FlashGet 右侧的网页 老陈学 C++ 序列之二: 友元函数
最简单的办法,不用安装任何软件,就屏蔽ClickEye(点睛广告)
Frodo · 2007-12-07 · via 博客园 - Frodo

现在有部分网站的网页里添加了“ClickEye”的广告,其实就是在网页里添加了个脚本程序(“http://www***.clickeye.cn/common/clickeye.js”)。当你在网页上看到有虚线,鼠标放上去时弹出clickeye的广告,这个就是“ClickEye”广告了,由于查看网页时要加载这个脚本并分析下载广告要花时间,所以一般会感觉到打开网页变慢等现象,非常讨厌!

解决方法:
  原理就是屏蔽掉www***.clickeye.cn这个地址。采用的方法为修改host文件(还有可以修改防火墙等等其他办法)。这里采用最简单的办法,不用安装任何软件。
1,右键点击网页,选择查看源文件
2,按Ctrl+F键,也就是查找,输入clickeye.cn
3,找到www***.clickeye.cn(***可能会随着不同的网站不同,这也就是上面要查找的原因。例如在msn的

http://msn.ynet.com/就是www230.clickeye.cn)
4,用notepad打开C:\WINDOWS\system32\drivers\etc\host文件,注意host文件没有扩展名。将上面找到的“127.0.0.1    www***.clickeye.cn  ”,
加入host文件新的一行中,注意没有引号(在我屏蔽http://msn.ynet.com/上面的点睛广告时就是‘127.0.0.1 www230.clickeye.cn ’)。

如果你以前没有修改过,那么现在的host文件应该是下面这样的。

# Copyright (c) 1993-1999 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

127.0.0.1       localhost
127.0.0.1       www230.clickeye.cn


总结:遇到其它一些类似ClickEye(点睛广告)的流氓脚本程序或插件,我们也可用上述方式解决。