首页
社区
课程
招聘
[原创]Textobot-TB插件进程级API详解&基础篇完结
发表于: 2020-1-7 10:13 10988

[原创]Textobot-TB插件进程级API详解&基础篇完结

2020-1-7 10:13
10988

0x00.交个朋友

0x01.Frida简介

0x02.界面类API

0x03.按键类API

0x04.工具类API

0x05.基础篇完结


手游从业者模拟器玩家请关注云游模拟器PantaWin;

Android开发者请关注云游模拟器PantaWin/PantaMac/PantaLinux;

iOS越狱开发者请关注晓文框架Textobot;

Android插件开发者请关注飞度框架Fridobot;

移动调试器重度用户请关注利达调试器LidaDbg;

我们的产品推荐使用git下载和更新,在码云搜索geekneo即可。




// ensure our module is loaded
const libtextobot = Module.load('/Library/MobileSubstrate/DynamicLibraries/textobot.dylib');
function TB_api(name, rettype, argstype) {
    return new NativeFunction(libtextobot.getExportByName(name), rettype, argstype);
}
​
// pickup textobot APIs
const textobot = {
    TB_logpath      : TB_api('TB_logpath', 'pointer', []),
    TB_logbuff      : TB_api('TB_logbuff', 'pointer', []),
    TB_logflush     : TB_api('TB_logflush', 'int', []),
    TB_dialog       : TB_api('TB_dialog','int', ['pointer']),
    TB_system       : TB_api('TB_system','int', ['pointer']),
    TB_root_system  : TB_api('TB_root_system', 'int', ['pointer']),
    TB_window       : TB_api('TB_window', 'pointer', []),
    TB_touch        : TB_api('TB_touch', 'int', ['int', 'int']),
    TB_swipe        : TB_api('TB_swipe', 'int', ['int', 'int', 'int', 'int']),
    // API likes TB_*_new should call TB_sptr_free to free the heap memory
    // see free function bellow
    TB_appdir_new   : TB_api('TB_appdir_new', 'pointer', []),
    TB_docdir_new   : TB_api('TB_docdir_new', 'pointer', []),
    TB_tmpdir_new   : TB_api('TB_tmpdir_new', 'pointer', []),
    TB_urlget_new   : TB_api('TB_urlget_new', 'pointer', ['pointer']),
    TB_urlpost_new  : TB_api('TB_urlpost_new', 'pointer', ['pointer', 'pointer']),
    TB_sptr_free    : TB_api('TB_sptr_free', 'void', ['pointer']),
    // ...
    // see https://gitee.com/geekneo/Textobot/blob/master/Doc/api.md for more APIs
};
​
// put the string to textobot's native buffer
function puts(s) {
    // logbuff's size is 4096
    if (s.length >= 4096) {
        console.log('Ignoring long string ' + s.length);
        return;
    }
    textobot.TB_logbuff().writeUtf8String(s);
    return textobot.TB_logbuff();
}
​
// wrap logger util
function logs(s) {
    puts(s);
    textobot.TB_logflush();
}
​
// wrap free util
function free(ptr) {
    var sptr = puts(ptr.toString(16));
    textobot.TB_sptr_free(sptr);
}
​
// slow logger, usually for global log
console.log("The textobot template plugin's log file is at " + 
    textobot.TB_logpath().readUtf8String());
​
// fast log, usually for hooker with better performance
logs('The textobot template plugin is running ...');
​
function demo_impl() {
    const appdir = textobot.TB_appdir_new();
    // show a dialog
    // the first line is TITLE
    // the left lines is CONTENT
    textobot.TB_dialog(puts(
        'Textobot Tips' +
        '\n' +
        'The textobot template plugin is running inside ' +
        appdir.readUtf8String()
    ));
​
    // API ends with _new should call free deallocate the heap memory
    free(appdir);
}

当前的Textobot是以独立模块的方式集成Frida,所以只能提供C API,然后通过Frida的NativeFunction桥接一下才可以使用。这样的模式使用起来稍微麻烦一些,直接扩展Frida的JavaScript运行时当然是最佳方案了,这个留着后面更新时再说了吧,我们现阶段的目标是稳定、够用。Frida的使用需要iOS SDK开发经验,门槛略高。关于它的详细使用方法请参考官方文档,在这里我们着重指出对于Textobot而言最核心的一点,Objective-C桥接。

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

最后于 2020-1-7 10:15 被GeekNeo编辑 ,原因:
收藏
免费 1
支持
分享
最新回复 (3)
雪    币: 211
活跃值: (531)
能力值: ( LV9,RANK:172 )
在线值:
发帖
回帖
粉丝
2
FBIDEMac 没运行起来, 码云上也提了

yedeMacBook-Pro-2:~ ye$ /Users/ye/work/source/FBIDEMac.git/Fridobot.app/Contents/MacOS/fridobot

Warning: translation file 'qt_zh_CN'could not be loaded.

Using default.

Warning: translation file 'eric6_zh_CN'could not be loaded.

Using default.

Warning: translation file 'qscintilla_zh_CN'could not be loaded.

Using default.

BackgroundService listening on: 58200

/Users/ye/work/source/FBIDEMac.git/Fridobot.app/Contents/MacOS/2.7/Resources/Python.app/Contents/MacOS/Python: can't open file '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/eric6/Utilities/BackgroundClient.py': [Errno 2] No such file or directory

An unhandled exception occurred. Please report the problem

using the error reporting dialog or via email to <eric-bugs@eric-ide.python-projects.org>.

A log has been written to "/Users/ye/.eric6/eric6_error.log".


Error information:

--------------------------------------------------------------------------------

2020-03-06, 17:55:54

--------------------------------------------------------------------------------

<class 'PluginManager.PluginExceptions.PluginPathError'>:

The internal plugin directory <b>/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/eric6/Plugins</b> does not exits.

--------------------------------------------------------------------------------

  File "/Users/ye/work/source/FBIDEMac.git/Fridobot.app/Contents/MacOS/2.7/lib/python2.7/site-packages/eric6/eric6.py", line 359, in <module>

    main()

  File "/Users/ye/work/source/FBIDEMac.git/Fridobot.app/Contents/MacOS/2.7/lib/python2.7/site-packages/eric6/eric6.py", line 340, in main

    restartArgs)

  File "/Users/ye/work/source/FBIDEMac.git/Fridobot.app/Contents/MacOS/2.7/lib/python2.7/site-packages/eric6/UI/UserInterface.py", line 226, in __init__

    self.pluginManager = PluginManager(self, develPlugin=plugin)

  File "/Users/ye/work/source/FBIDEMac.git/Fridobot.app/Contents/MacOS/2.7/lib/python2.7/site-packages/eric6/PluginManager/PluginManager.py", line 123, in __init__

    raise PluginPathError(msg)


--------------------------------------------------------------------------------

Version Numbers:

  Python 2.7.13

  Qt 4.8.7

  PyQt 4.11.4

  sip 4.18.1

  QScintilla 2.9.3

  WebKit 534.34

  eric6 6.1.8 (rev. a8a747768561)


Platform: darwin

2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 12:39:47)

[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)]


yedeMacBook-Pro-2:~ ye$ ls -l /Library/Frameworks/Python.framework

ls: /Library/Frameworks/Python.framework: No such file or directory

2020-3-6 18:12
0
雪    币: 211
活跃值: (531)
能力值: ( LV9,RANK:172 )
在线值:
发帖
回帖
粉丝
3
.
最后于 2020-3-9 10:45 被vmtest编辑 ,原因:
2020-3-6 18:12
0
雪    币: 1662
活跃值: (3569)
能力值: ( LV7,RANK:100 )
在线值:
发帖
回帖
粉丝
4
vmtest FBIDEMac 没运行起来, 码云上也提了yedeMacBook-Pro-2:~ ye$ /Users/ye/work/source/FBIDEMac.git/Fridobot.app/Conten ...
修复了,你再试试。
2020-3-8 08:50
0
游客
登录 | 注册 方可回帖
返回
//