/* * MIT License * * Copyright (c) 2017 Michael VanOverbeek and ShiftOS devs * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; using Newtonsoft.Json; using ShiftOS.Engine; using ShiftOS.Objects; using static ShiftOS.Objects.ShiftFS.Utils; namespace ShiftOS.WinForms.Applications { [Launcher("Virus Scanner", true, "al_virus_scanner")] [RequiresUpgrade("virus_scanner")] [WinOpen("virus_scanner")] public partial class VirusScanner : UserControl, IShiftOSWindow { public VirusScanner() { InitializeComponent(); Action runner = new Action((msg) => { if(msg.Name == "virusdb") { VirusDB = JsonConvert.DeserializeObject>(msg.Contents); } }); ServerManager.MessageReceived += (srv) => { runner?.Invoke(srv); runner = null; }; ServerManager.SendMessage("getvirusdb", ""); } Dictionary VirusDB = null; private void btnfullscan_Click(object sender, EventArgs e) { lblabout.Hide(); lbviruses.Hide(); rtbterm.Show(); rtbterm.Focus(); rtbterm.Text = ""; var t = new Thread(new ThreadStart(() => { ScanFolder("0:"); })); t.IsBackground = true; t.Start(); } public List infected = new List(); public void ScanFolder(string path) { this.Invoke(new Action(() => { lblresults.Hide(); })); foreach (var file in GetFiles(path)) { Console.WriteLine(file + " is now being scanned."); string contents = ReadAllText(file); foreach(var kv in VirusDB) { if(kv.Value == contents) { if(kv.Key.EndsWith(".0") || kv.Key.EndsWith(".1")) { infected.Add(file); Console.WriteLine($"{file} - Virus detected: {kv.Key}"); this.Invoke(new Action(() => { AddVirusToList(kv.Key); })); } } } } foreach(var dir in GetDirectories(path)) { if (dir != null) { ScanFolder(dir); } } } public void AddVirusToList(string type) { lblresults.Hide(); lbviruses.Show(); btnremoveviruses.Show(); lbviruses.Items.Add(type); } private void VirusScanner_Load(object sender, EventArgs e) { Applications.Terminal.MakeWidget(rtbterm); rtbterm.Hide(); } private void btnhomescan_Click(object sender, EventArgs e) { lblabout.Hide(); rtbterm.Show(); rtbterm.Focus(); rtbterm.Text = ""; var t = new Thread(new ThreadStart(() => { ScanFolder(Paths.GetPath("home")); })); t.IsBackground = true; t.Start(); } private void btnsysscan_Click(object sender, EventArgs e) { lblabout.Hide(); rtbterm.Show(); rtbterm.Focus(); rtbterm.Text = ""; var t = new Thread(new ThreadStart(() => { ScanFolder(Paths.GetPath("system")); })); t.IsBackground = true; t.Start(); } private void btnremoveviruses_Click(object sender, EventArgs e) { while(infected.Count > 0) { Delete(infected[0]); infected.RemoveAt(0); } lbviruses.Items.Clear(); } public void OnLoad() { } public void OnSkinLoad() { } public bool OnUnload() { return true; } public void OnUpgrade() { } } public class InfectedFile { public string FilePath { get; set; } public List Viruses { get; set; } public InfectedFile(string fpath, string[] viruses) { FilePath = fpath; Viruses = new List(viruses); } } }