File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1+ # freeRASP 3.8.0
2+
3+ - ⚡ Added new threat ` systemVPN ` for VPN detection
4+ - 📄 Documentation updates
5+
6+ ### Android
7+
8+ - ⚡ Added new threat ` devMode ` for Developer mode detection
9+ - ⚡ Enhanced and accelerated the data collection logic
10+ - ⚡ Fixed proguard warning in specific versions of RN
11+ - ⚡ Fixed issue with Arabic alphabet in logs caused by the device’s default system locale
12+ - ✔️ Increased the version of the GMS dependency
13+ - ✔️ Updated CA bundle
14+
15+ ### iOS
16+ - ⚡ Fixed issue with Arabic alphabet in logs caused by the device’s default system locale
17+ - ⚡ Passcode check is now periodical
18+ - ✔️ Updated CA bundle
19+
120# freeRASP 3.7.2
221
322- ⚡ Update expo config plugin to fix release build issue in RN 0.73
Original file line number Diff line number Diff line change @@ -222,6 +222,10 @@ const actions = {
222222 console .log (' secureHardwareNotAvailable' );
223223 },
224224 // Android & iOS
225+ systemVPN : () => {
226+ console .log (' systemVPN' );
227+ },
228+ // Android & iOS
225229 passcode : () => {
226230 console .log (' passcode' );
227231 },
@@ -233,6 +237,10 @@ const actions = {
233237 obfuscationIssues : () => {
234238 console .log (' obfuscationIssues' );
235239 },
240+ // Android only
241+ devMode : () => {
242+ console .log (' devMode' );
243+ },
236244};
237245
238246useFreeRasp (config , actions );
@@ -507,6 +515,8 @@ freeRASP is freemium software i.e. there is a Fair Usage Policy (FUP) that impos
507515 <li>Screen lock control</li>
508516 <li>Google Play Services enabled/disabled</li>
509517 <li>Last security patch update</li>
518+ <li>System VPN control</li>
519+ <li>Developer mode control</li>
510520 </ul>
511521 </td>
512522 <td>yes</td>
Original file line number Diff line number Diff line change 11{
22 "name" : " freerasp-react-native" ,
3- "version" : " 3.7.2 " ,
3+ "version" : " 3.8.0 " ,
44 "description" : " React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices." ,
55 "main" : " lib/commonjs/index" ,
66 "module" : " lib/module/index" ,
You can’t perform that action at this time.
0 commit comments