Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@grabjs/mobile-kit-bridge-sdk
Advanced tools
SDK for mobile kit bridge to offer unified method signatures for Android/iOS.
This SDK is a generic SDK for native webviews. For Grab SuperApp
integration, please use the SuperApp SDK.
SDK for mobile module bridge to offer unified method signatures for Android/iOS.
For example:
const identifier = await window.WrappedLocaleKit.invoke("getLocaleIdentifier");
await window.WrappedAnalyticsModule.invoke("track", { analyticsEvent: event });
await window.WrappedMediaKit.invoke("playDRMContent", { contentURL, license });
All module methods will have callback
as one of the parameters:
class AnalyticsModuleBridge {
fun track(requestString: String) {
val request = Gson().fromJson(...)
val callback = request.callback
...
}
}
final class AnalyticsModuleBridge: WKScriptMessageHandler {
func userContentController(
_ userContentController: WKUserContentController,
didReceive message: WKScriptMessage) {
let request = message.body as! [String : Any]
let callback = request["callback"] as! String
...
}
}
For the sake of standardization, all module methods must invoke the relevant callback after they finish, even if they run synchronously or do not have anything meaningful to return. Use the parameter callback
to identify the correct callback to invoke:
webView.evaluateJavascript("javascript:window.$callback(...)") { _ -> }
webView.evaluateJavascript("window.\(callback)(...)", nil)
The name of the callback always starts with:
[moduleName]_[functionName]Callback
For e.g.:
AnalyticsModule.track -> WrappedAnalyticsModule_trackCallback
MediaKit.playDRMContent -> WrappedMediaKit_playDRMContentCallback
This callback style allows us to pass errors to the partner app that they can handle in case something goes wrong.
All module methods return streams, e.g.:
/** Get stream of location updates. */
const subscription = window.WrappedLocationModule.invoke(
"observeLocationChange"
).subscribe({ next: console.log, complete: console.log });
Calling these methods returns DataStream
objects that can be subscribed to with StreamHandlers
(i.e. onValue
, onComplete
etc.). Once subscribe
is called, a Subscription
object is created to control when streaming should be terminated.
Note that DataStream
always creates new streams whenever subscribe
is called, so there is no need to worry about invoking it multiple times. The concept of DataStream
is similar to that of an Observable
, and it is easy to bridge the two:
const playObservable = new Observable(sub => {
const subscription = window.WrappedMediaKit.invoke('observePlayDRMContent', { isStream: true, ... }).subscribe({
next: data => sub.next(data),
complete: () => sub.complete(),
});
return () => subscription.unsubscribe();
});
playObservable.pipe(filter(...), map(...)).subscribe(...);
DataStream
also supports Promise
-style chaining and async-await
. Instead of getting values over time, this will simply deliver the first value that arrives:
const { result, error, status_code } = await window.WrappedMediaKit.invoke('observePlayDRMContent', { isStream: true, ... });
Please be aware that Promises returned by bridged methods are non-eager, so they will only be triggered on invocation of then
, or after an await
in an async
function.
Callback results must be in the format prescribed below:
type CallbackResult<T = unknown> = Readonly<{
/** The result of the operation. */
result: T,
/** The error object, if any. */
error: unknown,
/** The status code. */
status_code: number
}>;
Make sure native code is passing data in the correct format, or else callbacks will not be invoked.
FAQs
SDK for mobile kit bridge to offer unified method signatures for Android/iOS.
We found that @grabjs/mobile-kit-bridge-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 44 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.