正在查看: Kickcash v16.1 应用的 d.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Kickcash v16.1 应用的 d.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.microsoft.clarity.qf;
import com.google.android.gms.common.api.Status;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
public final class d implements Runnable {
private static final com.microsoft.clarity.zf.a Z = new com.microsoft.clarity.zf.a("RevokeAccessOperation", new String[0]);
private final String X;
private final com.microsoft.clarity.uf.l Y = new com.microsoft.clarity.uf.l(null);
public d(String str) {
this.X = com.microsoft.clarity.wf.h.f(str);
}
public static com.microsoft.clarity.tf.g a(String str) {
if (str == null) {
return com.microsoft.clarity.tf.h.a(new Status(4), null);
}
d dVar = new d(str);
new Thread(dVar).start();
return dVar.Y;
}
@Override
public final void run() {
Status status = Status.J0;
try {
HttpURLConnection httpURLConnection = (HttpURLConnection) new URL("https://accounts.google.com/o/oauth2/revoke?token=" + this.X).openConnection();
httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
int responseCode = httpURLConnection.getResponseCode();
if (responseCode == 200) {
status = Status.H0;
} else {
Z.b("Unable to revoke access!", new Object[0]);
}
Z.a("Response Code: " + responseCode, new Object[0]);
} catch (IOException e) {
Z.b("IOException when revoking access: ".concat(String.valueOf(e.toString())), new Object[0]);
} catch (Exception e2) {
Z.b("Exception when revoking access: ".concat(String.valueOf(e2.toString())), new Object[0]);
}
this.Y.f(status);
}
}