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. [Request] WLM Virus scanner/remover
Im pretty sick of these automessages that arrive about "Pictures of me in vacation!" and a hyperlink and/or a file transfer starts up. Maybe a script can be written to both block these and/or remove them if a user has them.

Maybe a link to remove the virus itself....
01-21-2008 09:29 PM
Profile PM Find Quote Report
scott2010_h
Full Member
***

Avatar

Posts: 187
Reputation: 10
32 / Male / Flag
Joined: Dec 2005
Status: Away
RE: [Request] WLM Virus scanner/remover
Dane started something like that, but I'm not sure if he has kept it up to date.

PlusOne Security Alert Service
01-21-2008 09:39 PM
Profile E-Mail PM Web Find Quote Report
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
Dane
Non-Elite Member
*****

Avatar
Dont ask to ask, just ASK!

Posts: 1621
Reputation: 52
35 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Request] WLM Virus scanner/remover
Hello,

Indeed.  I have not updated the script in a very long time, as usage statistics were showing it wasnt being downloaded/used and I had higher priority things.  However, I will take a look at it again, perhaps adding some detection/removal features.

Thanks!
01-21-2008 11:00 PM
Profile PM Web Find Quote Report
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 Dane
Hello,

Indeed.  I have not updated the script in a very long time, as usage statistics were showing it wasnt being downloaded/used and I had higher priority things.  However, I will take a look at it again, perhaps adding some detection/removal features.

Thanks!
Thanks Dane! :) It was sad to see that the thread made for the script had 0 replies when this is much more important in the Messenger community than say Hopper (not saying Hopper is crap or anything; Just that this script helps rather than entertain.)
01-22-2008 11:58 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »


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