summaryrefslogtreecommitdiff
path: root/src/se
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2013-06-04 16:31:39 +0200
committerParménides GV <parmegv@sdf.org>2013-06-04 16:31:39 +0200
commitac47aab124d63add14189cb3d03e3a05361a7932 (patch)
tree9ecec4edd5668c727c994ea14205849a3a3144a8 /src/se
parent7b75fbe9ca3b2d6175b124b26f5d8f527b15d1bd (diff)
Fixed 2 important bugs.
LeapSRPSession was doing bad SRP calculations when salt byte array started with a 0. Now I trimmed that array before using it. ProviderAPI was not timing out when a server didn't respond. Now, I use a timeout of 1 second to stop waiting for a response.
Diffstat (limited to 'src/se')
-rw-r--r--src/se/leap/leapclient/LeapSRPSession.java27
-rw-r--r--src/se/leap/leapclient/ProviderAPI.java13
2 files changed, 35 insertions, 5 deletions
diff --git a/src/se/leap/leapclient/LeapSRPSession.java b/src/se/leap/leapclient/LeapSRPSession.java
index 715e9de1..8d6f77bf 100644
--- a/src/se/leap/leapclient/LeapSRPSession.java
+++ b/src/se/leap/leapclient/LeapSRPSession.java
@@ -109,13 +109,29 @@ public class LeapSRPSession {
password_bytes = Util.trim(password.getBytes());
}
+ /*byte[] passBytes = new byte[2*password.toCharArray().length];
+ int passBytesLength = 0;
+ for(int p = 0; p < password.toCharArray().length; p++) {
+ int c = (password.toCharArray()[p] & 0x00FFFF);
+ // The low byte of the char
+ byte b0 = (byte) (c & 0x0000FF);
+ // The high byte of the char
+ byte b1 = (byte) ((c & 0x00FF00) >> 8);
+ passBytes[passBytesLength ++] = b0;
+ // Only encode the high byte if c is a multi-byte char
+ if( c > 255 )
+ passBytes[passBytesLength ++] = b1;
+ }*/
+
// Build the hash
x_digest.update(user);
x_digest.update(colon);
x_digest.update(password_bytes);
+ //x_digest.update(passBytes, 0, passBytesLength);
byte[] h = x_digest.digest();
+ String hstr = new BigInteger(1, h).toString(16);
//h = Util.trim(h);
-
+ //25c19c2b903ff36dd5acd6e1136b8f3af008ceee45103ef9771334f4246d6226
x_digest.reset();
x_digest.update(salt);
x_digest.update(h);
@@ -173,8 +189,9 @@ public class LeapSRPSession {
*/
public byte[] response(byte[] salt_bytes, byte[] Bbytes) throws NoSuchAlgorithmException {
// Calculate x = H(s | H(U | ':' | password))
- byte[] xb = calculatePasswordHash(username, password, salt_bytes);
+ byte[] xb = calculatePasswordHash(username, password, Util.trim(salt_bytes));
this.x = new BigInteger(1, xb);
+ String xstr = x.toString(16);
// Calculate v = kg^x mod N
String k_string = "bf66c44a428916cad64aa7c679f3fd897ad4c375e9bbb4cbf2f5de241d618ef0";
@@ -211,6 +228,7 @@ public class LeapSRPSession {
// Calculate S = (B - kg^x) ^ (a + u * x) % N
BigInteger S = calculateS(Bbytes);
byte[] S_bytes = Util.trim(S.toByteArray());
+ String Sstr = S.toString(16);
// K = SessionHash(S)
String hash_algorithm = params.hashAlgorithm;
@@ -219,8 +237,10 @@ public class LeapSRPSession {
// clientHash = H(N) xor H(g) | H(U) | A | B | K
clientHash.update(K);
+ String Kstr = new BigInteger(1, K).toString(16);
byte[] M1 = Util.trim(clientHash.digest());
+ String M1str = new BigInteger(1, M1).toString(16);
// serverHash = Astr + M + K
serverHash.update(Abytes);
@@ -244,9 +264,10 @@ public class LeapSRPSession {
BigInteger u = new BigInteger(1, u_bytes);
BigInteger B_minus_v = B.subtract(v);
+ String vstr = v.toString(16);
BigInteger a_ux = a.add(u.multiply(x));
+ String xstr = x.toString(16);
BigInteger S = B_minus_v.modPow(a_ux, N);
-
return S;
}
diff --git a/src/se/leap/leapclient/ProviderAPI.java b/src/se/leap/leapclient/ProviderAPI.java
index d5e164d6..a6a2d6be 100644
--- a/src/se/leap/leapclient/ProviderAPI.java
+++ b/src/se/leap/leapclient/ProviderAPI.java
@@ -15,8 +15,10 @@ import java.net.CookieHandler;
import java.net.CookieManager;
import java.net.HttpCookie;
import java.net.MalformedURLException;
+import java.net.SocketTimeoutException;
import java.net.URISyntaxException;
import java.net.URL;
+import java.net.URLConnection;
import java.util.Scanner;
import javax.net.ssl.HostnameVerifier;
@@ -296,12 +298,17 @@ public class ProviderAPI extends IntentService {
String json_file_content = "";
URL provider_url = null;
+ int seconds_of_timeout = 1;
try {
provider_url = new URL(string_url);
- json_file_content = new Scanner(provider_url.openStream()).useDelimiter("\\A").next();
+ URLConnection url_connection = provider_url.openConnection();
+ url_connection.setConnectTimeout(seconds_of_timeout*1000);
+ json_file_content = new Scanner(url_connection.getInputStream()).useDelimiter("\\A").next();
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
+ } catch(SocketTimeoutException e) {
+ return "";
} catch (IOException e) {
// TODO SSLHandshakeException
// This means that we have not added ca.crt to the trusted certificates.
@@ -310,8 +317,10 @@ public class ProviderAPI extends IntentService {
}
//json_file_content = downloadStringFromProviderWithCACertAdded(string_url);
e.printStackTrace();
+ } catch (Exception e) {
+ e.printStackTrace();
}
-
+
return json_file_content;
}