首页 > 其他分享 >新版Jadx 加载dex报错 jadx.plugins.input.dex.DexException:Bad checksum 解决方法

新版Jadx 加载dex报错 jadx.plugins.input.dex.DexException:Bad checksum 解决方法

时间:2023-08-26 22:35:06浏览次数:35  
标签:dex DexException checksum 报错 jadx input

本文所有教程及源码、软件仅为技术研究。不涉及计算机信息系统功能的删除、修改、增加、干扰,更不会影响计算机信息系统的正常运行。不得将代码用于非法用途,如侵立删!

新版Jadx(1.6+) 加载dex报错 jadx.plugins.input.dex.DexException:Bad checksum 解决方法

环境

  • win10
  • Jadx 1.6

jadx下载地址:https://github.com/skylot/jadx/releases

错误分析

新版jadx直接导入dex文件会发生如下报错:jadx.plugins.input.dex.DexException:Bad checksum
在这里插入图片描述
chatGPT 查询报错信息
在这里插入图片描述
大概意思就是在加载的时候会对dex做效验,如果验证不通过就会报错

解决方法:关闭dex效验

在文件->首选项中找到[dex-input]verify dex file checksum before load,选择否即可,即关闭校验

在这里插入图片描述


本文仅供学习交流使用,如侵立删!

标签:dex,DexException,checksum,报错,jadx,input
From: https://www.cnblogs.com/c1033383881/p/17659605.html

相关文章

  • vue npm install报错
    PSI:\Vue3+ts+e-plus后台管理\vue3-ts-element-plus-master\vue3-ts-element-plus-master>npminstallnpmERR!codeERESOLVEnpmERR!ERESOLVEcouldnotresolvenpmERR! npmERR!Whileresolving:[email protected]!Found:[email protected]!node_......
  • 报错test_features2d.cpp:51:10: fatal error: features2d/test/test_detectors_regre
    问题描述:ubuntu18.04安装opencv4.5.1+contrib报错test_features2d.cpp:51:10:fatalerror:features2d/test/test_detectors_regression.impl.hpp:没有那个文件或目录解决方法如题,报错如下:解决方法:按照报错提示,将opencv-4.5.1/modules中的features2d文件夹一整个复制到ope......
  • 使用Docker拉取镜像时报错
    使用Docker拉取镜像时报错问题截图问题描述使用Docker拉取镜像时,代码运行后直接报错错误信息:errorpullingimageconfiguration:downloadfailedafterattempts=6:net/http:TLShandshaketimeout所做尝试:按照搜索引擎推荐的解决方法向相应的配置文件中加入几个可......
  • 优化Redis缓存淘汰机制解决性能测试中报错率逐渐攀升问题
    在某个查询场景的性能测试过程中,遇到了一个问题:测试过程中报错率逐渐攀升。进一步检查后发现,在查询业务所在应用的后台日志和平台应用的后台日志中,都出现了用户登录相关的报错信息。经过排查分析,发现了问题的根源,并做出了解决方案。问题描述在测试过程中,发现报错率逐渐增加,并且......
  • 启动mysql数据库时报错unknown variable 'rpl_semi_sync_slave_enabled=1'
    问题描述:启动mysql数据库时报错unknownvariable'rpl_semi_sync_slave_enabled=1'.数据库:mysql5.7.21系统:rhel7.31、异常重现--启动数据库[mysql@mysql-leo-slavedata]$/usr/local/mysql/bin/mysqld_safe--defaults-file=/home/mysql/etc/my.cnf&--告警信息2023-08-......
  • 报错ValueError: Can't find 'adapter_config.json'
    前言在做组内2030项目时,我具体做的一个工作是对大模型进行LoRA微调,在整个过程中有许多坑,其中有些值得记录的问题,于是便产生了这篇博客。问题我在得到微调好的模型后,需要对模型进行性能测评。在加载模型时,遇到如下报错ValueError:Can'tfind'adapter_config.json'补充:报错......
  • 【python】使用ddddocr模块报错处理:AttributeError: module 'PIL.Image' has no attri
    安装pipinstallddddocr安装特别慢,几kb每秒,而且容易超时报错使用清华源下载:pipinstall-ihttps://pypi.tuna.tsinghua.edu.cn/simpleddddocr使用img_url="https://user.wangxiao.cn/apis//common/getImageCaptcha"img_resp=session.post(img_url)......
  • spring项目启动报错的处理
    自学spring,之前工程突然间无法启动,控制台有如下错误: ErrorstartingApplicationContext.Todisplaytheconditionsreportre-runyourapplicationwith'debug'enabled.2023-08-2521:24:26.473ERROR1303---[main]o.s.b.d.LoggingFailureAnalysisRepo......
  • Java maven 工程报错:cannot be read or is not a valid ZIP file
    原因:这个报错,其实jar包是个异常的jar。我是通过maven下载的后缀.lastupdate,然后我就直接把.lastupdate改成了.jar。但是其实这个并不是实际意义上的jar包。解决办法:找到匹配的jar包替换掉这个无效的jar包就可以了......
  • Autofac报错No constructors on type 'xxx' can be found with the constructor finde
    Noconstructorsontype'JK.TitanData.Repository.Fact_Sales_GMVTargetTotalRepository'canbefoundwiththeconstructorfinder'Autofac.Core.Activators.Reflection.DefaultConstructorFinder'.Seehttps://autofac.rtfd.io/help/no-construct......