Sign in to follow this  
Followers 0
spoofjack

By Pass Login

4 posts in this topic

Is it possible to bypass the login through the interwebs?

 

 

Please login or register to see this link.

 

 

Share this post


Link to post
Share on other sites

Well it is possible but they have updated security.

 

code from java auth emulation -
System.out.println("Handle Auth connection");
Map<String, Object> parameters = new HashMap();
InputStreamReader isr = new InputStreamReader(he.getRequestBody(), "utf-8");
BufferedReader br = new BufferedReader(isr);
String query = br.readLine();
Handlers.parseQuery(query, parameters);
if ((parameters.get("hwid ").toString().replace("%2B", "+") != null) && (parameters.get("hwid ").toString().replace("%2B", "+") != "")) {
Handlers.hwid = parameters.get("hwid ").toString().replace("%2B", "+") + "=";
}
String response = "{ \"error\" : false, \"expired\" : \"01/01/2020 00:00:00 AM\"}";
System.out.println("Handle Auth response : " + response);
he.sendResponseHeaders(200, response.length());
he.setAttribute("content-type", "application/json");
OutputStream os = he.getResponseBody();
os.write(response.toString().getBytes());
os.close();

Credits To poper21

 

Now to work on new bypass

Share this post


Link to post
Share on other sites

I kinda think they rely on a more webserver based auth system. CloudFlare will filter out most of the common attacks needed for that task that way.

Share this post


Link to post
Share on other sites
On 28.10.2016 at 9:00 PM, spoofjack said:

Is it possible to bypass the login through the interwebs?

 

 

Please login or register to see this link.

 

 

so what is the question  ? Bypassing the login on that website ? 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0