aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/VirusScanner.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-01-08 09:57:10 -0500
committerMichael <[email protected]>2017-01-08 09:57:10 -0500
commitf30dcf5ef41d54c588d7b42c48be8d941abba72e (patch)
tree7705f99b965673b1c034ac2b1c56e65072c827df /ShiftOS.WinForms/Applications/VirusScanner.cs
parent69dfad54724d4176dfce238a8d7e73970e6eef24 (diff)
downloadshiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.tar.gz
shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.tar.bz2
shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.zip
Initial upload
Diffstat (limited to 'ShiftOS.WinForms/Applications/VirusScanner.cs')
-rw-r--r--ShiftOS.WinForms/Applications/VirusScanner.cs181
1 files changed, 181 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/VirusScanner.cs b/ShiftOS.WinForms/Applications/VirusScanner.cs
new file mode 100644
index 0000000..740c1a8
--- /dev/null
+++ b/ShiftOS.WinForms/Applications/VirusScanner.cs
@@ -0,0 +1,181 @@
+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<ServerMessage> runner = new Action<ServerMessage>((msg) =>
+ {
+ if(msg.Name == "virusdb")
+ {
+ VirusDB = JsonConvert.DeserializeObject<Dictionary<string, string>>(msg.Contents);
+ }
+ });
+
+ ServerManager.MessageReceived += (srv) =>
+ {
+ runner?.Invoke(srv);
+ runner = null;
+ };
+
+ ServerManager.SendMessage("getvirusdb", "");
+ }
+
+ Dictionary<string, string> 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<string> infected = new List<string>();
+
+ 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<string> Viruses { get; set; }
+
+ public InfectedFile(string fpath, string[] viruses)
+ {
+ FilePath = fpath;
+ Viruses = new List<string>(viruses);
+ }
+ }
+}