// Decompiled with JetBrains decompiler // Type: Raton.Forms.ClientForms.Monitor.ratonKeylogger // Assembly: Raton, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null // MVID: 36C4E416-7F8D-4D23-930F-B5CCB0D810E7 // Assembly location: C:\Users\user\Desktop\v3.8.0 Deluxe Plugins (v4.0.0) cracked\Raton.exe using Raton.Classes; using Server.Connection; using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; #nullable disable namespace Raton.Forms.ClientForms.Monitor; public class ratonKeylogger : Form { private IContainer components; private Timer timer1; public TextBox textBox1; public SillyClient SillyClient { get; set; } public ratonKeylogger() { this.InitializeComponent(); DarkMode.Start((Form) this); } private void timer1_Tick(object sender, EventArgs e) { if (this.SillyClient != null && this.SillyClient.isConnected()) return; this.Close(); } private void ratonKeylogger_Load(object sender, EventArgs e) => this.timer1.Start(); protected override void Dispose(bool disposing) { if (disposing && this.components != null) this.components.Dispose(); base.Dispose(disposing); } private void InitializeComponent() { this.components = (IContainer) new System.ComponentModel.Container(); ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (ratonKeylogger)); this.textBox1 = new TextBox(); this.timer1 = new Timer(this.components); this.SuspendLayout(); this.textBox1.BorderStyle = BorderStyle.FixedSingle; this.textBox1.Cursor = Cursors.Default; this.textBox1.Dock = DockStyle.Fill; this.textBox1.Location = new Point(0, 0); this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; this.textBox1.ScrollBars = ScrollBars.Vertical; this.textBox1.Size = new Size(600, 553); this.textBox1.TabIndex = 0; this.timer1.Tick += new EventHandler(this.timer1_Tick); this.AutoScaleDimensions = new SizeF(7f, 15f); this.AutoScaleMode = AutoScaleMode.Font; this.ClientSize = new Size(600, 553); this.Controls.Add((Control) this.textBox1); this.Font = new Font("Microsoft JhengHei", 8.25f, FontStyle.Regular, GraphicsUnit.Point, (byte) 0); this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon"); this.Name = nameof (ratonKeylogger); this.StartPosition = FormStartPosition.CenterScreen; this.Text = nameof (ratonKeylogger); this.Load += new EventHandler(this.ratonKeylogger_Load); this.ResumeLayout(false); this.PerformLayout(); } }