Vishbro Posted October 23, 2018 Posted October 23, 2018 It's great tool but it is ineffective in virtual exposed or pls add the functions held by hack data features into a lua script Hack App Data.ver.1.7.build.31.apk
Administrators Enyby Posted October 23, 2018 Administrators Posted October 23, 2018 In virtual space, you do not need root to read (and change) application data. Therefore, you can read them and change them from lua scripts via io. * Functions.You just need to know exactly the right path.
Vishbro Posted October 23, 2018 Author Posted October 23, 2018 This app is unable to trace path in virtual environment can u pls mod it so that it reads data by itself
Administrators Enyby Posted October 23, 2018 Administrators Posted October 23, 2018 You write some kind of nonsense. If you know the absolute path to the file in the virtual space, then you can read it from the scripts. For example I read internal data for jackpal.androidterm installed in parallel space. GG also must run in Parallel Space. path = '/data/data/com.lbe.parallel.intl/parallel_intl/0/jackpal.androidterm/shared_prefs/jackpal.androidterm_preferences.xml' file = io.open(path, 'r') content = file:read('*a') file:close() print(content) In any case it is not intended feature, but is is possible with some limitation: GG must be installed with game in one virtual space, and you must know exact full path (it is vary on different virtual spaces).
Administrators Enyby Posted October 23, 2018 Administrators Posted October 23, 2018 Here another example which work in any virtual space: path = gg.getTargetInfo().dataDir..'/shared_prefs/jackpal.androidterm_preferences.xml' file = io.open(path, 'r') content = file:read('*a') file:close() print(gg.getTargetInfo().dataDir) print(path) print(content) Path to data in virtual space detected automatically. App must be selected in GG for this works.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.