Sidecar is a runtime hooking tool for intercepting function calls by TypeScript annotation with ease, powered by Frida.RE.
Image source: 1920s Raleigh Box Sidecar Outfit & ShellterProject
Segregating the functionalities of an application into a separate process can be viewed as a Sidecar pattern. The Sidecar design pattern allows you to add a number of capabilities to your application without the need of additional configuration code for 3rd party components.
As a sidecar is attached to a motorcycle, similarly in software architecture a sidecar is attached to a parent application and extends/enhances its functionalities. A Sidecar is loosely coupled with the main application.
— SOURCE: Sidecar Design Pattern in your Microservices Ecosystem, Samir Behara, July 23, 2018
Hook: by intercepting function calls or messages or events passed between software components. — SOURCE: Hooking, Wikipedia
- Easy to use by TypeScript decorators/annotations
@Call(memoryAddress)for make a API for calling memory address from the binary@Hook(memoryAddress)for emit arguments when a memory address is being called
- Portable on Windows, macOS, GNU/Linux, iOS, Android, and QNX, as well as X86, Arm, Thumb, Arm64, AArch64, and Mips.
- Powered by Frida.RE and can be easily extended by any agent script.
- Mac: disable System Integrity Protection
When you are running an application on the Linux, Mac, Windows, iPhone, or Android, you might want to make it programmatic, so that your can control it automatically.
The SDK and API are designed for achieving this, if there are any. However, most of the application have very limited functionalities for providing a SDK or API to the developers, or they have neither SDK nor API at all, what we have is only the binary executable application.
How can we make a binary executable application to be able to called from our program? If we can call the function in the application process directly, then we will be able to make the application as our SDK/API, then we can make API call to control the application, or hook function inside the application to get to know what happened.
I have the above question and I want to find an universal way to solve it: Frida is for rescue. Frida is a dynamic instrumentation toolkit for developers and reverse-engineers, which can help us easily call the internal function from a process, or hook any internal function inside the process. And it has a nice Node.js binding and TypeScript support, which is nice to me because I love TypeScript much.
That's why I start build this project: Sidecar. Sidecar is a runtime hooking tool for intercepting function calls by decorate a TypeScript class with annotation.
Here's an example code example for demostration that how easy it can help you to hook a exiting application.
@Sidecar('chatbox')
class ChatboxSidecar extends SidecarBody {
@Call(0x11c9)
@RetType('void')
mo (
@ParamType('pointer', 'Utf8String') content: string,
): Promise<string> { return Ret(content) }
@Hook(0x11f4)
mt (
@ParamType('pointer', 'Utf8String') content: string,
) { return Ret(content) }
}
async function main () {
const sidecar = new ChatboxSidecar()
await attach(sidecar)
sidecar.on('hook', ({ method, args }) => {
console.log('method:', method)
console.log('args:', args)
sidecar.mo('Hello from Sidecar'),
})
process.on('SIGINT', () => detach(sidecar))
process.on('SIGTERM', () => detach(sidecar))
}
main().catch(console.error)Learn more from the sidecar example: https://github.com/huan/sidecar/blob/main/examples
-
Intercepter.attach()aNativeCallback()ptr not work in Sidecar generated script. (it is possible by direct using the frida cli)worked! (#9) - Add typing.d.ts for Sidecar Agent pre-defined variables & functions
- Add
@Name()support for specify parameter names in@Hook()-ed method args. - Calculate
Memory.alloc()in sidecar agent scripts automatically.
When we are running a Sidecar Class, the following steps will happend:
- From the sidecar class file, decorators save all configs to the class metadata.
@Sidecar(): <src/decorators/sidecar/sidecar.ts>, <src/decorators/sidecar/build-sidecar-metadata.ts>@Call(): <src/decorators/call/call.ts>@ParamType(): <src/decorators/param-type/param-type.ts>@RetType(): <src/decorators/ret-type/ret-type.ts>@Hook(),@Name, etc.
SidecarBody(<src/sidecar-body/sidecar-body.ts>) base class will generateagentSource:getMetadataSidecar()(<src/decorators/sidecar/metadata-sidecar.ts>) for get the sidecar metadata from the classbuildAgentSource()(<src/agent/build-agent-source.ts>) for generate the agent source code for the whole sidecar system.
- Call the
attach()method to attach the sidecar to the target - Call the
detach()method to detach the sidecar to the target
sidecarTarget:SidecarTarget,initAgentScript? :string,
The class decorator.
sidecarTarget is the executable binary name,
and the initAgentScript is a Frida agent script
that help you to do whatever you want to do
with Frida system.
Example:
import { Sidecar } from 'sidecar'
@Sidecar('chatbox')
class ChatboxSidecar {}It is possible to load a init agent script, for example:
const initAgentScript = 'console.log("this will be runned when the sidecar class initiating")'
@Sidecar(
'chatbox',
initAgentScript,
)sidecarTarget supports Spawn mode, by specifing the sidecarTarget as a array:
@Sidecar([
'/bin/sleep', // command
[10], // args
])To learn more about the power of initAgentScript, see also this great repo with lots of examples: Hand-crafted Frida examples
Base class for the Sidecar class. All Sidecar class need to extends from the SidecarBody, or the system will throw an error.
Example:
import { SidecarBody } from 'sidecar'
class ChatboxSidecar extends SidecarBody {}functionTarget:FunctionTarget
The native call method decorator.
functionTarget is the address (in number type) of the function which we need to call in the executable binary.
Example:
import { Call } from 'sidecar'
class ChatboxSidecar {
@Call(0x11c9) mo () {}
}If the functionTarget is not the type of number, then it can be string or an FunctionTarget object. See FunctionTarget section to learn more about the advanced usage of FunctionTarget.
functionTarget:FunctionTarget
The hook method decorator.
functionTarget is the address (in number type) of the function which we need to hook in the executable binary.
Example:
import { Hook } from 'sidecar'
class ChatboxSidecar {
@Hook(0x11f4) mt () {}
}If the functionTarget is not the type of number, then it can be string or an FunctionTarget object. See FunctionTarget section to learn more about the advanced usage of FunctionTarget.
nativeType:NativeTypepointerTypeList:PointerType[]
import { RetType } from 'sidecar'
class ChatboxSidecar {
@RetType('void') mo () {}nativeType:NativeTypepointerTypeList:PointerType[]
import { ParamType } from 'sidecar'
class ChatboxSidecar {
mo (
@ParamType('pointer', 'Utf8String') content: string,
) {}TODO: to be implemented.
parameterName:string
The parameter name.
This is especially useful for Hook methods.
The hook event will be emit with the method name and the arguments array.
If the Name(parameterName) has been set,
then the event will have additional information for the parameter names.
import { Name } from 'sidecar'
class ChatboxSidecar {
mo (
@Name('content') content: string,
) {}args:any[]
Example:
import { Ret } from 'sidecar'
class ChatboxSidecar {
mo () { return Ret() }The FunctionTarget is where @Call or @Hook to be located. It can be created by the following factory helper functions:
addressTarget(address: number, module?: string): memory address. i.e.0x369adf. Can specify a secondmoduleto calladdressin a specified moduleagentTarget(funcName: string): the JavaScript function name ininitAgentScriptto be usedexportTarget(exportName: string, exportModule?: string): export name of a function. Can specify a secondmoduleNameto loadexportNamefrom it.objcTarget: to be addedjavaTarget: to be added
For convenice, the number and string can be used as FunctionTarget as an alias of addressTarget() and agentTarget(). When we are defining the @Call(target) and @Hook(target):
- if the target type is
number, then it will be converted toaddressTarget(target) - if the target type is
string, then it will be converted toagentTarget(target)
Example:
import {
Call,
addressTarget,
} from 'sidecar'
class ChatboxSidecar {
@Call(
addressTarget(0x11c9)
)
mo () {}
}agentTarget let you specify a funcName in the initAgentScript source code, and will use it directly for advanced users.
There's two type of the AgentTarget usage: @Call and @Hook.
AgentTargetwith@Call: thefuncNameshould be a JavaScript function instance in theinitAgentScript. The decorated method call that function.AgentTargetwith@Hook: thefuncNameshould be aNativeCallbackinstance in theinitAgentScript. The decorated method hook that callback.
Notes:
- The
NativeFunctionpassed to@Callmust pay attention to the Garbage Collection of the JavaScript inside Frida. You have to hold a reference to all the memory you alloced by yourself, for example, store them in aObjectlikeconst refHolder = { buf }, then make sure therefHolderwill be hold unless you canfreethe memory that you have alloced before. (See also: Frida Best Practices) - the
NativeCallbackpassed to@Hookis recommended to be a empty function, like() => {}because it will be replaced by Sidecar/Frida. So you should not put any code inside it,
Sidecar provide a utility named sidecar-dump for viewing the metadata of the sidecar class, or debuging the frida agent init source code.
You can run this util by the following command:
$ npx sidecar-dump --help
sidecar-dump <subcommand>
> Sidecar utility for dumping metadata/source for a sidecar class
where <subcommand> can be one of:
- metadata - Dump sidecar metadata
- source - Dump sidecar agent source
For more help, try running `sidecar-dump <subcommand> --help`sidecar-dump support two sub commands:
metadata: dump the metadata for a sidecar classsource: dump the generated frida agent source code for a sidecar class
Sidecar is using decorators heavily, for example, we are using @Call() for specifying the process target, @ParamType() for specifying the parameter data type, etc.
Internally, sidecar organize all the decorated information as metadata and save them into the class.
the sidecar-dump metadata command is to viewing this metadata information, so that we can review and debug them.
For example, the following is the metadata showed by sidecar-dump for our ChatboxSidecar class from examples/chatbox-sidecar.ts.
$ sidecar-dump metadata examples/chatbox-sidecar.ts
{
"initAgentScript": "console.log('inited...')",
"interceptorList": [
{
"agent": {
"name": "mt",
"paramTypeList": [
[
"pointer",
"Utf8String"
]
],
"target": "agentMt_PatchCode",
"type": "agent"
}
}
],
"nativeFunctionList": [
{
"agent": {
"name": "mo",
"paramTypeList": [
[
"pointer",
"Utf8String"
],
[
"pointer",
"Utf8String"
]
],
"retType": [
"void"
],
"target": "agentMo",
"type": "agent"
}
}
],
"sidecarTarget": "/tmp/t/examples/chatbox/chatbox-linux"
}Sidecar is using Frida to connect to the program process and make communication with it.
In order to make the connection, sidecar will generate a frida agent source code, and using this agent as the bridge between the sidecar, frida, and the target program process.
the sidecar-dump source command is to viewing this frida agent source, so that we can review and debug them.
For example, the following is the source code showed by sidecar-dump for our ChatboxSidecar class from examples/chatbox-sidecar.ts.
$ sidecar-dump source examples/chatbox-sidecar.ts
...
const __sidecar__mo_Function_wrapper = (() => {
const nativeFunctionAddress =
__sidecar__moduleBaseAddress
.add(0x11e9)
const nativeFunction = new NativeFunction(
nativeFunctionAddress,
'int',
['pointer'],
)
return function (...args) {
log.verbose(
'SidecarAgent',
'mo(%s)',
args.join(', '),
)
// pointer type for arg[0] -> Utf8String
const mo_NativeArg_0 = Memory.alloc(1024 /*Process.pointerSize*/)
mo_NativeArg_0.writeUtf8String(args[0])
const ret = nativeFunction(...[mo_NativeArg_0])
return Number(ret)
}
})()
;(() => {
const interceptorTarget =
__sidecar__moduleBaseAddress
.add(0x121f)
Interceptor.attach(
interceptorTarget,
{
onEnter: args => {
log.verbose(
'SidecarAgent',
'Interceptor.attach(0x%s) onEnter()',
Number(0x121f).toString(16),
)
send(__sidecar__payloadHook(
'mt',
[ args[0].readUtf8String() ]
), null)
},
}
)
})()
rpc.exports = {
mo: __sidecar__mo_Function_wrapper,
}You can dump the sidecar agent source code to a javascript file, then using it with frida directly for debugging & testing.
$ sidecar-dump source chatbox-sidecar.ts > agent.js
$ frida chatbox -l agent.js
____
/ _ | Frida 14.2.18 - A world-class dynamic instrumentation toolkit
| (_| |
> _ | Commands:
/_/ |_| help -> Displays the help system
. . . . object? -> Display information about 'object'
. . . . exit/quit -> Exit
. . . .
. . . . More info at https://frida.re/docs/home/
[Local::chatbox]-> rpc.exports.mo('hello from frida cli')- TypeScript - Frida环境搭建 - windows (给IDE提供智能感知/提示)
- TypeScript - Example - Frida agent written in TypeScript
- Talk Video - Prototyping And Reverse Engineering With Frida by Jay Harris
- Talk Video - r2con 2017 - Intro to Frida and Dynamic Machine Code Transformations by Ole Andre
- Hand-crafted Frida examples
- Slide - 基于 FRIDA 的全平台逆向分析 - [email protected] (GitHub repo)
- Awesome Frida
- How to call methods in Frida Gadget (JavaScript API iOS)
- Frida调用栈符号恢复
- Cross-platform reversing with Frida, Oleavr, NoConName December 2015
- Frida: JavaScript API
- Calling native functions with Frida, @poxyran
- Shellcoding an Arm64 In-Memory Reverse TCP Shell with Frida, Versprite
- Anatomy of a code tracer, Ole André Vadla Ravnås, Oct 24, 2014
- frida-boot 👢 a binary instrumentation workshop, using Frida, for beginners, @leonjza
- frida javascript api手册
- Frida 12.7 Released - CModule
- Getting Started with Frida: Hooking a Function and Replacing its Arguments
- Online x86 / x64 Assembler and Disassembler (
0xfis not valid, use0x0finstead) - 易语言汇编代码转置入代码开源
- The 32 bit x86 C Calling Convention
- x86 Disassembly/Calling Conventions
- How to pass parameters to a procedure in assembly?
- NativeCallback doesn't seem to work on Windows, except for mscdecl #525
- Learn Object-C Cheatsheet
- Objective-C // Runtime Method Injection
- The Node.js ⇆ Objective-C bridge
- iOS逆向分析笔记
- iOS — To swizzle or not to swizzle?
- 0x04 Calling iOS Native Functions from Python Using Frida and RPC
- Runtime奇技淫巧之类(Class)和对象(id)以及方法(SEL)
I have another NPM module named ffi-adapter, which is a Foreign Function Interface Adapter Powered by Decorator & TypeScript.
Learn more about FFI from its examples at https://github.com/huan/ffi-adapter/tree/master/tests/fixtures/library
[](https://github.com/huan/sidecar)We have created different demos that work-out-of-box for some use cases.
You can visit them at Sidecar Demos if you are interested.
- ES Modules support (#17)
- TypeScript version 4.5
- Breaking change: Add
hookevent for all hooked methods
Publish to NPM as sidecar package name!
- Enforce
AgentTargetnot to be decorated by neither@ParamTypenor@RetTypefor prevent confusing.
- Refactor wrappers for include '[' and ']' in array return string
agentTargetnow point to JavaScript function ininitAgentScriptinstead ofNativeFunction- Add
scripts/post-install.tsto double checkfrida_binding.nodeexistance and runprebuild-installwith cdn if needed (#14)
agentTargetwill useNativeFunctioninstead of a plain javascript function- Clean sidecar frida agent templates
- Use closure to encapsulate variables
- Add
__sidecar__namespace for all variable names
- Enhance
@Sidecar()to support spawn target. e.g.@Sidecar(['/bin/sleep', [10]]) - Add
.so&.DLLlibrary example for Linux & Windows (Dynamic Library Example) - Add support for raw
pointertype
- Upgrade to TypeScript 4.4-dev for supporting index signatures for symbols. (Microsoft/TypeScript#44512)
- Add
sidecar-dumputility: it dump the sidecarmetadataandsourcefrom a class defination file now. - Add pack testing for
sidecar-dumpto make sure it works under Liniux, Mac, and Windows.
- Add
agenttype support toFunctionTargetso that both@Calland@Hookcan use a pre-defined native function ptr defined from theinitAgentScript. (more types likejava,objc,name, andmoduleto be added)
First worked version, published to NPM as sidecar.
Repo created.
If sidecar tells you that there's some script error internally, you should use sidecar-dump utility to dump the source of the frida agent script to a agent.js file, and use frida -l agent.js to debug it to get a clearly insight.
$ sidecar-dump source your-sidecar-class.ts > agent.js
$ frida -l agent.js
# by this way, you can locate the error inside the agent.js
# for easy debug and fix.Thanks to Quinton Ashley @quinton-ashley who is the previous owner of NPM name sidecar and he transfer this beautify name to me for publishing this project after I requested via email. Appreciate it! (Jun 29, 2021)
Huan LI (李卓桓), Microsoft Regional Director, [email protected]
- Docs released under Creative Commons
- Code released under the Apache-2.0 License
- Code & Docs © 2021 Huan LI <[email protected]>
