2 Commits

Author SHA1 Message Date
Ryan Welton
d4c32204b2 Add import 2015-11-05 13:34:52 -05:00
Ryan Welton
175cf43dd2 Check for the file flag before killing SSl for all the apps 2015-07-23 15:23:43 -04:00

View File

@@ -8,6 +8,7 @@ import java.io.IOException;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.io.File;
import java.security.SecureRandom;
import java.security.KeyStore;
@@ -52,6 +53,9 @@ import static de.robv.android.xposed.XposedHelpers.findClass;
public class Main implements IXposedHookLoadPackage {
public void handleLoadPackage(final LoadPackageParam lpparam) throws Throwable {
if(!new File("/data/logging/fuckssl").exists()) {
return;
}
/* Apache Hooks */
/* external/apache-http/src/org/apache/http/impl/client/DefaultHttpClient.java */
/* public DefaultHttpClient() */