Quantcast
Channel: 睿论坛 - 最新话题
Browsing all 5702 articles
Browse latest View live

如何获取macho中的字符串表,有没有类似otool等的工具

@cris wrote: 想单纯获取字符串表,mac里有没有工具获取,不要用代码解析。。 Posts: 2 Participants: 2 Read full topic

View Article


Image may be NSFW.
Clik here to view.

菜鸟第一次挑战apk逆向,结果整得怀疑人生,终于知道android apk加密的重要性

@jishunaxieshi wrote: 最近准备从x86上转移到linux上, 于是乎弄了个手游来玩, 正巧朋友推荐了一个修改软件,类似于八门神器、CE,用于搜索修改游戏数据,于是抱着好奇的心理初步研究了下该软件的原理: android apk加密2.png800x413 63.1 KB 研究了下软件, 搜索,修改,暂停游戏,实现BT都有,比较齐全,猜测应该核心功能是基于SO上实现的。...

View Article


Image may be NSFW.
Clik here to view.

用MonkeyDev中的MenkeyApp,拖进目标App后,进行简单的hook,完美生成新的App,但是用cocoapods后集入百度地图sdk后就会报错

@wylf wrote: 报错信息是:ld: entry point (_main) undefined. for architecture arm64clang: error: linker command failed with exit code 1 (use -v to see invocation) 51506585227_.pic_hd.jpg1770x1486 1.1 MB...

View Article

调试自己的写的代码无法进入汇编状态

@iceiPhone wrote: 想研究下block(arr,YES)这个传值在汇编下是怎么调用的,自己写了个代码 (void)press {void(^block)(NSArray *arr,BOOL flag) = ^(NSArray *arr,BOOL flag){ NSLog(@"arr = %@,flag = %d",arr,flag);}; NSArray *arr =...

View Article

请教如何hook枚举器

@gemo wrote: 以下代码,可以列出指定目录下的文件: NSDirectoryEnumerator *direnum = [[NSFileManager defaultManager] enumeratorAtPath:@"/xxx/"]; NSString *filename; while ((filename = [direnum nextObject] )) {...

View Article


Hook app组件属性的问题

@xiaocaigao wrote: 我想请问下各位,theos如何可以hook app内组件的属性呢? 比如我要修改一个app内的标签文字,用什么思路去做呢? Posts: 1 Participants: 1 Read full topic

View Article

Clang++编译.m如何导入private framework

@leaveMeAlone wrote: RT.用clang编译 几个.m文件 其中有个.m文件 需要引用系统的private framework ,这个编译的命令该怎么写呢~ Posts: 1 Participants: 1 Read full topic

View Article

安装macOS High Sierra可能出现问题的解决思路

@snakeninny wrote: 下载之后无法安装 从App Store下载了macOS High Sierra之后无法安装,各种报错,解决方案:在/Applications/里删掉安装程序,然后重新下载。 安装过程中报错 停止安装,用Time Machine恢复到安装前的状态,然后进入安全模式(开始按住shift),再安装。 Posts: 1 Participants: 1 Read...

View Article


如何導入子資料夾裡的category檔案在Theos Makefile

@wangdu wrote: 需求: 如何导入子资料夹裡的category档桉在Theos Makefile大大们上午好,小弟遇到一个资料结构在thoeos build up的问题。因为为了让整份project的资料夹结构更有分类性,所以我将一相同类型的category类得档桉放到子资料夹。其Makefile结构如下: include $(THEOS)/makefiles/common.mk...

View Article


哪位大神知道怎么绕过威信的非法客户端检测 虚心请教

@794570284 wrote: 小弟最近为了学习逆向了威信 但是因为bundleid不是威信原来的导致被封号 hook NSBundle的bundleIdentifier方法直接导致APP启动时闪退 有什么其他好的方法么? Posts: 2 Participants: 2 Read full topic

View Article

Image may be NSFW.
Clik here to view.

新疆十日行(多图杀猫)

@snakeninny wrote: 新疆的美是男人的美,他不矫情。 9月下旬去了趟新疆,跟大家分享我记录的美景。 45e37cbfly1fk41f4ve13j23b41wl1l6.jpg4288x2469 45e37cbfly1fk41f05rasj22gt274qva.jpg3197x2848 45e37cbfly1fk41exhv4rj23b4274he2.jpg4288x2848...

View Article

Daemon没有系统目录写入权限么

@fuguangxin wrote: 需求: daemon实现下载文件到/var/mobile/Media等系统目录代码 dispatch_async(dispatch_get_global_queue(0, 0), ^{ while (true) { NSLog(@"ABCD-开始下载"); if (![[NSFileManager defaultManager]...

View Article

Image may be NSFW.
Clik here to view.

怎样在一个应用启动的时候创建一个图标

@superlin wrote: 我刚学tweak想在一个应用启动的时候贴图上去可怎么都找不到demo,就像下面图片这个飞碟,可以给我一个教程吗?谢谢大家了 image.jpg1334x750 190 KB Posts: 1 Participants: 1 Read full topic

View Article


TheOS纯程式码撰写tableView在滑动scroll的时候瞬间app崩溃,求救

@wangdu wrote: 大大请帮帮忙,我使用TheOS开发我的越狱应用程序。 这是我以编程方式的表视图代码,我几乎做了最简单的方法来实现表视图方法。 表视图将正确显示默认表数据,但是当我滚动表视图时应用程序将崩溃。 我的错误日志没有显示任何明显的日志。 请帮助我,我真的找不到在滚动视图时立即崩溃的原因。...

View Article

同一个Tweak.xm中 HOOK多个类时,如何共享读写同一个变量呢?

@laomei wrote: Tweak.xm代码如下: import static NSString myVar=@"";%hook AAA %end %hook BBB %end 此时,如何实现在AAA和BBB中同时读写变量myVar ?多谢各位老师。 Posts: 2 Participants: 2 Read full topic

View Article


tweak的deb文件能被破解么

@1552723486 wrote: 开发一个tweak好像才几十k,teask能被破解么,要用啥工具破解,有没有防止被破解的方法或者思路啥。 Posts: 1 Participants: 1 Read full topic

View Article

Dump Objective C class hierarchy with frida

@ChiChou wrote: frida.re is a pretty good framework for iOS & macOS platform instrument. Listing all available Objective C classes in frida is easy: Object.keys(ObjC.classes) But actually this...

View Article


Asm是什么意思?

@albus123456 wrote: ASM是什么意思啊? Posts: 4 Participants: 3 Read full topic

View Article

Yololib 怎么使用 求教

@198401 wrote: yololib 安装教程 谁可以提供下 自己试着安装N次都失败 Posts: 2 Participants: 1 Read full topic

View Article

Yololib的安装教程 谁有啊

@198401 wrote: 大神们 谁给个教程,yololib的教程 安装教程 Posts: 2 Participants: 2 Read full topic

View Article
Browsing all 5702 articles
Browse latest View live