Skip to main content

Trend Microでのサイト登録方法

以前ウェブ開発を行った客より連絡が来て、日本のウィルスバスターを使用している友人からサイトが「危険なサイト」と出て、見ることが出来ないというという知らせを受けました。

以前McAfeeでマルウェアサイトではないという登録を行ったのですが、今回はウィルスバスターでの対応を載せたいと思います。

まず、ウィルスバスターは日本で名称が変わって販売されておりますが、基本的にはTrend Microの商品になります。どうやらこれはURLフィルタリングという機能のようです。
以前GoogleやYahoo関連も危険なサイトと表示されていたようです。
(現在はどうか分かりませんが。。)

Trend MicroでURL登録をすればオッケ~なんて気軽に考えておりましたが、日本語でググってもなかなか出てきません。ウィルスバスターでの除外URLの設定方法は見つかりましたが、う~ん、これとは違うんだよな~。

やっぱ日本語検索だと思うようにGoogleで引っかからない。。。(と思うのは私だけでしょうか?)


手取り早く、英語で検索かけたところ、早速見つかりました!!
http://reclassify.wrs.trendmicro.com/

このページでサイトチェックボタンをクリックすると、現在どのようにTrend Microで設定されたか確認できます。やはり問題のあったサイトのURLはマルウェアとして表示されました。
サイト内のリンクから飛ぶページに広告などが載っていると、問題のないサイトでもマルウェアとして登録されているようです。

厳しいなぁ、Trend Micro。

対策としてはこのページより、登録内容が間違っているというFeedbackを送っておきました。
何日ぐらいで登録が更新されるのかは不明です。

早く、「危険なサイト」として出ないようになればいいな。

Comments

Popular posts from this blog

How to deploy your PHP and Java file in PHP/JavaBridge

Here I explain how to deploy your PHP and Java file in your PHP/JavaBridge folder. You may need basic knowledge of Linux command, PHP , Java , Tomcat . Please use the link below to go to further reading if necessary. I. How to install Java II. How to install Tomcat III. How to install PHP and CGI IV. How to deploy PHP/JavaBridge V. How to deploy your PHP and Java files V. Deploy your PHP and Java file In this chapter, I will not talk detail about how to create and run Java . If you are curious about how to create PHP that executes Java , check PHP/JavaBridge site. 1. Create Java Hello World 1.1. Open eclipse and create Java Project . 1.2. Create HelloWorld.java file under the project. import javax.swing.JOptionPane; public class HelloWorld {     public static final String JAVABRIDGE_PORT="8080";     static final php.java.bridge.JavaBridgeRunner runner = php.java.bridge.JavaBridgeRunner.getInstance(JAVABRIDGE_PORT);     public stat...

How to install PHP/JavaBridge on Mac 

Looking for how to execute Java from PHP or vice versa? By using PHP/JavaBridge , it is possible! Here I write the instraction of how to set up PHP/JavaBridge on your Mac . You may need basic knowledge of Linux command, PHP , Java , Tomcat . Please read following links. I. How to install Java II. How to install Tomcat III. How to install PHP and CGI IV. How to deploy PHP/JavaBridge V. How to deploy your PHP and Java files If you have any suggestion and question, especially technically and grammatically, please feel free to leave your comment. Thank you for your visit😊

How to install Java on your Mac 

Here I explain about how to install Java on your . You may need basic knowledge of Linux command, PHP , Java , Tomcat . Please use the link below to go to further reading if necessary. I. How to install Java II. How to install Tomcat III. How to install PHP and CGI IV. How to deploy PHP/JavaBridge V. How to deploy your PHP and Java files I. How to install Java 1. Download JDK Install most up-to-date JDK from Oracle site . Click downloaded dmg file and follow the guidance. Please follow the step explain this site if you have problem following the instruction. 2. Set up JAVA_HOME 2.1. Open Terminal and enter the following command. vim ~/.bash_profile 2.2. Enter  i  to change to insert mode. 2.3. Add JAVA_HOME as follow. export JAVA_HOME=/Library/Java/JavaVirtualMachines/{your JDK folder}/Contents/Home 2.4. Press esc button and enter  :wq  to save and quit the .bash_profile . 2.5. Enter the command below to update bash source .bash_p...