From cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0 Mon Sep 17 00:00:00 2001 From: FloppyDiskDrive Date: Thu, 21 Sep 2017 17:16:49 -0500 Subject: Added the SOS code (VB and C#) Very, very incomplete (C# isn't *remotely* complete.) --- ShiftOS.Main/NewHijack.Designer.cs | 104 +++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 ShiftOS.Main/NewHijack.Designer.cs (limited to 'ShiftOS.Main/NewHijack.Designer.cs') diff --git a/ShiftOS.Main/NewHijack.Designer.cs b/ShiftOS.Main/NewHijack.Designer.cs new file mode 100644 index 0000000..25dda8b --- /dev/null +++ b/ShiftOS.Main/NewHijack.Designer.cs @@ -0,0 +1,104 @@ +namespace HijackScreen +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.lblHijack = new System.Windows.Forms.Label(); + this.conversationTimer = new System.Windows.Forms.Timer(this.components); + this.textGen = new System.Windows.Forms.Timer(this.components); + this.lblhackwords = new System.Windows.Forms.Label(); + this.tmrHackFX = new System.Windows.Forms.Timer(this.components); + this.BackgroundWorker1 = new System.ComponentModel.BackgroundWorker(); + this.SuspendLayout(); + // + // lblHijack + // + this.lblHijack.Anchor = System.Windows.Forms.AnchorStyles.None; + this.lblHijack.AutoSize = true; + this.lblHijack.BackColor = System.Drawing.Color.WhiteSmoke; + this.lblHijack.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblHijack.Location = new System.Drawing.Point(151, 173); + this.lblHijack.Name = "lblHijack"; + this.lblHijack.Size = new System.Drawing.Size(18, 25); + this.lblHijack.TabIndex = 2; + this.lblHijack.Text = "\\"; + // + // conversationTimer + // + this.conversationTimer.Tick += new System.EventHandler(this.conversationTimer_Tick); + // + // textGen + // + this.textGen.Interval = 20; + this.textGen.Tick += new System.EventHandler(this.textGen_Tick); + // + // lblhackwords + // + this.lblhackwords.AutoSize = true; + this.lblhackwords.Dock = System.Windows.Forms.DockStyle.Fill; + this.lblhackwords.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblhackwords.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.lblhackwords.Location = new System.Drawing.Point(0, 0); + this.lblhackwords.Name = "lblhackwords"; + this.lblhackwords.Size = new System.Drawing.Size(127, 18); + this.lblhackwords.TabIndex = 3; + this.lblhackwords.Text = "Encrypting MBR..."; + // + // tmrHackFX + // + this.tmrHackFX.Interval = 50; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Silver; + this.ClientSize = new System.Drawing.Size(653, 457); + this.Controls.Add(this.lblHijack); + this.Controls.Add(this.lblhackwords); + this.Name = "Form1"; + this.Text = "Form1"; + this.TransparencyKey = System.Drawing.Color.White; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + internal System.Windows.Forms.Label lblHijack; + internal System.Windows.Forms.Timer conversationTimer; + internal System.Windows.Forms.Timer textGen; + internal System.Windows.Forms.Label lblhackwords; + internal System.Windows.Forms.Timer tmrHackFX; + internal System.ComponentModel.BackgroundWorker BackgroundWorker1; + } +} + -- cgit v1.2.3