What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] WLM Virus scanner/remover

[Request] WLM Virus scanner/remover
Author: Message:
riahc4
Veteran Member
*****


Posts: 1073
Reputation: -18
– / Male / Flag
Joined: Aug 2004
Status: Away
O.P. RE: [Request] WLM Virus scanner/remover
quote:
Originally posted by scott2010_h
Dane started something like that, but I'm not sure if he has kept it up to date.

PlusOne Security Alert Service
Doesnt look too updated...I wonder if someone could recode it/update it.

code:
////////////////////////////////////////////////////////////////////////////
///                                                                ///
///                        PlusOne Alert Service                         ///
///                         BY DANE AND DEMPSEY                         ///
////////////////////////////////////////////////////////////////////////////

var sScriptName = "PlusOne Alert Service Beta";
var sVer = "0.4c";
var sAlertMsg = "A vulnerability has been discovered!\n\nClick For Info";
var sAlertMsg0 = "No New Security Threats!";
var sAlertMsg1 = "A new virus has been discovered!\n\nClick for Info";
var sAlertMsg2 = "Update Available!\nClick for Important Information!";
var sCheckURL = "http://www.exoendo.net/security/V1b04c/Alert.txt";
var sAlertURL = "http://www.exoendo.net/security/transfer.php?id=SecAlertSvc01";
var sUpdateURL = "http://www.exoendo.net/security/update.php?version=" + sVer;

function OnEvent_Initialize(MessengerStart)
{
    Debug.Trace("Startup Check Called!");
    DoCheck();
}

function DoCheck()
{
    Debug.Trace("Getting Data");
    var bDl = MsgPlus.DownloadFile(sCheckURL);
}

function OnEvent_DownloadFileComplete(Url, OutFile, Success)
{
    if(Success)
    {
        Debug.Trace("Successfully Downloaded!");
        var FSO = new ActiveXObject("Scripting.FileSystemObject");
        var File = FSO.OpenTextFile(OutFile, 1);
          var sData = File.ReadAll();
          File.Close();
        FSO.DeleteFile(OutFile);
        if (sData == 0)
        {
            MsgPlus.DisplayToast(sScriptName, sAlertMsg0, "", "");
            Debug.Trace("Return Data 0");
        }
        if (sData == 1)
        {
            MsgPlus.DisplayToast(sScriptName, sAlertMsg, "", "ToastClick");
            Debug.Trace("Return Data 1");
        }
        if (sData == 2)
        {
            MsgPlus.DisplayToast(sScriptName, sAlertMsg1, "", "ToastClick");
            Debug.Trace("Return Data 2");
        }
        if (sData == 3)
        {
            MsgPlus.DisplayToast(sScriptName, sAlertMsg2, "", "ToastClick2");
            Debug.Trace("Return Data 3");
        }
    }
}

MsgPlus.AddTimer("Recheck", 28800000);

function OnEvent_Timer(id){
if(id == "Recheck"){
Debug.Trace("Recheck Complete");
MsgPlus.AddTimer("Recheck", 28800000);
DoCheck();
}

}

function ToastClick()
{
    Debug.Trace("ToastClick");
    new ActiveXObject("wscript.shell").run(sAlertURL);
}
function ToastClick2()
{
    Debug.Trace("UpdateToast Click");
    new ActiveXObject("wscript.shell").run(sUpdateURL);
}

01-21-2008 10:29 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Request] WLM Virus scanner/remover - by riahc4 on 01-21-2008 at 09:29 PM
RE: [Request] WLM Virus scanner/remover - by scott2010_h on 01-21-2008 at 09:39 PM
RE: [Request] WLM Virus scanner/remover - by riahc4 on 01-21-2008 at 10:29 PM
RE: [Request] WLM Virus scanner/remover - by Dane on 01-21-2008 at 11:00 PM
RE: [Request] WLM Virus scanner/remover - by riahc4 on 01-22-2008 at 11:58 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On