Closed monoblaine closed 2 years ago
Hello @monoblaine,
Such capabilities are available only in the commercial Talsec RASP. Unfortunately, it is not possible in freeRASP. All checks are asynchronous in the freeRASP and the application gets the information about the detected threats via callbacks.
The commercial version provides various types of reactions in contrast with the freeRASP. Whether the check is executed asynchronously is dependent on the customer’s preferences. For example, in the case of the App Integrity, it’s highly recommended to make this check critical and blocking; the application is then killed nearly instantly by the library. Checks in the commercial version are also executed with a custom strategy for better results. This is all part of the custom library configuration.
Checks in the freeRASP version are considered as non-critical and non-blocking. The application should react to the threats freeRASP has detected as it’s not designed to control the flow of the application (ie. open dialog after all checks passed).
Contact Sergiy (syakymchuk@talsec.app) to get more info about the commercial version.
Kind regards, Talsec Team
Thanks for the detailed info.
Is there any way to make the checks synchronous or convert those
onXDetected
callbacks to functions that returnFuture
s? Even adding aonXNotDetected
callback for each check would be great. Thanks.