5960616263646566676869
super("messenger.hotmail.com", 1863, info); this.protocol = protocol; this.processor = processor; Command cmd = new Command("VER"); cmd.addParam("MSNP8"); sendToServer(cmd, "processVersion"); } /** * Process the reply for VER command.
7576777879808182838485
if(cmd instanceof Command) { if("VER".equals(cmd.getType()) && "MSNP8".equals(cmd.getParam(0))) { Command cvr = new Command("CVR"); cvr.addParam("0x0409"); String os = System.getProperty("os.name").toLowerCase(); if(os.length() > 3) os = os.substring(0, 3); cvr.addParam(os);
8081828384858687888990
cvr.addParam("0x0409"); String os = System.getProperty("os.name").toLowerCase(); if(os.length() > 3) os = os.substring(0, 3); cvr.addParam(os); cvr.addParam(Util.urlDecode(System.getProperty("os.version"))); cvr.addParam(Util.urlEncode(System.getProperty("os.arch"))); cvr.addParam("Hamsam"); cvr.addParam("0.2.3"); cvr.addParam("Hamsam");
8182838485868788899091
String os = System.getProperty("os.name").toLowerCase(); if(os.length() > 3) os = os.substring(0, 3); cvr.addParam(os); cvr.addParam(Util.urlDecode(System.getProperty("os.version"))); cvr.addParam(Util.urlEncode(System.getProperty("os.arch"))); cvr.addParam("Hamsam"); cvr.addParam("0.2.3"); cvr.addParam("Hamsam"); cvr.addParam(Util.urlEncode(this.protocol.getUsername()));
8283848586878889909192
8384858687888990919293
if(os.length() > 3) os = os.substring(0, 3); cvr.addParam(os); cvr.addParam(Util.urlDecode(System.getProperty("os.version"))); cvr.addParam(Util.urlEncode(System.getProperty("os.arch"))); cvr.addParam("Hamsam"); cvr.addParam("0.2.3"); cvr.addParam("Hamsam"); cvr.addParam(Util.urlEncode(this.protocol.getUsername())); sendToServer(cvr, "processClientVersion");
8485868788899091929394
os = os.substring(0, 3); cvr.addParam(os); cvr.addParam(Util.urlDecode(System.getProperty("os.version"))); cvr.addParam(Util.urlEncode(System.getProperty("os.arch"))); cvr.addParam("Hamsam"); cvr.addParam("0.2.3"); cvr.addParam("Hamsam"); cvr.addParam(Util.urlEncode(this.protocol.getUsername())); sendToServer(cvr, "processClientVersion"); return;
8586878889909192939495
cvr.addParam(os); cvr.addParam(Util.urlDecode(System.getProperty("os.version"))); cvr.addParam(Util.urlEncode(System.getProperty("os.arch"))); cvr.addParam("Hamsam"); cvr.addParam("0.2.3"); cvr.addParam("Hamsam"); cvr.addParam(Util.urlEncode(this.protocol.getUsername())); sendToServer(cvr, "processClientVersion"); return; }
8687888990919293949596
cvr.addParam(Util.urlDecode(System.getProperty("os.version"))); cvr.addParam(Util.urlEncode(System.getProperty("os.arch"))); cvr.addParam("Hamsam"); cvr.addParam("0.2.3"); cvr.addParam("Hamsam"); cvr.addParam(Util.urlEncode(this.protocol.getUsername())); sendToServer(cvr, "processClientVersion"); return; } }
108109110111112113114115116117118
if(cmd instanceof Command) { if("CVR".equals(cmd.getType())) { Command usr = new Command("USR"); usr.addParam("TWN"); usr.addParam("I"); // I for initiate usr.addParam(protocol.getUsername()); sendToServer(usr, "processAuthentication"); return; }