Home  >  Article  >  Backend Development  >  How to implement reverse SMZDM login encryption with python+JS

How to implement reverse SMZDM login encryption with python+JS

王林
王林forward
2023-06-03 19:13:02863browse

Actual combat scenario

The platform we are eyeing this time is [SMZDM].

The target site this time is: aHR0cHM6Ly93d3cuc216ZG0uY29tLw==.

Before the official start, register an account first, and then simulate login to see which parameters are secretly hidden~

When we see all the request parameters after login, we It is better to quietly close the site and withdraw it.

How to implement reverse SMZDM login encryption with python+JS

As you can see from the picture above, username, password is an important encryption area, starting with geetest_ The parameters are the content involved in the click verification code below. We will not disassemble it at this stage. You can continue to pay attention to the logic of the subsequent verification code.

You can ignore the click verification code for login. It is not easy to get it at this stage.

How to implement reverse SMZDM login encryption with python+JS

Interface request parameters are:

  • Request URL: zhiyou.smzdm.com/ user/login/ajax_normal_check

  • Request method: POST

##Parameter analysis

This time we will not add breakpoints, but first analyze through the request launcher, open the request call stack of the link, and then analyze the relevant addresses in sequence.

How to implement reverse SMZDM login encryption with python+JS

Based on experience, we can find that there is a

common_submit function, and the file it is located in is window.js, you can focus on it.

Next add an XHR breakpoint, the keyword is

login/ajax_normal_check.

After the breakpoint is over, you can directly enter the target function:

How to implement reverse SMZDM login encryption with python+JS

The result is that the relevant encryption logic is directly found, as follows As shown in the figure:

How to implement reverse SMZDM login encryption with python+JS

#The core code is extracted and then further analyzed.

var _ = login_obj.encryptPassword(i);
(i = _), (r = btoa(r));

It turned out that the

login_obj.encryptPassword function actually called a new interface.

encryptPassword: function(r) {
        var t = null;
        return $.ajax({
            url: "//zhiyou.smzdm.com/user/login/pre",
            type: "get",
            async: !1,
            dataType: "json"
        }).done(function(e) {
            var o;
            t = e && 0 != e.error_code ? null : ((o = new JSEncrypt).setPublicKey(atob(e.data.pub_key)),
            o.encrypt(r))
        }),
        t
    },

About the account using

js btoa, there is nothing special about this, it is a simple base64 encryption

Through the developer console, test using

btoa Encryption 12345, and then perform the same encryption through Python.

How to implement reverse SMZDM login encryption with python+JS

import base64
wtext = "12345"
# 编码
a = base64.b64encode(wtext.encode())
print(a.decode()) # 输出 MTIzNDU=

The results are consistent, and the

username parameter is resolved.

Let’s continue to look at the

password parameters. The password encryption process is:

  • Obtain

    pub_key through an API ;

  • ##Encode
  • atob

    on pub_key;

    ##Setting
  • JSEncryptRSAKey
  • Encrypt KEY;

    Encrypt user password.
  • Test whether the pub_key encryption interface can be called directly

import requests
headers = {
    "Host": "zhiyou.smzdm.com",
    "Accept": "application/json, text/javascript, */*; q=0.01",
    "Referer": "https://zhiyou.Python加密混淆.com/user/login/",
    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) 自己的 UA"
}
res = requests.get('https://zhiyou.Python加密混淆.com/user/login/pre', headers=headers, timeout=3)
print(res.text)
Run the code and get the following response, in which pub_key

is also obtained arrive.

# After testing the interface many times, an error was found, which triggered account restrictions. When you are coding, it is recommended to prepare several different accounts to prevent being banned. How to implement reverse SMZDM login encryption with python+JS

How to implement reverse SMZDM login encryption with python+JS Further debugging found that JS encryption uses a plug-in. Download the corresponding JS directly as follows:

https://res.Python混淆.com/resources/public/user/zhiyou/js/jsencrypt.min.js
Locally Build an environment where JS code can run

Write the following code, which involves the files mentioned above.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>测试环境</title>
    <script src="jsencrypt.min.js"></script>
    <script>
      function getQueryVariable(variable) {
        var query = window.location.search.substring(1);
        var vars = query.split("&");
        for (var i = 0; i < vars.length; i++) {
          var pair = vars[i].split("=");
          if (pair[0] == variable) {
            return pair[1];
          }
        }
        return false;
      }
      pk = getQueryVariable("pk");

      b64 = atob(pk);
      (o = new JSEncrypt()).setPublicKey(b64);

      aaa = o.encrypt("123456");
      document.write(aaa);
    </script>
  </head>
  <body></body>
</html>
Then you can use Selenium to call it and pass pub_key through the URL parameter.

The logic is also very simple. Python calls the interface to generate the KEY, then passes the KEY to the JS environment we built ourselves, and finally calls the target site (built by ourselves) through Python address, get the encrypted value, and pass it on. How to implement reverse SMZDM login encryption with python+JS

The above is the detailed content of How to implement reverse SMZDM login encryption with python+JS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete