diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8def3f6..2152e44 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,43 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [4.2.0] - 2025-07-16
+
+- iOS SDK version: 6.12.1
+- Android SDK version: 16.0.1
+
+### Android
+
+#### Added
+
+- Added support for 16 KB memory page sizes
+- Added `multiInstance` callback
+ - Detecting whether the application is installed/running in various multi-instancing environments (e.g. Parallel Space)
+
+#### Changed
+
+- The ADB service running as a root is a signal for root detection
+- Improved emulator detection
+- Internal security improvements
+
+#### Fixed
+
+- Removed malware report duplicates
+
+### iOS
+
+#### Added
+
+- Added palera1n jailbreak detection
+
+#### Changed
+
+- Improved Dopamine jailbreak detection
+
+#### Fixed
+
+- Resolved memory-related stability issues.
+
## [4.1.0] - 2025-05-15
- iOS SDK version: 6.11.0
diff --git a/android/build.gradle b/android/build.gradle
index 63fda10..f40a245 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -99,7 +99,7 @@ dependencies {
implementation "com.facebook.react:react-native:$react_native_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
- implementation "com.aheaditec.talsec.security:TalsecSecurity-Community-ReactNative:15.1.0"
+ implementation "com.aheaditec.talsec.security:TalsecSecurity-Community-ReactNative:16.0.1"
}
if (isNewArchitectureEnabled()) {
diff --git a/android/src/main/java/com/freeraspreactnative/FreeraspThreatHandler.kt b/android/src/main/java/com/freeraspreactnative/FreeraspThreatHandler.kt
index 7061877..d8be115 100644
--- a/android/src/main/java/com/freeraspreactnative/FreeraspThreatHandler.kt
+++ b/android/src/main/java/com/freeraspreactnative/FreeraspThreatHandler.kt
@@ -71,6 +71,10 @@ internal object FreeraspThreatHandler : ThreatListener.ThreatDetected, ThreatLis
listener?.threatDetected(Threat.ScreenRecording)
}
+ override fun onMultiInstanceDetected() {
+ listener?.threatDetected(Threat.MultiInstance)
+ }
+
internal interface TalsecReactNative {
fun threatDetected(threatType: Threat)
diff --git a/android/src/main/java/com/freeraspreactnative/Threat.kt b/android/src/main/java/com/freeraspreactnative/Threat.kt
index c0b87e5..3cf6325 100644
--- a/android/src/main/java/com/freeraspreactnative/Threat.kt
+++ b/android/src/main/java/com/freeraspreactnative/Threat.kt
@@ -27,6 +27,7 @@ internal sealed class Threat(val value: Int) {
object ADBEnabled : Threat((10000..999999999).random())
object Screenshot : Threat((10000..999999999).random())
object ScreenRecording : Threat((10000..999999999).random())
+ object MultiInstance : Threat((10000..999999999).random())
companion object {
internal fun getThreatValues(): WritableArray {
@@ -47,7 +48,8 @@ internal sealed class Threat(val value: Int) {
Malware.value,
ADBEnabled.value,
Screenshot.value,
- ScreenRecording.value
+ ScreenRecording.value,
+ MultiInstance.value
)
)
}
diff --git a/example/src/App.tsx b/example/src/App.tsx
index 2f9beac..2a3c8e0 100644
--- a/example/src/App.tsx
+++ b/example/src/App.tsx
@@ -206,6 +206,16 @@ const App = () => {
)
);
},
+ // Android only
+ multiInstance: () => {
+ setAppChecks((currentState) =>
+ currentState.map((threat) =>
+ threat.name === 'Multi Instance'
+ ? { ...threat, status: 'nok' }
+ : threat
+ )
+ );
+ },
};
const addItemsToMalwareWhitelist = async () => {
diff --git a/example/src/checks.ts b/example/src/checks.ts
index 56dd82c..e51b8cc 100644
--- a/example/src/checks.ts
+++ b/example/src/checks.ts
@@ -20,4 +20,5 @@ export const androidChecks = [
{ name: 'Developer Mode', status: 'ok' },
{ name: 'Malware', status: 'ok' },
{ name: 'ADB Enabled', status: 'ok' },
+ { name: 'Multi Instance', status: 'ok' },
];
diff --git a/ios/TalsecRuntime.xcframework/Info.plist b/ios/TalsecRuntime.xcframework/Info.plist
index 46dc5fd..dd161ac 100644
--- a/ios/TalsecRuntime.xcframework/Info.plist
+++ b/ios/TalsecRuntime.xcframework/Info.plist
@@ -8,32 +8,32 @@
BinaryPath
TalsecRuntime.framework/TalsecRuntime
LibraryIdentifier
- ios-arm64_x86_64-simulator
+ ios-arm64
LibraryPath
TalsecRuntime.framework
SupportedArchitectures
arm64
- x86_64
SupportedPlatform
ios
- SupportedPlatformVariant
- simulator
BinaryPath
TalsecRuntime.framework/TalsecRuntime
LibraryIdentifier
- ios-arm64
+ ios-arm64_x86_64-simulator
LibraryPath
TalsecRuntime.framework
SupportedArchitectures
arm64
+ x86_64
SupportedPlatform
ios
+ SupportedPlatformVariant
+ simulator
CFBundlePackageType
diff --git a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory
index ff5b788..45b2628 100644
Binary files a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory and b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory differ
diff --git a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements-1 b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements-1
index 5a7f2a7..57a82ec 100644
Binary files a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements-1 and b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements-1 differ
diff --git a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeResources b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeResources
index d524936..cb16791 100644
--- a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeResources
+++ b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeResources
@@ -10,11 +10,11 @@
ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h
- pDtOsflBGzMS91AU+9sEJcZh+8Y=
+ jpRJaP0Y/GMRMLiKV8FtjFBu9wo=
ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
- rMQgGLpQ4TIo7sgFJT5FFTmyyXE=
+ kJnULIognoh3ln0hYoor3IEKQQc=
ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h
@@ -22,7 +22,7 @@
ios-arm64/TalsecRuntime.framework/Headers/curl.h
- s54Ysu4phRFqMtR5/wRr6KhPDDs=
+ JyHFFjxceU7gNtzGgynHf3isvkg=
ios-arm64/TalsecRuntime.framework/Headers/curlver.h
@@ -42,11 +42,11 @@
ios-arm64/TalsecRuntime.framework/Headers/multi.h
- HIuZ0vF6vCe8iO9sHvx/WiCcUV0=
+ 8qyyePTVIxoTn9Xg8Rrq5M+aK0k=
ios-arm64/TalsecRuntime.framework/Headers/options.h
- liTGCnBx6MhOap7TgThbEZcypxg=
+ Jfy4UNYa5yUULTqqc0ilCBPZKU4=
ios-arm64/TalsecRuntime.framework/Headers/stdcheaders.h
@@ -58,7 +58,7 @@
ios-arm64/TalsecRuntime.framework/Headers/urlapi.h
- 4lDVvEvMnJ+kXLsnP2hj+SsyNKM=
+ MQROQlnmLA/CrcWdMpbb8JUKBbg=
ios-arm64/TalsecRuntime.framework/Headers/websockets.h
@@ -66,11 +66,11 @@
ios-arm64/TalsecRuntime.framework/Info.plist
- Ls89JBVlv2Hf0dsa2evEb0LH5m4=
+ wZwCeFEzUwL3JsKi9lYIUtI6RnU=
ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface
@@ -94,7 +94,7 @@
ios-arm64/TalsecRuntime.framework/TalsecRuntime
- WyWVEsfMQI3CgW7EvHJhdjQ6eAE=
+ e7qLe7IJ3+VULwAsOAUPA78H6v4=
ios-arm64/TalsecRuntime.framework/cacert.pem
@@ -110,11 +110,11 @@
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h
- pDtOsflBGzMS91AU+9sEJcZh+8Y=
+ jpRJaP0Y/GMRMLiKV8FtjFBu9wo=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
- K0yAvhUylIKu1j88ux76AgGWTCA=
+ /k+U+Un49/2P3esxvCfctVeP870=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h
@@ -122,7 +122,7 @@
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h
- s54Ysu4phRFqMtR5/wRr6KhPDDs=
+ JyHFFjxceU7gNtzGgynHf3isvkg=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curlver.h
@@ -142,11 +142,11 @@
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h
- HIuZ0vF6vCe8iO9sHvx/WiCcUV0=
+ 8qyyePTVIxoTn9Xg8Rrq5M+aK0k=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h
- liTGCnBx6MhOap7TgThbEZcypxg=
+ Jfy4UNYa5yUULTqqc0ilCBPZKU4=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/stdcheaders.h
@@ -158,7 +158,7 @@
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h
- 4lDVvEvMnJ+kXLsnP2hj+SsyNKM=
+ MQROQlnmLA/CrcWdMpbb8JUKBbg=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/websockets.h
@@ -166,11 +166,11 @@
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist
- DiC1MnZxmZLIsnh/afsdt4Q0YIs=
+ gAtKMS55zdmfYa+L2xBDWDyBv0M=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
@@ -186,7 +186,7 @@
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
@@ -210,11 +210,11 @@
ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime
- 97ZK0ibwyOe0uaMlbBeMRSLR13k=
+ xjdqbbV62QWJLrImH/9Y1iUx4Jw=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources
- XkMMK1DY0VFGTmWT186i+NM+7Ow=
+ jNDMPllur6NPYr7/JYy7i7MFbxk=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/cacert.pem
@@ -242,22 +242,22 @@
hash
- pDtOsflBGzMS91AU+9sEJcZh+8Y=
+ jpRJaP0Y/GMRMLiKV8FtjFBu9wo=
hash2
- ZxCJz8miH04D5mwk1Wbgbojtiyf3e5tNDdORqA6dNXU=
+ gcNFkk/X41nI27OkXNXWO8Let8BBlRsRNU2A7D3smsQ=
ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
hash
- rMQgGLpQ4TIo7sgFJT5FFTmyyXE=
+ kJnULIognoh3ln0hYoor3IEKQQc=
hash2
- H2IhxeJZd4mxiianNHlh9rAV4kI17fYwt3UvcxQQ0Jc=
+ qKcKJtle5XZowASlLZROouzt2121C+h09hmPdVlXr3Y=
ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h
@@ -275,11 +275,11 @@
hash
- s54Ysu4phRFqMtR5/wRr6KhPDDs=
+ JyHFFjxceU7gNtzGgynHf3isvkg=
hash2
- 12SDkbk1OaVKxAVbFr0VRBGQxko9zmsv7JuFb9aja+I=
+ yxtfSKpvtD+Hu1ABrTIY/q8DtXkradAsQ33elwHKwHg=
ios-arm64/TalsecRuntime.framework/Headers/curlver.h
@@ -330,22 +330,22 @@
hash
- HIuZ0vF6vCe8iO9sHvx/WiCcUV0=
+ 8qyyePTVIxoTn9Xg8Rrq5M+aK0k=
hash2
- rSsfTs3+ALDepTLxZWt+Q7LKsr//9Un67OzGrvCgvKc=
+ bg3YAv6jl05zinaJGvLQCyzjdzmST2KKFWOcm8iRf5o=
ios-arm64/TalsecRuntime.framework/Headers/options.h
hash
- liTGCnBx6MhOap7TgThbEZcypxg=
+ Jfy4UNYa5yUULTqqc0ilCBPZKU4=
hash2
- PLgSSaZzN7kvk4effcqrOFIJfn8+BhMLz1IfGw4D1k4=
+ N3MzAZykexWc8cXRk1wNmJREwWHlctoedZlRhKIUFRo=
ios-arm64/TalsecRuntime.framework/Headers/stdcheaders.h
@@ -374,11 +374,11 @@
hash
- 4lDVvEvMnJ+kXLsnP2hj+SsyNKM=
+ MQROQlnmLA/CrcWdMpbb8JUKBbg=
hash2
- U+8NF+LVzctZ5ewT0aw98KVLoFJeeFIvQNrgdu50b1w=
+ /HmMkL7MUhQDcXB0I9ZmQ/ZDo9Yr6VtVc0h1sbHi3bA=
ios-arm64/TalsecRuntime.framework/Headers/websockets.h
@@ -396,22 +396,22 @@
hash
- Ls89JBVlv2Hf0dsa2evEb0LH5m4=
+ wZwCeFEzUwL3JsKi9lYIUtI6RnU=
hash2
- b9UgjgUuKI5X5Hd6DrghivDpapJ2jDLTHStTe62ssjA=
+ haAwk0PfQXfR0n+Ifj39mbQCXWGb3zAbzdVTzINBMU4=
ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json
hash
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
hash2
- WLgryfcNr2a/8j24wpzNOPkQxXYjoa1sXoMKu8DdXAM=
+ iQOgc9u5JIkKKUK3wvzr7glrA1DoMEcJHAfoeh2g2TU=
ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface
@@ -473,11 +473,11 @@
hash
- WyWVEsfMQI3CgW7EvHJhdjQ6eAE=
+ e7qLe7IJ3+VULwAsOAUPA78H6v4=
hash2
- n2vOCloufUk62TGTBJcnevhciDGsmvNUvHT1JwnaHCE=
+ PpbltXTHRjpu5px2OqptbswkczjZLZNwBCu6A2EEbOA=
ios-arm64/TalsecRuntime.framework/cacert.pem
@@ -517,22 +517,22 @@
hash
- pDtOsflBGzMS91AU+9sEJcZh+8Y=
+ jpRJaP0Y/GMRMLiKV8FtjFBu9wo=
hash2
- ZxCJz8miH04D5mwk1Wbgbojtiyf3e5tNDdORqA6dNXU=
+ gcNFkk/X41nI27OkXNXWO8Let8BBlRsRNU2A7D3smsQ=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
hash
- K0yAvhUylIKu1j88ux76AgGWTCA=
+ /k+U+Un49/2P3esxvCfctVeP870=
hash2
- qBdG5CGoSArDHjuZrCGBLBrpau4mPxRnAie8Ci++e4M=
+ FQDj+bS1388tgNFvJb68A/67TfRP/1IIJOKe5betj08=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h
@@ -550,11 +550,11 @@
hash
- s54Ysu4phRFqMtR5/wRr6KhPDDs=
+ JyHFFjxceU7gNtzGgynHf3isvkg=
hash2
- 12SDkbk1OaVKxAVbFr0VRBGQxko9zmsv7JuFb9aja+I=
+ yxtfSKpvtD+Hu1ABrTIY/q8DtXkradAsQ33elwHKwHg=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curlver.h
@@ -605,22 +605,22 @@
hash
- HIuZ0vF6vCe8iO9sHvx/WiCcUV0=
+ 8qyyePTVIxoTn9Xg8Rrq5M+aK0k=
hash2
- rSsfTs3+ALDepTLxZWt+Q7LKsr//9Un67OzGrvCgvKc=
+ bg3YAv6jl05zinaJGvLQCyzjdzmST2KKFWOcm8iRf5o=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h
hash
- liTGCnBx6MhOap7TgThbEZcypxg=
+ Jfy4UNYa5yUULTqqc0ilCBPZKU4=
hash2
- PLgSSaZzN7kvk4effcqrOFIJfn8+BhMLz1IfGw4D1k4=
+ N3MzAZykexWc8cXRk1wNmJREwWHlctoedZlRhKIUFRo=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/stdcheaders.h
@@ -649,11 +649,11 @@
hash
- 4lDVvEvMnJ+kXLsnP2hj+SsyNKM=
+ MQROQlnmLA/CrcWdMpbb8JUKBbg=
hash2
- U+8NF+LVzctZ5ewT0aw98KVLoFJeeFIvQNrgdu50b1w=
+ /HmMkL7MUhQDcXB0I9ZmQ/ZDo9Yr6VtVc0h1sbHi3bA=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/websockets.h
@@ -671,22 +671,22 @@
hash
- DiC1MnZxmZLIsnh/afsdt4Q0YIs=
+ gAtKMS55zdmfYa+L2xBDWDyBv0M=
hash2
- yQHBY8+Si4wtdGl6dXfLXjj4WWhpJ94KAj5IimttQDU=
+ 1boSkROZ/Ai5xofJYFDby2Y+EHM06+PA67kEh0pcXHg=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json
hash
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
hash2
- WLgryfcNr2a/8j24wpzNOPkQxXYjoa1sXoMKu8DdXAM=
+ iQOgc9u5JIkKKUK3wvzr7glrA1DoMEcJHAfoeh2g2TU=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
@@ -726,11 +726,11 @@
hash
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
hash2
- WLgryfcNr2a/8j24wpzNOPkQxXYjoa1sXoMKu8DdXAM=
+ iQOgc9u5JIkKKUK3wvzr7glrA1DoMEcJHAfoeh2g2TU=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
@@ -792,22 +792,22 @@
hash
- 97ZK0ibwyOe0uaMlbBeMRSLR13k=
+ xjdqbbV62QWJLrImH/9Y1iUx4Jw=
hash2
- IFuZH8PaTX14W0qeOFQAEL5vjHojU428j56Z1VvJCRQ=
+ iLyhqlItAeFNSM8W4FAgWgNvYksVVn4kjU1s02ib2KM=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources
hash
- XkMMK1DY0VFGTmWT186i+NM+7Ow=
+ jNDMPllur6NPYr7/JYy7i7MFbxk=
hash2
- DPoNeCO6Zu81s3kL0XfvX9XOXedvY28xr2Wb4Iptjkc=
+ 4SO3acHtWkOXoWeylIcQtZRMkbDKJmo2sy9UwQlUmyM=
ios-arm64_x86_64-simulator/TalsecRuntime.framework/cacert.pem
diff --git a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeSignature b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeSignature
index faa55a2..3863242 100644
Binary files a/ios/TalsecRuntime.xcframework/_CodeSignature/CodeSignature and b/ios/TalsecRuntime.xcframework/_CodeSignature/CodeSignature differ
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h
index fb307d2..c0cb32e 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h
@@ -16,7 +16,7 @@
#include
#include
-struct vDtpwATeirlK {
+struct eAjAaaVUOAox {
char *memory;
size_t size;
CURLcode ret;
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
index 67ee07a..df3c9a5 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
@@ -298,7 +298,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if defined(__OBJC__)
-SWIFT_EXTERN void __DCRNocAXaHVDCsXMJBRtOVV(void);
+SWIFT_EXTERN void __vJQdQwsOGFApyVrAWGMwrjm(void);
#endif
#if __has_attribute(external_source_symbol)
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h
index d6ba97e..f2332ba 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h
@@ -789,11 +789,11 @@ typedef enum {
*
* CURLAUTH_NONE - No HTTP authentication
* CURLAUTH_BASIC - HTTP Basic authentication (default)
- * CURLAUTH_DIGEST - HTTP DiuKSt authentication
+ * CURLAUTH_DIGEST - HTTP DibXKt authentication
* CURLAUTH_NEGOTIATE - HTTP Negotiate (SPNEGO) authentication
* CURLAUTH_GSSNEGOTIATE - Alias for CURLAUTH_NEGOTIATE (deprecated)
* CURLAUTH_NTLM - HTTP NTLM authentication
- * CURLAUTH_DIGEST_IE - HTTP DiuKSt authentication with IE flavour
+ * CURLAUTH_DIGEST_IE - HTTP DibXKt authentication with IE flavour
* CURLAUTH_NTLM_WB - HTTP NTLM authentication delegated to winbind helper
* CURLAUTH_BEARER - HTTP Bearer token authentication
* CURLAUTH_ONLY - Use together with a single other type to force no
@@ -1125,7 +1125,7 @@ typedef enum {
/* Specified file stream to upload from (use as input): */
CURLOPT(CURLOPT_READDATA, CURLOPTTYPE_CBPOINT, 9),
- /* Buffer to receive error messauKS in, must be at least CURL_ERROR_SIZE
+ /* Buffer to receive error messabXK in, must be at least CURL_ERROR_SIZE
* bytes big. */
CURLOPT(CURLOPT_ERRORBUFFER, CURLOPTTYPE_OBJECTPOINT, 10),
@@ -1505,7 +1505,7 @@ typedef enum {
Note that setting multiple bits may cause extra network round-trips. */
CURLOPT(CURLOPT_PROXYAUTH, CURLOPTTYPE_VALUES, 111),
- /* Option that chanuKS the timeout, in seconds, associated with getting a
+ /* Option that chanbXK the timeout, in seconds, associated with getting a
response. This is different from transfer timeout time and essentially
places a demand on the server to acknowledge commands in a timely
manner. For FTP, SMTP, IMAP and POP3. */
@@ -3056,7 +3056,7 @@ typedef enum {
/* The 'CURLVERSION_NOW' is the symbolic name meant to be used by
basically all programs ever that want to get version information. It is
meant to be a built-in version number for what kind of struct the caller
- expects. If the struct ever chanuKS, we redefine the NOW to another enum
+ expects. If the struct ever chanbXK, we redefine the NOW to another enum
from above. */
#define CURLVERSION_NOW CURLVERSION_TWELFTH
@@ -3178,7 +3178,7 @@ CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion);
*
* The curl_easy_strerror function may be used to turn a CURLcode value
* into the equivalent human readable error string. This is useful
- * for printing meaningful error messauKS.
+ * for printing meaningful error messabXK.
*/
CURL_EXTERN const char *curl_easy_strerror(CURLcode);
@@ -3189,7 +3189,7 @@ CURL_EXTERN const char *curl_easy_strerror(CURLcode);
*
* The curl_share_strerror function may be used to turn a CURLSHcode value
* into the equivalent human readable error string. This is useful
- * for printing meaningful error messauKS.
+ * for printing meaningful error messabXK.
*/
CURL_EXTERN const char *curl_share_strerror(CURLSHcode);
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h
index af4e523..432b4e6 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h
@@ -236,8 +236,8 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
/*
* Name: curl_multi_info_read()
*
- * Desc: Ask the multi handle if there's any messauKS/informationals from
- * the individual transfers. MessauKS include informationals such as
+ * Desc: Ask the multi handle if there's any messabXK/informationals from
+ * the individual transfers. MessabXK include informationals such as
* error code from the transfer or just the fact that a transfer is
* completed. More details on these should be written down as well.
*
@@ -257,7 +257,7 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
* undoubtably get backwards compatibility problems in the future.
*
* Returns: A pointer to a filled-in struct, or NULL if it failed or ran out
- * of structs. It also writes the number of messauKS left in the
+ * of structs. It also writes the number of messabXK left in the
* queue (after this read) in the integer the second argument points
* to.
*/
@@ -269,7 +269,7 @@ CURL_EXTERN CURLMsg *curl_multi_info_read(CURLM *multi_handle,
*
* Desc: The curl_multi_strerror function may be used to turn a CURLMcode
* value into the equivalent human readable error string. This is
- * useful for printing meaningful error messauKS.
+ * useful for printing meaningful error messabXK.
*
* Returns: A pointer to a null-terminated error message.
*/
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h
index 0887051..d661290 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h
@@ -46,7 +46,7 @@ typedef enum {
we prefer another name */
#define CURLOT_FLAG_ALIAS (1<<0)
-/* The CURLOPTTYPE_* id ranuKS can still be used to figure out what type/size
+/* The CURLOPTTYPE_* id ranbXK can still be used to figure out what type/size
to use for curl_easy_setopt() for the given id */
struct curl_easyoption {
const char *name;
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h
index ac9e3e4..86fa7b1 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h
@@ -143,7 +143,7 @@ CURL_EXTERN CURLUcode curl_url_set(CURLU *handle, CURLUPart what,
/*
* curl_url_strerror() turns a CURLUcode value into the equivalent human
* readable error string. This is useful for printing meaningful error
- * messauKS.
+ * messabXK.
*/
CURL_EXTERN const char *curl_url_strerror(CURLUcode);
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist
index 72cb4b3..660b0ae 100644
Binary files a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist and b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist differ
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json
index 08f3f9f..9bbbb07 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json
+++ b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json
@@ -2476,1001 +2476,1001 @@
},
"ConstValues": [
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 243,
"length": 13,
"value": "\"development\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 279,
"length": 12,
"value": "\"production\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 312,
"length": 10,
"value": "\"disabled\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 243,
"length": 13,
"value": "\"development\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 279,
"length": 12,
"value": "\"production\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 312,
"length": 10,
"value": "\"disabled\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 575,
"length": 24,
"value": "\"keychain-access-groups\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 628,
"length": 16,
"value": "\"get-task-allow\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 675,
"length": 17,
"value": "\"aps-environment\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 722,
"length": 24,
"value": "\"application-identifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 575,
"length": 24,
"value": "\"keychain-access-groups\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 628,
"length": 16,
"value": "\"get-task-allow\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 675,
"length": 17,
"value": "\"aps-environment\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 722,
"length": 24,
"value": "\"application-identifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "BooleanLiteral",
"offset": 1994,
"length": 5,
"value": "false"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2227,
"length": 6,
"value": "\"Name\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2259,
"length": 11,
"value": "\"AppIDName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2296,
"length": 29,
"value": "\"ApplicationIdentifierPrefix\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2350,
"length": 10,
"value": "\"TeamName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2392,
"length": 16,
"value": "\"TeamIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2433,
"length": 10,
"value": "\"Platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2474,
"length": 16,
"value": "\"IsXcodeManaged\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2519,
"length": 14,
"value": "\"CreationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2564,
"length": 16,
"value": "\"ExpirationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2607,
"length": 12,
"value": "\"TimeToLive\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2640,
"length": 6,
"value": "\"UUID\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2670,
"length": 9,
"value": "\"Version\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2708,
"length": 14,
"value": "\"Entitlements\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2227,
"length": 6,
"value": "\"Name\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2259,
"length": 11,
"value": "\"AppIDName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2296,
"length": 29,
"value": "\"ApplicationIdentifierPrefix\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2350,
"length": 10,
"value": "\"TeamName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2392,
"length": 16,
"value": "\"TeamIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2433,
"length": 10,
"value": "\"Platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2474,
"length": 16,
"value": "\"IsXcodeManaged\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2519,
"length": 14,
"value": "\"CreationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2564,
"length": 16,
"value": "\"ExpirationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2607,
"length": 12,
"value": "\"TimeToLive\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2640,
"length": 6,
"value": "\"UUID\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2670,
"length": 9,
"value": "\"Version\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2708,
"length": 14,
"value": "\"Entitlements\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "Array",
"offset": 375,
"length": 2,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "StringLiteral",
"offset": 415,
"length": 2,
"value": "\"\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "BooleanLiteral",
"offset": 491,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 471,
"length": 11,
"value": "\"osVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 511,
"length": 14,
"value": "\"manufacturer\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 547,
"length": 7,
"value": "\"model\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 471,
"length": 11,
"value": "\"osVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 511,
"length": 14,
"value": "\"manufacturer\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 547,
"length": 7,
"value": "\"model\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 753,
"length": 10,
"value": "\"security\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 790,
"length": 12,
"value": "\"biometrics\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 835,
"length": 18,
"value": "\"hwBackedKeychain\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 753,
"length": 10,
"value": "\"security\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 790,
"length": 12,
"value": "\"biometrics\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 835,
"length": 18,
"value": "\"hwBackedKeychain\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1430,
"length": 18,
"value": "\"endOfGracePeriod\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1430,
"length": 18,
"value": "\"endOfGracePeriod\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1874,
"length": 15,
"value": "\"appIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1916,
"length": 12,
"value": "\"appVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1874,
"length": 15,
"value": "\"appIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1916,
"length": 12,
"value": "\"appVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 5957,
"length": 5,
"value": "\"iOS\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6394,
"length": 7,
"value": "\"en_US\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6873,
"length": 3,
"value": "\".\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6923,
"length": 2,
"value": "\"\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7146,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7182,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7218,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7258,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7295,
"length": 9,
"value": "\"appInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7329,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7365,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7407,
"length": 16,
"value": "\"incidentReport\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7446,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7481,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7519,
"length": 11,
"value": "\"sessionId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7555,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7592,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7632,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7675,
"length": 15,
"value": "\"sdkIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7146,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7182,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7218,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7258,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7295,
"length": 9,
"value": "\"appInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7329,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7365,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7407,
"length": 16,
"value": "\"incidentReport\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7446,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7481,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7519,
"length": 11,
"value": "\"sessionId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7555,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7592,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7632,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7675,
"length": 15,
"value": "\"sdkIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 413,
"length": 5,
"value": "\"iOS\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 927,
"length": 7,
"value": "\"en_US\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1182,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1218,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1254,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1291,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1329,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1369,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1409,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1448,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1482,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1515,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1552,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1590,
"length": 11,
"value": "\"licensing\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1182,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1218,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1254,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1291,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1329,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1369,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1409,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1448,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1482,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1515,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1552,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1590,
"length": 11,
"value": "\"licensing\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
"kind": "IntegerLiteral",
"offset": 253,
"length": 2,
"value": "10"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 539,
"length": 8,
"value": "\"status\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 570,
"length": 8,
"value": "\"timeMs\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 539,
"length": 8,
"value": "\"status\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 570,
"length": 8,
"value": "\"timeMs\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
"kind": "BooleanLiteral",
"offset": 477,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 289,
"length": 14,
"value": "\"appIntegrity\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 382,
"length": 18,
"value": "\"privilegedAccess\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 456,
"length": 7,
"value": "\"debug\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 562,
"length": 7,
"value": "\"hooks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 909,
"length": 15,
"value": "\"deviceBinding\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 289,
"length": 14,
"value": "\"appIntegrity\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 382,
"length": 18,
"value": "\"privilegedAccess\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 456,
"length": 7,
"value": "\"debug\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 562,
"length": 7,
"value": "\"hooks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 909,
"length": 15,
"value": "\"deviceBinding\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "Dictionary",
"offset": 605,
"length": 3,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "Dictionary",
"offset": 682,
"length": 3,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 17148,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 18385,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 19011,
"length": 4,
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime
index 52600f2..0517fc7 100644
Binary files a/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime and b/ios/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime differ
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h
index fb307d2..c0cb32e 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h
@@ -16,7 +16,7 @@
#include
#include
-struct vDtpwATeirlK {
+struct eAjAaaVUOAox {
char *memory;
size_t size;
CURLcode ret;
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
index 7f2cd12..69b31b4 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h
@@ -298,7 +298,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if defined(__OBJC__)
-SWIFT_EXTERN void __DCRNocAXaHVDCsXMJBRtOVV(void);
+SWIFT_EXTERN void __vJQdQwsOGFApyVrAWGMwrjm(void);
#endif
#if __has_attribute(external_source_symbol)
@@ -608,7 +608,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if defined(__OBJC__)
-SWIFT_EXTERN void __DCRNocAXaHVDCsXMJBRtOVV(void);
+SWIFT_EXTERN void __vJQdQwsOGFApyVrAWGMwrjm(void);
#endif
#if __has_attribute(external_source_symbol)
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h
index d6ba97e..f2332ba 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h
@@ -789,11 +789,11 @@ typedef enum {
*
* CURLAUTH_NONE - No HTTP authentication
* CURLAUTH_BASIC - HTTP Basic authentication (default)
- * CURLAUTH_DIGEST - HTTP DiuKSt authentication
+ * CURLAUTH_DIGEST - HTTP DibXKt authentication
* CURLAUTH_NEGOTIATE - HTTP Negotiate (SPNEGO) authentication
* CURLAUTH_GSSNEGOTIATE - Alias for CURLAUTH_NEGOTIATE (deprecated)
* CURLAUTH_NTLM - HTTP NTLM authentication
- * CURLAUTH_DIGEST_IE - HTTP DiuKSt authentication with IE flavour
+ * CURLAUTH_DIGEST_IE - HTTP DibXKt authentication with IE flavour
* CURLAUTH_NTLM_WB - HTTP NTLM authentication delegated to winbind helper
* CURLAUTH_BEARER - HTTP Bearer token authentication
* CURLAUTH_ONLY - Use together with a single other type to force no
@@ -1125,7 +1125,7 @@ typedef enum {
/* Specified file stream to upload from (use as input): */
CURLOPT(CURLOPT_READDATA, CURLOPTTYPE_CBPOINT, 9),
- /* Buffer to receive error messauKS in, must be at least CURL_ERROR_SIZE
+ /* Buffer to receive error messabXK in, must be at least CURL_ERROR_SIZE
* bytes big. */
CURLOPT(CURLOPT_ERRORBUFFER, CURLOPTTYPE_OBJECTPOINT, 10),
@@ -1505,7 +1505,7 @@ typedef enum {
Note that setting multiple bits may cause extra network round-trips. */
CURLOPT(CURLOPT_PROXYAUTH, CURLOPTTYPE_VALUES, 111),
- /* Option that chanuKS the timeout, in seconds, associated with getting a
+ /* Option that chanbXK the timeout, in seconds, associated with getting a
response. This is different from transfer timeout time and essentially
places a demand on the server to acknowledge commands in a timely
manner. For FTP, SMTP, IMAP and POP3. */
@@ -3056,7 +3056,7 @@ typedef enum {
/* The 'CURLVERSION_NOW' is the symbolic name meant to be used by
basically all programs ever that want to get version information. It is
meant to be a built-in version number for what kind of struct the caller
- expects. If the struct ever chanuKS, we redefine the NOW to another enum
+ expects. If the struct ever chanbXK, we redefine the NOW to another enum
from above. */
#define CURLVERSION_NOW CURLVERSION_TWELFTH
@@ -3178,7 +3178,7 @@ CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion);
*
* The curl_easy_strerror function may be used to turn a CURLcode value
* into the equivalent human readable error string. This is useful
- * for printing meaningful error messauKS.
+ * for printing meaningful error messabXK.
*/
CURL_EXTERN const char *curl_easy_strerror(CURLcode);
@@ -3189,7 +3189,7 @@ CURL_EXTERN const char *curl_easy_strerror(CURLcode);
*
* The curl_share_strerror function may be used to turn a CURLSHcode value
* into the equivalent human readable error string. This is useful
- * for printing meaningful error messauKS.
+ * for printing meaningful error messabXK.
*/
CURL_EXTERN const char *curl_share_strerror(CURLSHcode);
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h
index af4e523..432b4e6 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h
@@ -236,8 +236,8 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
/*
* Name: curl_multi_info_read()
*
- * Desc: Ask the multi handle if there's any messauKS/informationals from
- * the individual transfers. MessauKS include informationals such as
+ * Desc: Ask the multi handle if there's any messabXK/informationals from
+ * the individual transfers. MessabXK include informationals such as
* error code from the transfer or just the fact that a transfer is
* completed. More details on these should be written down as well.
*
@@ -257,7 +257,7 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
* undoubtably get backwards compatibility problems in the future.
*
* Returns: A pointer to a filled-in struct, or NULL if it failed or ran out
- * of structs. It also writes the number of messauKS left in the
+ * of structs. It also writes the number of messabXK left in the
* queue (after this read) in the integer the second argument points
* to.
*/
@@ -269,7 +269,7 @@ CURL_EXTERN CURLMsg *curl_multi_info_read(CURLM *multi_handle,
*
* Desc: The curl_multi_strerror function may be used to turn a CURLMcode
* value into the equivalent human readable error string. This is
- * useful for printing meaningful error messauKS.
+ * useful for printing meaningful error messabXK.
*
* Returns: A pointer to a null-terminated error message.
*/
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h
index 0887051..d661290 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h
@@ -46,7 +46,7 @@ typedef enum {
we prefer another name */
#define CURLOT_FLAG_ALIAS (1<<0)
-/* The CURLOPTTYPE_* id ranuKS can still be used to figure out what type/size
+/* The CURLOPTTYPE_* id ranbXK can still be used to figure out what type/size
to use for curl_easy_setopt() for the given id */
struct curl_easyoption {
const char *name;
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h
index ac9e3e4..86fa7b1 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h
@@ -143,7 +143,7 @@ CURL_EXTERN CURLUcode curl_url_set(CURLU *handle, CURLUPart what,
/*
* curl_url_strerror() turns a CURLUcode value into the equivalent human
* readable error string. This is useful for printing meaningful error
- * messauKS.
+ * messabXK.
*/
CURL_EXTERN const char *curl_url_strerror(CURLUcode);
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist
index 5f6ce9e..54c41c6 100644
Binary files a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist and b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist differ
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json
index 08f3f9f..9bbbb07 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json
@@ -2476,1001 +2476,1001 @@
},
"ConstValues": [
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 243,
"length": 13,
"value": "\"development\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 279,
"length": 12,
"value": "\"production\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 312,
"length": 10,
"value": "\"disabled\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 243,
"length": 13,
"value": "\"development\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 279,
"length": 12,
"value": "\"production\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 312,
"length": 10,
"value": "\"disabled\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 575,
"length": 24,
"value": "\"keychain-access-groups\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 628,
"length": 16,
"value": "\"get-task-allow\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 675,
"length": 17,
"value": "\"aps-environment\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 722,
"length": 24,
"value": "\"application-identifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 575,
"length": 24,
"value": "\"keychain-access-groups\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 628,
"length": 16,
"value": "\"get-task-allow\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 675,
"length": 17,
"value": "\"aps-environment\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 722,
"length": 24,
"value": "\"application-identifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "BooleanLiteral",
"offset": 1994,
"length": 5,
"value": "false"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2227,
"length": 6,
"value": "\"Name\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2259,
"length": 11,
"value": "\"AppIDName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2296,
"length": 29,
"value": "\"ApplicationIdentifierPrefix\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2350,
"length": 10,
"value": "\"TeamName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2392,
"length": 16,
"value": "\"TeamIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2433,
"length": 10,
"value": "\"Platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2474,
"length": 16,
"value": "\"IsXcodeManaged\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2519,
"length": 14,
"value": "\"CreationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2564,
"length": 16,
"value": "\"ExpirationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2607,
"length": 12,
"value": "\"TimeToLive\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2640,
"length": 6,
"value": "\"UUID\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2670,
"length": 9,
"value": "\"Version\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2708,
"length": 14,
"value": "\"Entitlements\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2227,
"length": 6,
"value": "\"Name\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2259,
"length": 11,
"value": "\"AppIDName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2296,
"length": 29,
"value": "\"ApplicationIdentifierPrefix\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2350,
"length": 10,
"value": "\"TeamName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2392,
"length": 16,
"value": "\"TeamIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2433,
"length": 10,
"value": "\"Platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2474,
"length": 16,
"value": "\"IsXcodeManaged\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2519,
"length": 14,
"value": "\"CreationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2564,
"length": 16,
"value": "\"ExpirationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2607,
"length": 12,
"value": "\"TimeToLive\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2640,
"length": 6,
"value": "\"UUID\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2670,
"length": 9,
"value": "\"Version\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2708,
"length": 14,
"value": "\"Entitlements\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "Array",
"offset": 375,
"length": 2,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "StringLiteral",
"offset": 415,
"length": 2,
"value": "\"\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "BooleanLiteral",
"offset": 491,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 471,
"length": 11,
"value": "\"osVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 511,
"length": 14,
"value": "\"manufacturer\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 547,
"length": 7,
"value": "\"model\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 471,
"length": 11,
"value": "\"osVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 511,
"length": 14,
"value": "\"manufacturer\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 547,
"length": 7,
"value": "\"model\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 753,
"length": 10,
"value": "\"security\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 790,
"length": 12,
"value": "\"biometrics\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 835,
"length": 18,
"value": "\"hwBackedKeychain\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 753,
"length": 10,
"value": "\"security\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 790,
"length": 12,
"value": "\"biometrics\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 835,
"length": 18,
"value": "\"hwBackedKeychain\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1430,
"length": 18,
"value": "\"endOfGracePeriod\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1430,
"length": 18,
"value": "\"endOfGracePeriod\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1874,
"length": 15,
"value": "\"appIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1916,
"length": 12,
"value": "\"appVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1874,
"length": 15,
"value": "\"appIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1916,
"length": 12,
"value": "\"appVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 5957,
"length": 5,
"value": "\"iOS\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6394,
"length": 7,
"value": "\"en_US\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6873,
"length": 3,
"value": "\".\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6923,
"length": 2,
"value": "\"\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7146,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7182,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7218,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7258,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7295,
"length": 9,
"value": "\"appInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7329,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7365,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7407,
"length": 16,
"value": "\"incidentReport\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7446,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7481,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7519,
"length": 11,
"value": "\"sessionId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7555,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7592,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7632,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7675,
"length": 15,
"value": "\"sdkIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7146,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7182,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7218,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7258,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7295,
"length": 9,
"value": "\"appInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7329,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7365,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7407,
"length": 16,
"value": "\"incidentReport\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7446,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7481,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7519,
"length": 11,
"value": "\"sessionId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7555,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7592,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7632,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7675,
"length": 15,
"value": "\"sdkIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 413,
"length": 5,
"value": "\"iOS\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 927,
"length": 7,
"value": "\"en_US\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1182,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1218,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1254,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1291,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1329,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1369,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1409,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1448,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1482,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1515,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1552,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1590,
"length": 11,
"value": "\"licensing\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1182,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1218,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1254,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1291,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1329,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1369,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1409,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1448,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1482,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1515,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1552,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1590,
"length": 11,
"value": "\"licensing\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
"kind": "IntegerLiteral",
"offset": 253,
"length": 2,
"value": "10"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 539,
"length": 8,
"value": "\"status\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 570,
"length": 8,
"value": "\"timeMs\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 539,
"length": 8,
"value": "\"status\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 570,
"length": 8,
"value": "\"timeMs\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
"kind": "BooleanLiteral",
"offset": 477,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 289,
"length": 14,
"value": "\"appIntegrity\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 382,
"length": 18,
"value": "\"privilegedAccess\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 456,
"length": 7,
"value": "\"debug\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 562,
"length": 7,
"value": "\"hooks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 909,
"length": 15,
"value": "\"deviceBinding\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 289,
"length": 14,
"value": "\"appIntegrity\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 382,
"length": 18,
"value": "\"privilegedAccess\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 456,
"length": 7,
"value": "\"debug\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 562,
"length": 7,
"value": "\"hooks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 909,
"length": 15,
"value": "\"deviceBinding\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "Dictionary",
"offset": 605,
"length": 3,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "Dictionary",
"offset": 682,
"length": 3,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 17148,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 18385,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 19011,
"length": 4,
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json
index 08f3f9f..9bbbb07 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json
@@ -2476,1001 +2476,1001 @@
},
"ConstValues": [
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 243,
"length": 13,
"value": "\"development\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 279,
"length": 12,
"value": "\"production\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 312,
"length": 10,
"value": "\"disabled\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 243,
"length": 13,
"value": "\"development\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 279,
"length": 12,
"value": "\"production\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 312,
"length": 10,
"value": "\"disabled\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 575,
"length": 24,
"value": "\"keychain-access-groups\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 628,
"length": 16,
"value": "\"get-task-allow\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 675,
"length": 17,
"value": "\"aps-environment\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 722,
"length": 24,
"value": "\"application-identifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 575,
"length": 24,
"value": "\"keychain-access-groups\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 628,
"length": 16,
"value": "\"get-task-allow\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 675,
"length": 17,
"value": "\"aps-environment\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 722,
"length": 24,
"value": "\"application-identifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "BooleanLiteral",
"offset": 1994,
"length": 5,
"value": "false"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2227,
"length": 6,
"value": "\"Name\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2259,
"length": 11,
"value": "\"AppIDName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2296,
"length": 29,
"value": "\"ApplicationIdentifierPrefix\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2350,
"length": 10,
"value": "\"TeamName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2392,
"length": 16,
"value": "\"TeamIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2433,
"length": 10,
"value": "\"Platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2474,
"length": 16,
"value": "\"IsXcodeManaged\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2519,
"length": 14,
"value": "\"CreationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2564,
"length": 16,
"value": "\"ExpirationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2607,
"length": 12,
"value": "\"TimeToLive\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2640,
"length": 6,
"value": "\"UUID\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2670,
"length": 9,
"value": "\"Version\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2708,
"length": 14,
"value": "\"Entitlements\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2227,
"length": 6,
"value": "\"Name\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2259,
"length": 11,
"value": "\"AppIDName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2296,
"length": 29,
"value": "\"ApplicationIdentifierPrefix\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2350,
"length": 10,
"value": "\"TeamName\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2392,
"length": 16,
"value": "\"TeamIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2433,
"length": 10,
"value": "\"Platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2474,
"length": 16,
"value": "\"IsXcodeManaged\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2519,
"length": 14,
"value": "\"CreationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2564,
"length": 16,
"value": "\"ExpirationDate\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2607,
"length": 12,
"value": "\"TimeToLive\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2640,
"length": 6,
"value": "\"UUID\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2670,
"length": 9,
"value": "\"Version\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
"kind": "StringLiteral",
"offset": 2708,
"length": 14,
"value": "\"Entitlements\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "Array",
"offset": 375,
"length": 2,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "StringLiteral",
"offset": 415,
"length": 2,
"value": "\"\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
"kind": "BooleanLiteral",
"offset": 491,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 471,
"length": 11,
"value": "\"osVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 511,
"length": 14,
"value": "\"manufacturer\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 547,
"length": 7,
"value": "\"model\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 471,
"length": 11,
"value": "\"osVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 511,
"length": 14,
"value": "\"manufacturer\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 547,
"length": 7,
"value": "\"model\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 753,
"length": 10,
"value": "\"security\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 790,
"length": 12,
"value": "\"biometrics\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 835,
"length": 18,
"value": "\"hwBackedKeychain\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 753,
"length": 10,
"value": "\"security\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 790,
"length": 12,
"value": "\"biometrics\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 835,
"length": 18,
"value": "\"hwBackedKeychain\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1430,
"length": 18,
"value": "\"endOfGracePeriod\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1430,
"length": 18,
"value": "\"endOfGracePeriod\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1874,
"length": 15,
"value": "\"appIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1916,
"length": 12,
"value": "\"appVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1874,
"length": 15,
"value": "\"appIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 1916,
"length": 12,
"value": "\"appVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 5957,
"length": 5,
"value": "\"iOS\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6394,
"length": 7,
"value": "\"en_US\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6873,
"length": 3,
"value": "\".\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 6923,
"length": 2,
"value": "\"\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7146,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7182,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7218,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7258,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7295,
"length": 9,
"value": "\"appInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7329,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7365,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7407,
"length": 16,
"value": "\"incidentReport\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7446,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7481,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7519,
"length": 11,
"value": "\"sessionId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7555,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7592,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7632,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7675,
"length": 15,
"value": "\"sdkIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7146,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7182,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7218,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7258,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7295,
"length": 9,
"value": "\"appInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7329,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7365,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7407,
"length": 16,
"value": "\"incidentReport\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7446,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7481,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7519,
"length": 11,
"value": "\"sessionId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7555,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7592,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7632,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
"kind": "StringLiteral",
"offset": 7675,
"length": 15,
"value": "\"sdkIdentifier\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 413,
"length": 5,
"value": "\"iOS\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 927,
"length": 7,
"value": "\"en_US\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1182,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1218,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1254,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1291,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1329,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1369,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1409,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1448,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1482,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1515,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1552,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1590,
"length": 11,
"value": "\"licensing\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1182,
"length": 12,
"value": "\"instanceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1218,
"length": 9,
"value": "\"eventId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1254,
"length": 12,
"value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1291,
"length": 10,
"value": "\"platform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1329,
"length": 13,
"value": "\"sdkPlatform\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1369,
"length": 12,
"value": "\"deviceInfo\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1409,
"length": 13,
"value": "\"deviceState\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1448,
"length": 11,
"value": "\"occurence\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1482,
"length": 8,
"value": "\"checks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1515,
"length": 10,
"value": "\"deviceId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1552,
"length": 12,
"value": "\"externalId\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
"kind": "StringLiteral",
"offset": 1590,
"length": 11,
"value": "\"licensing\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
"kind": "IntegerLiteral",
"offset": 253,
"length": 2,
"value": "10"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 539,
"length": 8,
"value": "\"status\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 570,
"length": 8,
"value": "\"timeMs\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 539,
"length": 8,
"value": "\"status\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
"kind": "StringLiteral",
"offset": 570,
"length": 8,
"value": "\"timeMs\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
"kind": "BooleanLiteral",
"offset": 477,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 289,
"length": 14,
"value": "\"appIntegrity\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 382,
"length": 18,
"value": "\"privilegedAccess\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 456,
"length": 7,
"value": "\"debug\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 562,
"length": 7,
"value": "\"hooks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 909,
"length": 15,
"value": "\"deviceBinding\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 289,
"length": 14,
"value": "\"appIntegrity\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 382,
"length": 18,
"value": "\"privilegedAccess\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 456,
"length": 7,
"value": "\"debug\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 562,
"length": 7,
"value": "\"hooks\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
"kind": "StringLiteral",
"offset": 909,
"length": 15,
"value": "\"deviceBinding\""
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "Dictionary",
"offset": 605,
"length": 3,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "Dictionary",
"offset": 682,
"length": 3,
"value": "[]"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 17148,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 18385,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner10\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
"kind": "BooleanLiteral",
"offset": 19011,
"length": 4,
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime
index 4006b76..c11cd46 100644
Binary files a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime and b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime differ
diff --git a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources
index df13a1c..c560482 100644
--- a/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources
+++ b/ios/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources
@@ -10,11 +10,11 @@
Headers/CurlWrapper.h
- pDtOsflBGzMS91AU+9sEJcZh+8Y=
+ jpRJaP0Y/GMRMLiKV8FtjFBu9wo=
Headers/TalsecRuntime-Swift.h
- K0yAvhUylIKu1j88ux76AgGWTCA=
+ /k+U+Un49/2P3esxvCfctVeP870=
Headers/TalsecRuntime_iOS.h
@@ -22,7 +22,7 @@
Headers/curl.h
- s54Ysu4phRFqMtR5/wRr6KhPDDs=
+ JyHFFjxceU7gNtzGgynHf3isvkg=
Headers/curlver.h
@@ -42,11 +42,11 @@
Headers/multi.h
- HIuZ0vF6vCe8iO9sHvx/WiCcUV0=
+ 8qyyePTVIxoTn9Xg8Rrq5M+aK0k=
Headers/options.h
- liTGCnBx6MhOap7TgThbEZcypxg=
+ Jfy4UNYa5yUULTqqc0ilCBPZKU4=
Headers/stdcheaders.h
@@ -58,7 +58,7 @@
Headers/urlapi.h
- 4lDVvEvMnJ+kXLsnP2hj+SsyNKM=
+ MQROQlnmLA/CrcWdMpbb8JUKBbg=
Headers/websockets.h
@@ -66,11 +66,11 @@
Info.plist
- DiC1MnZxmZLIsnh/afsdt4Q0YIs=
+ gAtKMS55zdmfYa+L2xBDWDyBv0M=
Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
@@ -86,11 +86,11 @@
Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftmodule
- Kfij7hyZTLqe1y7kIHzQZmf3ZEY=
+ rDQUEMGej6zfhXyoZ4IO/r3+bfo=
Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json
- iiixgb+8sKqUzmHbe9UF87vJkBY=
+ IzxKRnDIxODtvXK/5onh+UbpKKw=
Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
@@ -106,7 +106,7 @@
Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
- 9cfN29mWxl0tLwcqU3zcq+9VYv4=
+ prCCUIrhOhr/4RiFv7wgVHp0OhA=
Modules/module.modulemap
@@ -138,14 +138,14 @@
hash2
- ZxCJz8miH04D5mwk1Wbgbojtiyf3e5tNDdORqA6dNXU=
+ gcNFkk/X41nI27OkXNXWO8Let8BBlRsRNU2A7D3smsQ=
Headers/TalsecRuntime-Swift.h
hash2
- qBdG5CGoSArDHjuZrCGBLBrpau4mPxRnAie8Ci++e4M=
+ FQDj+bS1388tgNFvJb68A/67TfRP/1IIJOKe5betj08=
Headers/TalsecRuntime_iOS.h
@@ -159,7 +159,7 @@
hash2
- 12SDkbk1OaVKxAVbFr0VRBGQxko9zmsv7JuFb9aja+I=
+ yxtfSKpvtD+Hu1ABrTIY/q8DtXkradAsQ33elwHKwHg=
Headers/curlver.h
@@ -194,14 +194,14 @@
hash2
- rSsfTs3+ALDepTLxZWt+Q7LKsr//9Un67OzGrvCgvKc=
+ bg3YAv6jl05zinaJGvLQCyzjdzmST2KKFWOcm8iRf5o=
Headers/options.h
hash2
- PLgSSaZzN7kvk4effcqrOFIJfn8+BhMLz1IfGw4D1k4=
+ N3MzAZykexWc8cXRk1wNmJREwWHlctoedZlRhKIUFRo=
Headers/stdcheaders.h
@@ -222,7 +222,7 @@
hash2
- U+8NF+LVzctZ5ewT0aw98KVLoFJeeFIvQNrgdu50b1w=
+ /HmMkL7MUhQDcXB0I9ZmQ/ZDo9Yr6VtVc0h1sbHi3bA=
Headers/websockets.h
@@ -236,7 +236,7 @@
hash2
- WLgryfcNr2a/8j24wpzNOPkQxXYjoa1sXoMKu8DdXAM=
+ iQOgc9u5JIkKKUK3wvzr7glrA1DoMEcJHAfoeh2g2TU=
Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
@@ -264,14 +264,14 @@
hash2
- cJ+mfvzYD7UbKvJd1pRdgn9zfb+0/qB4rHraz4EvLtA=
+ aQfvbyO+A1g5OTEjmddvM70//0pmsBB2f/MMOxg7MUQ=
Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json
hash2
- WLgryfcNr2a/8j24wpzNOPkQxXYjoa1sXoMKu8DdXAM=
+ iQOgc9u5JIkKKUK3wvzr7glrA1DoMEcJHAfoeh2g2TU=
Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
@@ -299,7 +299,7 @@
hash2
- be8+cJvCGOGqFcIaVf1Gt/moDtwSJSyrk+sah1JICJM=
+ bKO1wIqiyg9KqmXYl55VryQVQNxQx5Y296PEKJA0rsY=
Modules/module.modulemap
diff --git a/package.json b/package.json
index 968a83d..50726ef 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "freerasp-react-native",
- "version": "4.1.0",
+ "version": "4.2.0",
"description": "React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
diff --git a/src/index.tsx b/src/index.tsx
index e230b07..0873f4d 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -134,6 +134,9 @@ export const setThreatListeners = async (
case Threat.ScreenRecording.value:
config.screenRecording?.();
break;
+ case Threat.MultiInstance.value:
+ config.multiInstance?.();
+ break;
default:
onInvalidCallback();
break;
diff --git a/src/threat.ts b/src/threat.ts
index 0c5f7a7..18e589c 100644
--- a/src/threat.ts
+++ b/src/threat.ts
@@ -20,6 +20,7 @@ export class Threat {
static ADBEnabled = new Threat(0);
static Screenshot = new Threat(0);
static ScreenRecording = new Threat(0);
+ static MultiInstance = new Threat(0);
constructor(value: number) {
this.value = value;
@@ -44,6 +45,7 @@ export class Threat {
this.ADBEnabled,
this.Screenshot,
this.ScreenRecording,
+ this.MultiInstance,
]
: [
this.AppIntegrity,
diff --git a/src/types.ts b/src/types.ts
index 4f36f71..d8f242b 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -55,4 +55,5 @@ export type NativeEventEmitterActions = {
adbEnabled?: () => any;
screenshot?: () => any;
screenRecording?: () => any;
+ multiInstance?: () => any;
};