Mini Map

        one .  password analysis

        two .  Verification code identification

statement : This article is only for communication and learning , Do not use in any illegal business activities , Prohibited for illegal use . Otherwise, you will bear the consequences . In case of infringement , Please inform to delete , thank you !

one ,password analysis
def fe(e) -> list: t = [] for i in range(len(e)): r = ord(e[i]) if 0 <= r & r
<= 127: t.append(r) elif 128 <= r & r <= 2047: t.append(192 | 31 & r >> 6)
t.append(128 | 63 & r) elif 2048 <= r & r <= 22595 | 57344 <= r & r <= 65535:
t.append(224 | 15 & r >> 12) t.append(128 | 63 & r >> 6) t.append(128 | 63 & r)
# for j in range(a): # if a < len(t): # a += 1 # t[a] &= 255 return t def
put(e) -> str: a = fe(e) return ''.join(str(format((5 ^ a[i]), 'x')) for i in
range(len(e)))
  Output results

  two , Verification code identification

Concluding remarks

Relatively simple verification code , Encryption is not involved , Just pickled purple !

Technology