├── .gitignore ├── README.md ├── calling-convention.js ├── examples ├── c_header_gen │ ├── README.md │ ├── c_header_gen.js │ └── c_header_gen.py ├── no_pinning_alamofire.js └── r2swida │ ├── README.md │ └── index.js ├── index.js ├── loader.js ├── mangling.js ├── metadata.js ├── package.json ├── runtime-api.js ├── swift-value.js └── types.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | /test/_agent.js 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/README.md -------------------------------------------------------------------------------- /calling-convention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/calling-convention.js -------------------------------------------------------------------------------- /examples/c_header_gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/examples/c_header_gen/README.md -------------------------------------------------------------------------------- /examples/c_header_gen/c_header_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/examples/c_header_gen/c_header_gen.js -------------------------------------------------------------------------------- /examples/c_header_gen/c_header_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/examples/c_header_gen/c_header_gen.py -------------------------------------------------------------------------------- /examples/no_pinning_alamofire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/examples/no_pinning_alamofire.js -------------------------------------------------------------------------------- /examples/r2swida/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/examples/r2swida/README.md -------------------------------------------------------------------------------- /examples/r2swida/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/examples/r2swida/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/index.js -------------------------------------------------------------------------------- /loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/loader.js -------------------------------------------------------------------------------- /mangling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/mangling.js -------------------------------------------------------------------------------- /metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/metadata.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/package.json -------------------------------------------------------------------------------- /runtime-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/runtime-api.js -------------------------------------------------------------------------------- /swift-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/swift-value.js -------------------------------------------------------------------------------- /types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltek/swift-frida/HEAD/types.js --------------------------------------------------------------------------------