吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 5139|回复: 24
上一主题 下一主题
收起左侧

[Android Tools] JEB Decompiler 4.29.0.202304042205

  [复制链接]
跳转到指定楼层
楼主
Sh4DoW321 发表于 2023-4-6 14:55 回帖奖励
IDA, &quot">mod by CXV

Press Generate a Key in welcome window

- fix all integrity checks\timebomb
- Time-limited sessions fixed
- Requires an Internet connection fixed
- dexdec: fix string decrypt via emulation
- dexdec: instruction conversion recovered
- gui: Usage of the clipboard is disallowed fixed
- jdb2: Saving or loading projects is disabled fixed
- android debug enabled
- android native debug enabled
- avrdec: decompiler enabled
- Decompiler exporter fixed
- callgraph enabled

Download:
https://pixeldrain.com/u/x7EYnhEV

免费评分

参与人数 2吾爱币 +2 热心值 +2 收起 理由
萌萌哒的小白 + 2 + 1 我很赞同!
twl288 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

推荐
sas141 发表于 2023-4-27 18:56
yan_97 发表于 2023-4-26 22:31
老哥,注册机是哪个,能发一下不

https://www.cnblogs.com/imisu/p/15642944.html  这篇帖子里面有注册机代码,和代码在线运行平台(https://tool.lu/coderunner/),复制代码到代码在线运行平台,再把机器码复制过去,运行代码就可以出key了。或者你把代码复制下来到自己的python开发环境里运行也可以。
[Python] 纯文本查看 复制代码
#https://bbs.pediy.com/
#!/usr/bin/env python
import os, sys, struct, time, binascii, hashlib

RC4_Key2= 'Eg\xa2\x99_\x83\xf1\x10'

def rc4(Key, inData):
    Buf = ""
    S = range(256)
    K = (map(lambda x:ord(x), Key) * (256 / len(Key) + 1))[:256]
    j = 0
    for i in range(256):
        j = (S[i] + K[i] + j) % 256
        S[i], S[j] = S[j], S[i]
    i, j = 0, 0
    for x in range(len(inData)):
        i = (i + 1) % 256
        j = (j + S[i]) % 256
        S[i], S[j] = S[j], S[i]
        Buf += chr(S[(S[j] + S[i]) % 256] ^ ord(inData[x]))
    return Buf

def Long2Int(longdata):
    lo = longdata & 0xFFFFFFFF
    hi = (longdata >> 32) & 0x7FFFFFFF
    return hi, lo

def KeygenSN(LicenseSerial, MachineID):
    mhi, mlo = Long2Int(MachineID)
    lhi, llo = Long2Int(LicenseSerial)
    hi_Key = (mhi - lhi + 0x55667788) & 0x7FFFFFFF
    lo_Key = (mlo + llo + 0x11223344) & 0xFFFFFFFF
    Z0, = struct.unpack('<Q', struct.pack('<LL', lo_Key, hi_Key))
    Z1 = int(time.time()) ^ 0x56739ACD
    s = sum(map(lambda x:int(x, 16), "%x" % Z1)) % 10
    return "%dZ%d%d" % (Z0, Z1, s)

def ParsePost(buf):
    Info = struct.unpack('<3L2Q4LQ3L', buf[:0x40])
    flag, CRC, UserSerial, LicenseSerial, MachineID, build_type, \
          Ver_Major, Ver_Minor, Ver_Buildid, Ver_Timestamp, \
          TimeOffset, Kclass, Random2 = Info
    SysInfoData = buf[0x40:]
    assert CRC == binascii.crc32(buf[8:]) & 0xFFFFFFFF
    return Info, SysInfoData

def DecodeRc4Str(buf):
    buf = buf.decode('hex')
    i, s = ParsePost(rc4(buf[:8] + RC4_Key2, buf[8:]))
    return i, s

def GetJebLicenseKey():
    licdata = ""
    if licdata:
        i, MachineID = DecodeRc4Str(licdata)
        SN = KeygenSN(i[3], i[4])
        print "JEB License Key:", SN
        return SN

GetJebLicenseKey()
raw_input("Enter to Exit...")

沙发
evea 发表于 2023-4-8 16:46
链接: https://pan.baidu.com/s/1GwCwdAp0Ug9wLC13c1QQUA?pwd=ketw 提取码: ketw 复制这段内容后打开百度网盘手机App,操作更方便哦
--来自百度网盘超级会员v6的分享
3#
xixicoco 发表于 2023-4-8 19:38
4#
sas141 发表于 2023-4-8 21:02
怎么我用不了,提示无法连接到pnfsoftware.com
5#
good7801 发表于 2023-4-9 08:14
大神啊,太牛了,这个简直是神器啊
6#
ping170 发表于 2023-4-9 19:50
mac 支持吗
7#
CRoot 发表于 2023-4-9 22:09
sas141 发表于 2023-4-8 21:02
怎么我用不了,提示无法连接到pnfsoftware.com

他们家官方SSL证书过期了,估计等他们续了证书才行
8#
chuest 发表于 2023-4-10 10:20
感谢分享~
9#
fireworld 发表于 2023-4-10 12:23

这两个更新看上去不错

- dexdec: bridge for native code emulation (see blog)
  (this large update allows the emulator to process native code invoked through the JNI)
- apk: arsc: tweaks and workarounds for new obfuscation methods
10#
sas141 发表于 2023-4-10 20:44
CRoot 发表于 2023-4-9 22:09
他们家官方SSL证书过期了,估计等他们续了证书才行

感恩,我后来找了注册机自己生成了一个key
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-4-30 10:41

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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