查看: 6650|回复: 5

海森游戏VIP客户端及其游戏破解

[复制链接]
发表于 2020-5-4 08:12 | 显示全部楼层 |阅读模式
Gu_city 2020-5-4 08:12 6650 5 显示全部楼层
客户端破
客户端移除了每次启动强制更新以及账号登录功能 目前客户端有778个游戏
不过每次客户端启动贼慢要去服务器端获取数据通过抓包发现了获取游戏的api(http://yx.haisenyouxi8.com/hsgame/game/query/(POST请求 没有参数))获取到所有游戏 json格式
返回的数据有用的为::downloadUrl:游戏下载地址,giftUrl:赠品下载地址(修改器存档之类的东西)、encodeKey: 解密游戏的key
官方客户端下载地址:https://pan.baidu.com/s/1Ed7I-Vj-CZw2sXlXfgMjVA
下载完成后使用以以及修改了的hsgame_query1.exe进入查询游戏
修改的hsgame_query.exe :链接: https://pan.baidu.com/s/12Fx4u2plrkj3Vad870K5DQ 提取码: m64n
完整版破坏客户端:链接: https://pan.baidu.com/s/17dRgCcAqpO2YahqWH-mFsA 提取码: k78b
游戏破解方式一
发现游戏下载完安装后还需要再次激活抓包发现 联网获取游戏的 encodeKey 来解压游戏启动文件、而每次把客户端游戏启动程序一关闭又会删除原本的游戏启动文件(解压完的游戏文件默认是隐藏的需要电脑设置查看隐藏文件才看得见)
获取游戏的encodeKeyapi为:http://yx.haisenyouxi8.com/hsgame/game/getById(post请求 id=hsgame.ini文件里面的id)
通过hsgame_client.dll里面来判断是否登录或激活
破解文件:链接: https://pan.baidu.com/s/1X9xfmga03Wcp321nzI-LVA 提取码: vkzu
直接覆盖文件就可以
(其实领取完赠品获取到游戏启动文件就可以直接删除掉不用每次都用这个假游戏启动查询)
游戏破解方式二
根据游戏的解密思路直接自己写了一个解压工具
解压程序:链接: https://pan.baidu.com/s/1j4jKqlZsi1f9iMGxId316A 提取码: nipc
拷贝到安装游戏后桌面创建的快捷方式文件所在目录运行直接解压就可以
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Net;
  9. using System.Runtime.InteropServices;
  10. using System.Text;
  11. using System.Web.Script.Serialization;
  12. using System.Windows.Forms;

  13. namespace GameDLL
  14. {
  15.     public partial class Form1 : Form
  16.     {
  17.         public Form1()
  18.         {
  19.             InitializeComponent();
  20.         }

  21.         private void button1_Click(object sender, EventArgs e)
  22.         {
  23.                         string id = ReadConfig<string>(".\\hsgame.ini", "config", "id");
  24.                         string result = null;
  25.                         try
  26.                         {
  27.                                 result = getGameData(id);
  28.                                 analysis(result);
  29.                         }
  30.                         catch (Exception)
  31.                         {
  32.                                 MessageBox.Show("需要联网下载encodeKey和赠品地址");
  33.                         }
  34.                         
  35.                 }
  36.                 private void getExe(string key) {
  37.                         string exename = ReadConfig<string>(".\\hsgame.ini", "config", "exeName");
  38.                         FileStream fileStream = new FileStream(".\\hsgame.dll", FileMode.Open, FileAccess.Read);
  39.                         BinaryReader binaryReader = new BinaryReader(fileStream);
  40.                         FileStream fileStream2 = new FileStream(".\" + exename, FileMode.CreateNew);
  41.                         bool flag = binaryReader.PeekChar() != -1;
  42.                         if (flag)
  43.                         {
  44.                                 byte[] array;
  45.                                 while ((array = binaryReader.ReadBytes(1024)).Length != 0)
  46.                                 {
  47.                                         fileStream2.Write(decodeByte(array, key), 0, array.Length);
  48.                                 }
  49.                         }
  50.                         fileStream2.Close();
  51.                         binaryReader.Close();
  52.                         fileStream.Close();
  53.                 }
  54.                 private static byte[] decodeByte(byte[] bytes, string key)
  55.                 {
  56.                         byte[] bytes2 = Encoding.UTF8.GetBytes(key);
  57.                         for (int i = 0; i < bytes.Length; i++)
  58.                         {
  59.                                 foreach (byte b in bytes2)
  60.                                 {
  61.                                         bytes[i] ^= b;
  62.                                 }
  63.                         }
  64.                         return bytes;
  65.                 }
  66.                 public static T ReadConfig<T>(string FileName, string section, string key)
  67.                 {
  68.                         bool flag = File.Exists(FileName);
  69.                         T result;
  70.                         if (flag)
  71.                         {
  72.                                 string text = ReadContentValue(section, key);
  73.                                 bool flag2 = text == null || string.IsNullOrEmpty(text.Trim());
  74.                                 if (flag2)
  75.                                 {
  76.                                         result = default(T);
  77.                                 }
  78.                                 else
  79.                                 {
  80.                                         bool isEnum = typeof(T).IsEnum;
  81.                                         if (isEnum)
  82.                                         {
  83.                                                 result = (T)((object)Enum.Parse(typeof(T), text, true));
  84.                                         }
  85.                                         else
  86.                                         {
  87.                                                 result = (T)((object)Convert.ChangeType(text, typeof(T)));
  88.                                         }
  89.                                 }
  90.                         }
  91.                         else
  92.                         {
  93.                                 result = default(T);
  94.                         }
  95.                         return result;
  96.                 }
  97.                 [DllImport("kernel32")]
  98.                 private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retval, int size, string filePath);
  99.                 public static string ReadContentValue(string Section, string key)
  100.                 {
  101.                         StringBuilder stringBuilder = new StringBuilder(1024);
  102.                         GetPrivateProfileString(Section, key, "", stringBuilder, 1024, ".\\hsgame.ini");
  103.                         return stringBuilder.ToString();
  104.                 }
  105.                 private string getGameData(string id) {
  106.                         string url = "http://yx.haisenyouxi8.com/hsgame/game/getById";
  107.                         HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
  108.                         req.Method = "POST";
  109.                         req.ContentType = "application/x-www-form-urlencoded";
  110.                         byte[] data = Encoding.UTF8.GetBytes("id="+id);
  111.                         req.ContentLength = data.Length;
  112.                         using (Stream reqStream = req.GetRequestStream())
  113.                         {
  114.                                 reqStream.Write(data, 0, data.Length);
  115.                                 reqStream.Close();
  116.                         }

  117.                         HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
  118.                         Stream stream = resp.GetResponseStream();
  119.                         string result = null;
  120.                         //获取内容
  121.                         using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
  122.                         {
  123.                                 result = reader.ReadToEnd();
  124.                         }
  125.                         Console.WriteLine(result);
  126.                         return result;
  127.                 }
  128.                 private void analysis(string json) {
  129.                         JavaScriptSerializer serializer = new JavaScriptSerializer();
  130.                         Dictionary<string, Object> o = (Dictionary<string, Object>)serializer.DeserializeObject(json);
  131.                         Dictionary<string, Object> o2 = (Dictionary<string, Object>)o["json"];
  132.                         Object encodeKey = o2["encodeKey"];
  133.                         Object giftUrl = o2["giftUrl"];
  134.                         getExe(encodeKey.ToString());
  135.                         openBrowser(giftUrl.ToString());
  136.                         
  137.                 }
  138.                 private void openBrowser(string url) {
  139.                         if (url == null || url.Trim().Length <= 0)
  140.                         {
  141.                                 MessageBox.Show("没有赠品");
  142.                         }
  143.                         else {
  144.                                 System.Diagnostics.Process.Start(url);
  145.                                 MessageBox.Show("赠品地址已经打开 记得保存哦");
  146.                         }
  147.                 }
  148.         }
  149. }
复制代码


发表于 2020-5-4 09:23 | 显示全部楼层
存技术贴!i了i了~
回复

使用道具 举报

发表于 2020-5-4 09:51 | 显示全部楼层
q521ddd 2020-5-4 09:51 显示全部楼层
不错,感谢大佬
回复

使用道具 举报

发表于 2021-1-15 18:13 | 显示全部楼层
pigname 2021-1-15 18:13 显示全部楼层
nb这种才是大佬大佬佬
回复

使用道具 举报

发表于 2021-3-27 12:40 | 显示全部楼层
1178567082 2021-3-27 12:40 显示全部楼层
这个海森是真的恶心,感谢大佬破解
回复

使用道具 举报

发表于 2021-4-15 16:59 | 显示全部楼层
蛙咧 2021-4-15 16:59 显示全部楼层
用不了了可以更新一下吗。。。求求大佬了
回复

使用道具 举报

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

本版积分规则 返回列表 发新帖

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