File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-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 detecting Developer mode
9
+ - ⚡ Fixed proguard warning in specific versions of RN
10
+
1
11
# freeRASP 3.7.2
2
12
3
13
- ⚡ 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 = {
222
222
console .log (' secureHardwareNotAvailable' );
223
223
},
224
224
// Android & iOS
225
+ systemVPN : () => {
226
+ console .log (' systemVPN' );
227
+ },
228
+ // Android & iOS
225
229
passcode : () => {
226
230
console .log (' passcode' );
227
231
},
@@ -233,6 +237,10 @@ const actions = {
233
237
obfuscationIssues : () => {
234
238
console .log (' obfuscationIssues' );
235
239
},
240
+ // Android only
241
+ devMode : () => {
242
+ console .log (' devMode' );
243
+ },
236
244
};
237
245
238
246
useFreeRasp (config , actions );
@@ -507,6 +515,8 @@ freeRASP is freemium software i.e. there is a Fair Usage Policy (FUP) that impos
507
515
<li>Screen lock control</li>
508
516
<li>Google Play Services enabled/disabled</li>
509
517
<li>Last security patch update</li>
518
+ <li>System VPN control</li>
519
+ <li>Developer mode control</li>
510
520
</ul>
511
521
</td>
512
522
<td>yes</td>
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " freerasp-react-native" ,
3
- "version" : " 3.7.2 " ,
3
+ "version" : " 3.8.0 " ,
4
4
"description" : " React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices." ,
5
5
"main" : " lib/commonjs/index" ,
6
6
"module" : " lib/module/index" ,
You can’t perform that action at this time.
0 commit comments