176
Views
2
Comments
[iRoot - Android iOS Jailbreak/Root Detection] Bug Report
Question

CheckIsRooted and CheckIsRootedRedBeer both affected.

ValidatePlugin, if available (TRUE) must go to JS node,

But as you can see in screenshot below, the FALSE branch go to JS.


Solution: Swap TRUE/FALSE Connectors


Also on CheckiRootPluginLoaded:

on device with old APK/IPA, it will always gave "IRoot not defined" error message.

The right way to check IRoot loaded is:


if(typeof(IRoot) === "undefined")
    $parameters.IsLoaded = false;
else
    $parameters.IsLoaded = true;

UserImage.jpg
Dylan Heunis

Good catch. Let's get this fixed.

2021-04-09 11-42-43
assif_tiger
 
MVP

Thanks, Harlin Setiadarma,

Published the fixed version 1.0.2 for the same.

For now, it is under-dev, will mark its stable release after a test on both Android & iOS devices.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.