设为首页收藏本站 国外访客:

 找回密码
 立即注册
搜索
查看: 9881|回复: 0

[教程/工具] 星辰奇缘苹果端绑定域名解密方法

[复制链接]
灌水成绩
18875
118
19447
主题
帖子
积分

等级头衔

ID : 1

管理员

积分成就 威望 : 8
贡献 : 9
下载币 : 429
在线时间 : 1931 小时
注册时间 : 2013-9-5
最后登录 : 2026-9-5

发表于 2026-7-11 00:15:40 | 显示全部楼层 |阅读模式 IP:广东东莞
免责
  1. public void Connect(string address, int port)+ G  J, e" T0 V4 }0 L
  2.         {
    , n  ], E( M# W, ^4 y0 g( }
  3.                 if (this.socket.Connected)) ~7 O. Y+ ~* [
  4.                 {6 M) Q# c! k; m) j) f1 p
  5.                         Debug.Log(string.Format("错误:重复建立Socke连接,重新连接时请先断开之前的连接", new object[0]));
    # k' J. L& ^3 y9 S$ S
  6.                         return;; b% h7 C" v1 U+ Z, Z
  7.                 }
    ) O8 t- B" S3 v. T- B. I
  8.                 this.address = address;
    2 t( u4 j6 |  f! k6 L7 _$ Q
  9.                 this.port = port;: q# Y; U4 G' T, @7 t3 y& X
  10.                 MD5 md = MD5.Create();
    6 X& }2 y/ i  `
  11.                 string a = "12546f1c61454538c45490";  S) }( [) _2 q; e/ [' l  C
  12.                 string a2 = "1252051ca54456902c7054bc";5 w& l8 x; M$ G+ f9 X4 R
  13.                 string a3 = "66610b45455576";! Z- m( M  {! d7 Q7 S% j# g
  14.                 string a4 = "4582fdgs4545wr42saf1";! W9 w# y  r3 l: m  n. s& ~' L5 |* r
  15.                 byte[] bytes = Encoding.Default.GetBytes(address);; ]# d; }6 p8 O% R; Q2 ?
  16.                 byte[] array = md.ComputeHash(bytes);5 _/ W* t$ V0 ~. o, v
  17.                 string text = string.Empty;
    . N4 l' Z# g7 O+ j( n8 Z0 D
  18.                 for (int i = 0; i < array.Length; i++)- G4 |' Q, a1 y' s% f
  19.                 {+ [2 a$ y: K3 i! @: v* h
  20.                         text += array[i].ToString("x6");" I$ e2 `. [6 |+ f- k2 U
  21.                 }
    3 Y+ W6 N% p" L
  22.                 byte[] bytes2 = Encoding.Default.GetBytes(text);4 @* `" X+ |, v6 Q1 I; W
  23.                 byte[] array2 = md.ComputeHash(bytes2);
    . d4 |. B. q6 \! Q
  24.                 string text2 = string.Empty;
    4 f2 ~; V4 L/ T8 M# o" E7 h
  25.                 for (int j = 0; j < array2.Length; j++)% M: {/ `! \8 B* M( c8 v
  26.                 {
    9 i& t1 Y' g# m
  27.                         text2 += array2[j].ToString("x2");8 o1 |$ r' }: r) o; R
  28.                 }' |# d3 M% L" d2 p: |. E
  29.                 if (!(a == text2) && !(a2 == text2) && !(a3 == text2))4 c; \' M$ w) L: k! Z; Y  ]
  30.                 {
    ' G% d! L! U* |+ X
  31.                         if (!(a4 == text2))
    * T/ U" i+ l, T6 r; a3 z
  32.                         {
    # |: D5 n# \$ E' N
  33.                                 this.Disconnect();' ~% Y/ D( w; ]: Y
  34.                                 return;; t  X# V1 o0 w3 C( B
  35.                         }4 V, g. G5 ?4 f) v; @
  36.                 }
    7 n2 T7 R# [; g3 h9 x2 c; O9 I
  37.                 try* U2 ?, d8 v. G/ h$ B; ^
  38.                 {
    7 A5 n1 r& A1 t* I
  39.                         Log.Debug("Socket尝试建立连接");% K" Z4 W5 [. h
  40.                         this.ConnectStatus = ConnectStatusEnum.HasConnect;+ J2 ?" D' u" Z$ o" M6 T8 {
  41.                         this.connetTime = Time.time;
    ' [: Q" d& }% N! Z; g" {
  42.                         this.result = this.socket.BeginConnect(address, port, null, null);6 j2 d$ A/ @  `5 i" M
  43.                         TimerManager.GetInstance().AddTimerTask(new TimerTask(500f, new Action(this.checkConnect)));
    1 C% _1 Y% K& s. j! q
  44.                 }4 T9 Y! K4 c0 w( Z! t3 B
  45.                 catch (SocketException ex), x0 x$ @+ k: ?9 A4 ^" V
  46.                 {
    ! o( }) ~! t( ]; m/ n
  47.                         this.result = null;
    3 N+ W4 L  Z& r( C+ z+ @" x
  48.                         this.socket.Close();
    4 N3 ?$ o7 h" E: x+ E; G
  49.                         Debug.Log(string.Format("连接服务器{0}:{1}失败:{2}", address, port, ex.Message));( j9 E4 v) u. q, @
  50.                         this.Disconnect();! f' [7 K' k" x! {% l; n7 H
  51.                 }2 b% x/ f* t. N  n* A5 S& k
  52.         }
复制代码
5 Y+ s  R$ A6 S9 @$ y

  v7 |8 s! x# O# i4 p  T5 g1 ^& H/ x6 f  P4 Z2 X+ X& C/ g
  1. address=ip地址
    / [: I- m' R5 T/ `" z" L5 z: s
  2. $ w3 c! O, Q+ G4 [6 J8 r6 j) {
  3. byte[] bytes = Encoding.Default.GetBytes(address);, x5 o, }. M9 O
  4.                 byte[] array = md.ComputeHash(bytes);: S  V6 h& k4 L
  5.                 string text = string.Empty;$ |, v' d' T8 l: I! X
  6.                 for (int i = 0; i < array.Length; i++)$ o2 E) U/ e# o4 a
  7.                 {
    : Y9 E1 D/ \2 w7 N: r" ]
  8.                         text += array.ToString("x6");
    ; a+ b9 }  D% ~/ t/ x, Q
  9.                 }
    8 _3 y- F7 q$ K# D0 [7 [9 B) l
  10.                 byte[] bytes2 = Encoding.Default.GetBytes(text);
    ; J; r" w( z9 ?. [7 {. V$ g/ E
  11.                 byte[] array2 = md.ComputeHash(bytes2);0 c, Z% o+ ?1 o5 c
  12.                 string text2 = string.Empty;! x4 r) b0 {+ l: I5 `$ D7 k
  13.                 for (int j = 0; j < array2.Length; j++)' G4 v% U% N8 e0 P0 l) M
  14.                 {
    ' _+ v! t" Z( ^6 x6 T! P* r/ v- ?; Q( V
  15.                         text2 += array2[j].ToString("x2");
    - F% E/ k5 X$ W- T5 |; R; ]/ b8 k
  16.                 }/ X% Y- L% c8 U1 m
  17. text2就是最终密文
复制代码
9 J% j7 e2 O2 w0 V3 A
5 L1 I  i; Z- S' ?3 l# M: j6 G1 f
免责
帖子地址打造全网最多免费游戏网站
今日来客 列表模式
本周有问题处理时间20:30-00:00预计下周上夜班  8.12发布
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|蔡州手游 |网站地图 wapmz.com

GMT+8, 2026-9-5 13:50

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

快速回复 返回顶部 返回列表