-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact_native_rasp_turbo.cpp
More file actions
398 lines (345 loc) · 13.2 KB
/
react_native_rasp_turbo.cpp
File metadata and controls
398 lines (345 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/**
* UNIVERSAL BLACKBOX RASP ENGINE - React Native TurboModule
*
* This is a "thin" wrapper that calls the native executeAudit(int selector) method.
* All security logic is in the unified C++ core engine.
*
* Security Requirements:
* - NO SENSITIVE STRINGS in framework-level code
* - USE OBFUSCATED SELECTORS (e.g., 0x1A2B instead of "isRooted")
* - SILENT FAILURES with randomized error codes
*
* Platform Support: Android (JNI), iOS (Objective-C++)
* Architecture: TurboModule (New Architecture) + Legacy Bridge
*/
#include <react-native/turbo-module/registry.h>
#include <react-native/turbo-module/turbomodule.h>
#include <jsi/jsi.h>
#include "universal_rasp_core.cpp"
using namespace facebook;
// ============================================
// OBFUSCATED SELECTORS
// ============================================
/**
* Obfuscated selector values
* These hex values map to different security checks in the native engine
*/
namespace RASPSelectors {
static constexpr int fullAudit = 0x1A2B;
static constexpr int rootJailbreakOnly = 0x1A2C;
static constexpr int debuggerOnly = 0x1A2D;
static constexpr int fridaOnly = 0x1A2E;
}
/**
* Obfuscated status type values
*/
namespace RASPStatusTypes {
static constexpr int rootJailbreak = 0x2A2B;
static constexpr int debugger = 0x2A2C;
static constexpr int frida = 0x2A2D;
}
/**
* Randomized error codes
*/
namespace RASPErrorCodes {
static constexpr int securityOK = 0x7F3D;
static constexpr int suspicious = 0x7F3C;
static constexpr int highlySuspicious = 0x7F3B;
static constexpr int confirmedTamper = 0x7F3A;
}
// ============================================
// TURBOMODULE SPECIFICATION
// ============================================
/**
* RASPTurboModule - TurboModule Specification
*
* This defines the JSI interface for the React Native TurboModule
* All method names are obfuscated to avoid sensitive strings
*/
namespace facebook {
namespace react {
class RASPTurboModuleSpec : public TurboModuleSpec {
public:
RASPTurboModuleSpec(const std::string& name) : TurboModuleSpec(name) {}
// Execute security audit
virtual int executeAudit(int selector) = 0;
// Get detection status
virtual int getStatus(int statusType) = 0;
// Get detailed status
virtual jsi::Object getDetailedStatus(jsi::Runtime& runtime) = 0;
};
} // namespace react
} // namespace facebook
// ============================================
// TURBOMODULE IMPLEMENTATION
// ============================================
/**
* RASPTurboModule - TurboModule Implementation
*
* This is the actual implementation that calls the unified C++ core
*/
namespace facebook {
namespace react {
class RASPTurboModule : public NativeRASPTurboModuleSpec {
public:
RASPTurboModule(std::shared_ptr<CallInvoker> jsInvoker)
: NativeRASPTurboModuleSpec(jsInvoker) {}
/**
* Execute security audit
*/
int executeAudit(int selector) override {
try {
// Call the unified C++ core
return universal_rasp_execute_audit(selector);
} catch (...) {
// Silent failure - return randomized error code
return RASPErrorCodes::securityOK;
}
}
/**
* Get detection status
*/
int getStatus(int statusType) override {
try {
// Call the unified C++ core
return universal_rasp_get_status(statusType);
} catch (...) {
// Silent failure - return 0 (not detected)
return 0;
}
}
/**
* Get detailed status
*/
jsi::Object getDetailedStatus(jsi::Runtime& runtime) override {
try {
jsi::Object result(runtime);
// Get detection statuses
int rootJailbreak = universal_rasp_get_status(RASPStatusTypes::rootJailbreak);
int debugger = universal_rasp_get_status(RASPStatusTypes::debugger);
int frida = universal_rasp_get_status(RASPStatusTypes::frida);
int securityResult = universal_rasp_execute_audit(RASPSelectors::fullAudit);
// Set properties
result.setProperty(runtime, "rootJailbreakDetected", jsi::Value(runtime, rootJailbreak == 1));
result.setProperty(runtime, "debuggerDetected", jsi::Value(runtime, debugger == 1));
result.setProperty(runtime, "fridaDetected", jsi::Value(runtime, frida == 1));
result.setProperty(runtime, "securityResult", jsi::Value(runtime, securityResult));
return result;
} catch (...) {
// Silent failure - return empty object
return jsi::Object(runtime);
}
}
};
} // namespace react
} // namespace facebook
// ============================================
// TURBOMODULE REGISTRATION
// ============================================
/**
* Register the TurboModule
* This is called during React Native initialization
*/
extern "C" {
__attribute__((visibility("default")))
void registerRASPTurboModule(
jsi::Runtime& runtime,
std::shared_ptr<react::CallInvoker> jsInvoker
) {
// Create and register the TurboModule
auto module = std::make_shared<react::RASPTurboModule>(jsInvoker);
// Register with React Native
// This is a simplified registration - actual implementation depends on React Native version
// For React Native 0.74+, use the new TurboModule registry
// For older versions, use the legacy bridge
}
} // extern "C"
// ============================================
// LEGACY BRIDGE IMPLEMENTATION
// ============================================
#if defined(__ANDROID__)
#include <jni.h>
#include <android/log.h>
/**
* Legacy Android JNI Bridge
*
* This provides backward compatibility with the old React Native bridge
* Uses JNI to call the unified C++ core
*/
extern "C" {
JNIEXPORT jint JNICALL
Java_com_aran_rasp_RASPModule_executeAudit(
JNIEnv* env,
jobject thiz,
jint selector
) {
try {
return universal_rasp_execute_audit(selector);
} catch (...) {
return RASPErrorCodes::securityOK;
}
}
JNIEXPORT jint JNICALL
Java_com_aran_rasp_RASPModule_getStatus(
JNIEnv* env,
jobject thiz,
jint statusType
) {
try {
return universal_rasp_get_status(statusType);
} catch (...) {
return 0;
}
}
JNIEXPORT jobject JNICALL
Java_com_aran_rasp_RASPModule_getDetailedStatus(
JNIEnv* env,
jobject thiz
) {
try {
// Get detection statuses
int rootJailbreak = universal_rasp_get_status(RASPStatusTypes::rootJailbreak);
int debugger = universal_rasp_get_status(RASPStatusTypes::debugger);
int frida = universal_rasp_get_status(RASPStatusTypes::frida);
int securityResult = universal_rasp_execute_audit(RASPSelectors::fullAudit);
// Create Java HashMap
jclass hashMapClass = env->FindClass("java/util/HashMap");
jmethodID hashMapConstructor = env->GetMethodID(hashMapClass, "<init>", "()V");
jobject hashMap = env->NewObject(hashMapClass, hashMapConstructor);
jmethodID putMethod = env->GetMethodID(hashMapClass, "put", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;");
// Put values
jstring rootJailbreakKey = env->NewStringUTF("rootJailbreakDetected");
jboolean rootJailbreakValue = (rootJailbreak == 1) ? JNI_TRUE : JNI_FALSE;
jobject rootJailbreakObj = env->NewObject(env->FindClass("java/lang/Boolean"), env->GetMethodID(env->FindClass("java/lang/Boolean"), "<init>", "(Z)V"), rootJailbreakValue);
env->CallObjectMethod(hashMap, putMethod, rootJailbreakKey, rootJailbreakObj);
jstring debuggerKey = env->NewStringUTF("debuggerDetected");
jboolean debuggerValue = (debugger == 1) ? JNI_TRUE : JNI_FALSE;
jobject debuggerObj = env->NewObject(env->FindClass("java/lang/Boolean"), env->GetMethodID(env->FindClass("java/lang/Boolean"), "<init>", "(Z)V"), debuggerValue);
env->CallObjectMethod(hashMap, putMethod, debuggerKey, debuggerObj);
jstring fridaKey = env->NewStringUTF("fridaDetected");
jboolean fridaValue = (frida == 1) ? JNI_TRUE : JNI_FALSE;
jobject fridaObj = env->NewObject(env->FindClass("java/lang/Boolean"), env->GetMethodID(env->FindClass("java/lang/Boolean"), "<init>", "(Z)V"), fridaValue);
env->CallObjectMethod(hashMap, putMethod, fridaKey, fridaObj);
jstring securityResultKey = env->NewStringUTF("securityResult");
jobject securityResultObj = env->NewObject(env->FindClass("java/lang/Integer"), env->GetMethodID(env->FindClass("java/lang/Integer"), "<init>", "(I)V"), securityResult);
env->CallObjectMethod(hashMap, putMethod, securityResultKey, securityResultObj);
return hashMap;
} catch (...) {
return nullptr;
}
}
}
#elif defined(__APPLE__)
#import <React/RCTBridgeModule.h>
#import <Foundation/Foundation.h>
/**
* Legacy iOS Objective-C Bridge
*
* This provides backward compatibility with the old React Native bridge
* Uses Objective-C to call the unified C++ core
*/
@interface RASPLegacyModule : NSObject <RCTBridgeModule>
@end
@implementation RASPLegacyModule
RCT_EXPORT_MODULE();
/**
* Execute security audit
*/
RCT_EXPORT_METHOD(executeAudit:(NSInteger)selector
resolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject) {
@try {
NSInteger result = universal_rasp_execute_audit((int)selector);
resolve(@(result));
} @catch (NSException *exception) {
reject(@"EXECUTE_AUDIT_ERROR", exception.reason, nil);
}
}
/**
* Get detection status
*/
RCT_EXPORT_METHOD(getStatus:(NSInteger)statusType
resolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject) {
@try {
NSInteger result = universal_rasp_get_status((int)statusType);
resolve(@(result));
} @catch (NSException *exception) {
reject(@"GET_STATUS_ERROR", exception.reason, nil);
}
}
/**
* Get detailed status
*/
RCT_EXPORT_METHOD(getDetailedStatus:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject) {
@try {
NSDictionary *status = @{
@"rootJailbreakDetected": @(universal_rasp_get_status(RASPStatusTypes::rootJailbreak) == 1),
@"debuggerDetected": @(universal_rasp_get_status(RASPStatusTypes::debugger) == 1),
@"fridaDetected": @(universal_rasp_get_status(RASPStatusTypes::frida) == 1),
@"securityResult": @(universal_rasp_execute_audit(RASPSelectors::fullAudit))
};
resolve(status);
} @catch (NSException *exception) {
reject(@"GET_DETAILED_STATUS_ERROR", exception.reason, nil);
}
}
@end
#endif
// ============================================
// USAGE IN REACT NATIVE (JavaScript/TypeScript)
// ============================================
/**
* JavaScript/TypeScript usage:
*
* ```typescript
* import { NativeModules } from 'react-native';
*
* // TurboModule (New Architecture)
* import RASPTurboModule from 'react-native-rasp/src/NativeRASP';
*
* // Legacy Bridge (Old Architecture)
* const { RASPLegacyModule } = NativeModules;
*
* // Using TurboModule
* const checkSecurity = async () => {
* try {
* const result = await RASPTurboModule.executeAudit(0x1A2B);
* console.log('Security result:', result);
* } catch (error) {
* console.error('Security check failed:', error);
* }
* };
*
* // Using Legacy Bridge
* const checkSecurityLegacy = async () => {
* try {
* const result = await RASPLegacyModule.executeAudit(0x1A2B);
* console.log('Security result:', result);
* } catch (error) {
* console.error('Security check failed:', error);
* }
* };
*
* // Convenience methods (can be added to the TurboModule spec)
* const isRootJailbroken = async () => {
* const result = await RASPTurboModule.getStatus(0x2A2B);
* return result === 1;
* };
*
* const isDebuggerAttached = async () => {
* const result = await RASPTurboModule.getStatus(0x2A2C);
* return result === 1;
* };
*
* const isFridaAttached = async () => {
* const result = await RASPTurboModule.getStatus(0x2A2D);
* return result === 1;
* };
*
* // Detailed status
* const detailedStatus = await RASPTurboModule.getDetailedStatus();
* console.log('Detailed status:', detailedStatus);
* ```
*/