capacitor-freerasp 2.2.2 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +57 -0
- package/CapacitorFreerasp.podspec +1 -1
- package/README.md +8 -8
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/aheaditec/freerasp/FreeraspPlugin.kt +39 -18
- package/android/src/main/java/com/aheaditec/freerasp/ScreenProtector.kt +24 -2
- package/android/src/main/java/com/aheaditec/freerasp/ThreatHandler.kt +36 -18
- package/android/src/main/java/com/aheaditec/freerasp/events/BaseRaspEvent.kt +7 -0
- package/android/src/main/java/com/aheaditec/freerasp/events/RaspExecutionStateEvent.kt +22 -0
- package/android/src/main/java/com/aheaditec/freerasp/events/ThreatEvent.kt +69 -0
- package/android/src/main/java/com/aheaditec/freerasp/models/CapSuspiciousAppInfo.kt +1 -0
- package/android/src/main/java/com/aheaditec/freerasp/utils/Extensions.kt +1 -0
- package/android/src/main/java/com/aheaditec/freerasp/utils/RandomGenerator.kt +24 -0
- package/android/src/main/java/com/aheaditec/freerasp/utils/Utils.kt +3 -5
- package/dist/esm/api/listeners/raspExecutionState.d.ts +2 -0
- package/dist/esm/api/listeners/raspExecutionState.js +23 -0
- package/dist/esm/api/listeners/raspExecutionState.js.map +1 -0
- package/dist/esm/api/listeners/threat.d.ts +2 -0
- package/dist/esm/api/listeners/threat.js +84 -0
- package/dist/esm/api/listeners/threat.js.map +1 -0
- package/dist/esm/api/methods/capacitor.d.ts +4 -0
- package/dist/esm/api/methods/capacitor.js +11 -0
- package/dist/esm/api/methods/capacitor.js.map +1 -0
- package/dist/esm/api/methods/native.d.ts +6 -0
- package/dist/esm/api/methods/native.js +32 -0
- package/dist/esm/api/methods/native.js.map +1 -0
- package/dist/esm/api/nativeModules.d.ts +2 -0
- package/dist/esm/api/nativeModules.js +3 -0
- package/dist/esm/api/nativeModules.js.map +1 -0
- package/dist/esm/channels/raspExecutionState.d.ts +3 -0
- package/dist/esm/channels/raspExecutionState.js +27 -0
- package/dist/esm/channels/raspExecutionState.js.map +1 -0
- package/dist/esm/channels/threat.d.ts +3 -0
- package/dist/esm/channels/threat.js +34 -0
- package/dist/esm/channels/threat.js.map +1 -0
- package/dist/esm/index.d.ts +7 -12
- package/dist/esm/index.js +7 -158
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/models/raspExecutionState.d.ts +6 -0
- package/dist/esm/models/raspExecutionState.js +10 -0
- package/dist/esm/models/raspExecutionState.js.map +1 -0
- package/dist/esm/models/threat.d.ts +26 -0
- package/dist/esm/{definitions.js → models/threat.js} +7 -3
- package/dist/esm/models/threat.js.map +1 -0
- package/dist/esm/{definitions.d.ts → types/types.d.ts} +37 -44
- package/dist/esm/types/types.js +2 -0
- package/dist/esm/types/types.js.map +1 -0
- package/dist/esm/utils/malware.d.ts +3 -0
- package/dist/esm/utils/malware.js +22 -0
- package/dist/esm/utils/malware.js.map +1 -0
- package/dist/esm/utils/utils.d.ts +3 -0
- package/dist/esm/utils/utils.js +12 -0
- package/dist/esm/utils/utils.js.map +1 -0
- package/dist/plugin.cjs.js +153 -78
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +153 -78
- package/dist/plugin.js.map +1 -1
- package/ios/Plugin/FreeraspPlugin.m +2 -0
- package/ios/Plugin/FreeraspPlugin.swift +50 -75
- package/ios/Plugin/Info.plist +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeResources +100 -298
- package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeSignature +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h +7 -2
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h +380 -281
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curlver.h +5 -6
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/easy.h +4 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/header.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/mprintf.h +11 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h +62 -22
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h +2 -2
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/system.h +76 -164
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/typecheck-gcc.h +947 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h +5 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/websockets.h +17 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json +233 -528
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface +7 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftinterface +7 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h +14 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h +380 -281
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curlver.h +5 -6
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/easy.h +4 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/header.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/mprintf.h +11 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h +62 -22
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h +2 -2
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/system.h +76 -164
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/typecheck-gcc.h +947 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h +5 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/websockets.h +17 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json +233 -528
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +7 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftinterface +7 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json +233 -528
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +7 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +7 -3
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources +56 -45
- package/ios/Plugin/models/RaspExecutionStates.swift +15 -0
- package/ios/Plugin/models/SecurityThreat.swift +40 -0
- package/ios/Plugin/utils/EventIdentifiers.swift +17 -0
- package/ios/Plugin/utils/RandomGenerator.swift +23 -0
- package/ios/Plugin/utils/Utils.swift +32 -0
- package/package.json +15 -10
- package/android/src/main/java/com/aheaditec/freerasp/Threat.kt +0 -58
- package/dist/esm/definitions.js.map +0 -1
- package/dist/esm/utils.d.ts +0 -2
- package/dist/esm/utils.js +0 -8
- package/dist/esm/utils.js.map +0 -1
- package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ABIRoot": {
|
|
3
3
|
"kind": "Root",
|
|
4
|
-
"name": "
|
|
5
|
-
"printedName": "
|
|
4
|
+
"name": "TalsecRuntime",
|
|
5
|
+
"printedName": "TalsecRuntime",
|
|
6
6
|
"children": [
|
|
7
7
|
{
|
|
8
8
|
"kind": "Import",
|
|
@@ -250,6 +250,73 @@
|
|
|
250
250
|
"moduleName": "TalsecRuntime",
|
|
251
251
|
"declAttributes": [
|
|
252
252
|
"AccessControl"
|
|
253
|
+
],
|
|
254
|
+
"conformances": [
|
|
255
|
+
{
|
|
256
|
+
"kind": "Conformance",
|
|
257
|
+
"name": "Escapable",
|
|
258
|
+
"printedName": "Escapable",
|
|
259
|
+
"usr": "s:s9EscapableP",
|
|
260
|
+
"mangledName": "$ss9EscapableP"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"kind": "Conformance",
|
|
264
|
+
"name": "Copyable",
|
|
265
|
+
"printedName": "Copyable",
|
|
266
|
+
"usr": "s:s8CopyableP",
|
|
267
|
+
"mangledName": "$ss8CopyableP"
|
|
268
|
+
}
|
|
269
|
+
]
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"kind": "TypeDecl",
|
|
273
|
+
"name": "RaspExecutionState",
|
|
274
|
+
"printedName": "RaspExecutionState",
|
|
275
|
+
"children": [
|
|
276
|
+
{
|
|
277
|
+
"kind": "Function",
|
|
278
|
+
"name": "onAllChecksFinished",
|
|
279
|
+
"printedName": "onAllChecksFinished()",
|
|
280
|
+
"children": [
|
|
281
|
+
{
|
|
282
|
+
"kind": "TypeNominal",
|
|
283
|
+
"name": "Void",
|
|
284
|
+
"printedName": "()"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"declKind": "Func",
|
|
288
|
+
"usr": "s:13TalsecRuntime18RaspExecutionStateP19onAllChecksFinishedyyF",
|
|
289
|
+
"mangledName": "$s13TalsecRuntime18RaspExecutionStateP19onAllChecksFinishedyyF",
|
|
290
|
+
"moduleName": "TalsecRuntime",
|
|
291
|
+
"genericSig": "<τ_0_0 where τ_0_0 : TalsecRuntime.RaspExecutionState>",
|
|
292
|
+
"sugared_genericSig": "<Self where Self : TalsecRuntime.RaspExecutionState>",
|
|
293
|
+
"protocolReq": true,
|
|
294
|
+
"reqNewWitnessTableEntry": true,
|
|
295
|
+
"funcSelfKind": "NonMutating"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"declKind": "Protocol",
|
|
299
|
+
"usr": "s:13TalsecRuntime18RaspExecutionStateP",
|
|
300
|
+
"mangledName": "$s13TalsecRuntime18RaspExecutionStateP",
|
|
301
|
+
"moduleName": "TalsecRuntime",
|
|
302
|
+
"declAttributes": [
|
|
303
|
+
"AccessControl"
|
|
304
|
+
],
|
|
305
|
+
"conformances": [
|
|
306
|
+
{
|
|
307
|
+
"kind": "Conformance",
|
|
308
|
+
"name": "Escapable",
|
|
309
|
+
"printedName": "Escapable",
|
|
310
|
+
"usr": "s:s9EscapableP",
|
|
311
|
+
"mangledName": "$ss9EscapableP"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"kind": "Conformance",
|
|
315
|
+
"name": "Copyable",
|
|
316
|
+
"printedName": "Copyable",
|
|
317
|
+
"usr": "s:s8CopyableP",
|
|
318
|
+
"mangledName": "$ss8CopyableP"
|
|
319
|
+
}
|
|
253
320
|
]
|
|
254
321
|
},
|
|
255
322
|
{
|
|
@@ -263,7 +330,23 @@
|
|
|
263
330
|
"declAttributes": [
|
|
264
331
|
"AccessControl"
|
|
265
332
|
],
|
|
266
|
-
"hasMissingDesignatedInitializers": true
|
|
333
|
+
"hasMissingDesignatedInitializers": true,
|
|
334
|
+
"conformances": [
|
|
335
|
+
{
|
|
336
|
+
"kind": "Conformance",
|
|
337
|
+
"name": "Copyable",
|
|
338
|
+
"printedName": "Copyable",
|
|
339
|
+
"usr": "s:s8CopyableP",
|
|
340
|
+
"mangledName": "$ss8CopyableP"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"kind": "Conformance",
|
|
344
|
+
"name": "Escapable",
|
|
345
|
+
"printedName": "Escapable",
|
|
346
|
+
"usr": "s:s9EscapableP",
|
|
347
|
+
"mangledName": "$ss9EscapableP"
|
|
348
|
+
}
|
|
349
|
+
]
|
|
267
350
|
},
|
|
268
351
|
{
|
|
269
352
|
"kind": "Import",
|
|
@@ -638,6 +721,22 @@
|
|
|
638
721
|
"moduleName": "TalsecRuntime",
|
|
639
722
|
"declAttributes": [
|
|
640
723
|
"AccessControl"
|
|
724
|
+
],
|
|
725
|
+
"conformances": [
|
|
726
|
+
{
|
|
727
|
+
"kind": "Conformance",
|
|
728
|
+
"name": "Copyable",
|
|
729
|
+
"printedName": "Copyable",
|
|
730
|
+
"usr": "s:s8CopyableP",
|
|
731
|
+
"mangledName": "$ss8CopyableP"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"kind": "Conformance",
|
|
735
|
+
"name": "Escapable",
|
|
736
|
+
"printedName": "Escapable",
|
|
737
|
+
"usr": "s:s9EscapableP",
|
|
738
|
+
"mangledName": "$ss9EscapableP"
|
|
739
|
+
}
|
|
641
740
|
]
|
|
642
741
|
},
|
|
643
742
|
{
|
|
@@ -772,7 +871,23 @@
|
|
|
772
871
|
"declAttributes": [
|
|
773
872
|
"AccessControl"
|
|
774
873
|
],
|
|
775
|
-
"hasMissingDesignatedInitializers": true
|
|
874
|
+
"hasMissingDesignatedInitializers": true,
|
|
875
|
+
"conformances": [
|
|
876
|
+
{
|
|
877
|
+
"kind": "Conformance",
|
|
878
|
+
"name": "Copyable",
|
|
879
|
+
"printedName": "Copyable",
|
|
880
|
+
"usr": "s:s8CopyableP",
|
|
881
|
+
"mangledName": "$ss8CopyableP"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"kind": "Conformance",
|
|
885
|
+
"name": "Escapable",
|
|
886
|
+
"printedName": "Escapable",
|
|
887
|
+
"usr": "s:s9EscapableP",
|
|
888
|
+
"mangledName": "$ss9EscapableP"
|
|
889
|
+
}
|
|
890
|
+
]
|
|
776
891
|
},
|
|
777
892
|
{
|
|
778
893
|
"kind": "Import",
|
|
@@ -1796,6 +1911,9 @@
|
|
|
1796
1911
|
"moduleName": "TalsecRuntime",
|
|
1797
1912
|
"static": true,
|
|
1798
1913
|
"implicit": true,
|
|
1914
|
+
"declAttributes": [
|
|
1915
|
+
"Nonisolated"
|
|
1916
|
+
],
|
|
1799
1917
|
"accessors": [
|
|
1800
1918
|
{
|
|
1801
1919
|
"kind": "Accessor",
|
|
@@ -1837,6 +1955,20 @@
|
|
|
1837
1955
|
],
|
|
1838
1956
|
"enumRawTypeName": "String",
|
|
1839
1957
|
"conformances": [
|
|
1958
|
+
{
|
|
1959
|
+
"kind": "Conformance",
|
|
1960
|
+
"name": "Copyable",
|
|
1961
|
+
"printedName": "Copyable",
|
|
1962
|
+
"usr": "s:s8CopyableP",
|
|
1963
|
+
"mangledName": "$ss8CopyableP"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"kind": "Conformance",
|
|
1967
|
+
"name": "Escapable",
|
|
1968
|
+
"printedName": "Escapable",
|
|
1969
|
+
"usr": "s:s9EscapableP",
|
|
1970
|
+
"mangledName": "$ss9EscapableP"
|
|
1971
|
+
},
|
|
1840
1972
|
{
|
|
1841
1973
|
"kind": "Conformance",
|
|
1842
1974
|
"name": "Hashable",
|
|
@@ -1950,6 +2082,20 @@
|
|
|
1950
2082
|
],
|
|
1951
2083
|
"isExternal": true,
|
|
1952
2084
|
"conformances": [
|
|
2085
|
+
{
|
|
2086
|
+
"kind": "Conformance",
|
|
2087
|
+
"name": "Copyable",
|
|
2088
|
+
"printedName": "Copyable",
|
|
2089
|
+
"usr": "s:s8CopyableP",
|
|
2090
|
+
"mangledName": "$ss8CopyableP"
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
"kind": "Conformance",
|
|
2094
|
+
"name": "Escapable",
|
|
2095
|
+
"printedName": "Escapable",
|
|
2096
|
+
"usr": "s:s9EscapableP",
|
|
2097
|
+
"mangledName": "$ss9EscapableP"
|
|
2098
|
+
},
|
|
1953
2099
|
{
|
|
1954
2100
|
"kind": "Conformance",
|
|
1955
2101
|
"name": "Decodable",
|
|
@@ -2476,1003 +2622,562 @@
|
|
|
2476
2622
|
},
|
|
2477
2623
|
"ConstValues": [
|
|
2478
2624
|
{
|
|
2479
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2625
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2480
2626
|
"kind": "StringLiteral",
|
|
2481
2627
|
"offset": 243,
|
|
2482
2628
|
"length": 13,
|
|
2483
2629
|
"value": "\"development\""
|
|
2484
2630
|
},
|
|
2485
2631
|
{
|
|
2486
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2632
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2487
2633
|
"kind": "StringLiteral",
|
|
2488
2634
|
"offset": 279,
|
|
2489
2635
|
"length": 12,
|
|
2490
2636
|
"value": "\"production\""
|
|
2491
2637
|
},
|
|
2492
2638
|
{
|
|
2493
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2639
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2494
2640
|
"kind": "StringLiteral",
|
|
2495
2641
|
"offset": 312,
|
|
2496
2642
|
"length": 10,
|
|
2497
2643
|
"value": "\"disabled\""
|
|
2498
2644
|
},
|
|
2499
2645
|
{
|
|
2500
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2501
|
-
"kind": "StringLiteral",
|
|
2502
|
-
"offset": 243,
|
|
2503
|
-
"length": 13,
|
|
2504
|
-
"value": "\"development\""
|
|
2505
|
-
},
|
|
2506
|
-
{
|
|
2507
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2508
|
-
"kind": "StringLiteral",
|
|
2509
|
-
"offset": 279,
|
|
2510
|
-
"length": 12,
|
|
2511
|
-
"value": "\"production\""
|
|
2512
|
-
},
|
|
2513
|
-
{
|
|
2514
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2515
|
-
"kind": "StringLiteral",
|
|
2516
|
-
"offset": 312,
|
|
2517
|
-
"length": 10,
|
|
2518
|
-
"value": "\"disabled\""
|
|
2519
|
-
},
|
|
2520
|
-
{
|
|
2521
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2646
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2522
2647
|
"kind": "StringLiteral",
|
|
2523
2648
|
"offset": 575,
|
|
2524
2649
|
"length": 24,
|
|
2525
2650
|
"value": "\"keychain-access-groups\""
|
|
2526
2651
|
},
|
|
2527
2652
|
{
|
|
2528
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2653
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2529
2654
|
"kind": "StringLiteral",
|
|
2530
2655
|
"offset": 628,
|
|
2531
2656
|
"length": 16,
|
|
2532
2657
|
"value": "\"get-task-allow\""
|
|
2533
2658
|
},
|
|
2534
2659
|
{
|
|
2535
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2660
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2536
2661
|
"kind": "StringLiteral",
|
|
2537
2662
|
"offset": 675,
|
|
2538
2663
|
"length": 17,
|
|
2539
2664
|
"value": "\"aps-environment\""
|
|
2540
2665
|
},
|
|
2541
2666
|
{
|
|
2542
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2667
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2543
2668
|
"kind": "StringLiteral",
|
|
2544
2669
|
"offset": 722,
|
|
2545
2670
|
"length": 24,
|
|
2546
2671
|
"value": "\"application-identifier\""
|
|
2547
2672
|
},
|
|
2548
2673
|
{
|
|
2549
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2550
|
-
"kind": "StringLiteral",
|
|
2551
|
-
"offset": 575,
|
|
2552
|
-
"length": 24,
|
|
2553
|
-
"value": "\"keychain-access-groups\""
|
|
2554
|
-
},
|
|
2555
|
-
{
|
|
2556
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2557
|
-
"kind": "StringLiteral",
|
|
2558
|
-
"offset": 628,
|
|
2559
|
-
"length": 16,
|
|
2560
|
-
"value": "\"get-task-allow\""
|
|
2561
|
-
},
|
|
2562
|
-
{
|
|
2563
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2564
|
-
"kind": "StringLiteral",
|
|
2565
|
-
"offset": 675,
|
|
2566
|
-
"length": 17,
|
|
2567
|
-
"value": "\"aps-environment\""
|
|
2568
|
-
},
|
|
2569
|
-
{
|
|
2570
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2571
|
-
"kind": "StringLiteral",
|
|
2572
|
-
"offset": 722,
|
|
2573
|
-
"length": 24,
|
|
2574
|
-
"value": "\"application-identifier\""
|
|
2575
|
-
},
|
|
2576
|
-
{
|
|
2577
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2674
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2578
2675
|
"kind": "BooleanLiteral",
|
|
2579
2676
|
"offset": 1994,
|
|
2580
2677
|
"length": 5,
|
|
2581
2678
|
"value": "false"
|
|
2582
2679
|
},
|
|
2583
2680
|
{
|
|
2584
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2585
|
-
"kind": "StringLiteral",
|
|
2586
|
-
"offset": 2227,
|
|
2587
|
-
"length": 6,
|
|
2588
|
-
"value": "\"Name\""
|
|
2589
|
-
},
|
|
2590
|
-
{
|
|
2591
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2592
|
-
"kind": "StringLiteral",
|
|
2593
|
-
"offset": 2259,
|
|
2594
|
-
"length": 11,
|
|
2595
|
-
"value": "\"AppIDName\""
|
|
2596
|
-
},
|
|
2597
|
-
{
|
|
2598
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2599
|
-
"kind": "StringLiteral",
|
|
2600
|
-
"offset": 2296,
|
|
2601
|
-
"length": 29,
|
|
2602
|
-
"value": "\"ApplicationIdentifierPrefix\""
|
|
2603
|
-
},
|
|
2604
|
-
{
|
|
2605
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2606
|
-
"kind": "StringLiteral",
|
|
2607
|
-
"offset": 2350,
|
|
2608
|
-
"length": 10,
|
|
2609
|
-
"value": "\"TeamName\""
|
|
2610
|
-
},
|
|
2611
|
-
{
|
|
2612
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2613
|
-
"kind": "StringLiteral",
|
|
2614
|
-
"offset": 2392,
|
|
2615
|
-
"length": 16,
|
|
2616
|
-
"value": "\"TeamIdentifier\""
|
|
2617
|
-
},
|
|
2618
|
-
{
|
|
2619
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2620
|
-
"kind": "StringLiteral",
|
|
2621
|
-
"offset": 2433,
|
|
2622
|
-
"length": 10,
|
|
2623
|
-
"value": "\"Platform\""
|
|
2624
|
-
},
|
|
2625
|
-
{
|
|
2626
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2627
|
-
"kind": "StringLiteral",
|
|
2628
|
-
"offset": 2474,
|
|
2629
|
-
"length": 16,
|
|
2630
|
-
"value": "\"IsXcodeManaged\""
|
|
2631
|
-
},
|
|
2632
|
-
{
|
|
2633
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2634
|
-
"kind": "StringLiteral",
|
|
2635
|
-
"offset": 2519,
|
|
2636
|
-
"length": 14,
|
|
2637
|
-
"value": "\"CreationDate\""
|
|
2638
|
-
},
|
|
2639
|
-
{
|
|
2640
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2641
|
-
"kind": "StringLiteral",
|
|
2642
|
-
"offset": 2564,
|
|
2643
|
-
"length": 16,
|
|
2644
|
-
"value": "\"ExpirationDate\""
|
|
2645
|
-
},
|
|
2646
|
-
{
|
|
2647
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2648
|
-
"kind": "StringLiteral",
|
|
2649
|
-
"offset": 2607,
|
|
2650
|
-
"length": 12,
|
|
2651
|
-
"value": "\"TimeToLive\""
|
|
2652
|
-
},
|
|
2653
|
-
{
|
|
2654
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2655
|
-
"kind": "StringLiteral",
|
|
2656
|
-
"offset": 2640,
|
|
2657
|
-
"length": 6,
|
|
2658
|
-
"value": "\"UUID\""
|
|
2659
|
-
},
|
|
2660
|
-
{
|
|
2661
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2662
|
-
"kind": "StringLiteral",
|
|
2663
|
-
"offset": 2670,
|
|
2664
|
-
"length": 9,
|
|
2665
|
-
"value": "\"Version\""
|
|
2666
|
-
},
|
|
2667
|
-
{
|
|
2668
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2669
|
-
"kind": "StringLiteral",
|
|
2670
|
-
"offset": 2708,
|
|
2671
|
-
"length": 14,
|
|
2672
|
-
"value": "\"Entitlements\""
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2681
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2676
2682
|
"kind": "StringLiteral",
|
|
2677
2683
|
"offset": 2227,
|
|
2678
2684
|
"length": 6,
|
|
2679
2685
|
"value": "\"Name\""
|
|
2680
2686
|
},
|
|
2681
2687
|
{
|
|
2682
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2688
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2683
2689
|
"kind": "StringLiteral",
|
|
2684
2690
|
"offset": 2259,
|
|
2685
2691
|
"length": 11,
|
|
2686
2692
|
"value": "\"AppIDName\""
|
|
2687
2693
|
},
|
|
2688
2694
|
{
|
|
2689
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2695
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2690
2696
|
"kind": "StringLiteral",
|
|
2691
2697
|
"offset": 2296,
|
|
2692
2698
|
"length": 29,
|
|
2693
2699
|
"value": "\"ApplicationIdentifierPrefix\""
|
|
2694
2700
|
},
|
|
2695
2701
|
{
|
|
2696
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2702
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2697
2703
|
"kind": "StringLiteral",
|
|
2698
2704
|
"offset": 2350,
|
|
2699
2705
|
"length": 10,
|
|
2700
2706
|
"value": "\"TeamName\""
|
|
2701
2707
|
},
|
|
2702
2708
|
{
|
|
2703
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2709
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2704
2710
|
"kind": "StringLiteral",
|
|
2705
2711
|
"offset": 2392,
|
|
2706
2712
|
"length": 16,
|
|
2707
2713
|
"value": "\"TeamIdentifier\""
|
|
2708
2714
|
},
|
|
2709
2715
|
{
|
|
2710
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2716
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2711
2717
|
"kind": "StringLiteral",
|
|
2712
2718
|
"offset": 2433,
|
|
2713
2719
|
"length": 10,
|
|
2714
2720
|
"value": "\"Platform\""
|
|
2715
2721
|
},
|
|
2716
2722
|
{
|
|
2717
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2723
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2718
2724
|
"kind": "StringLiteral",
|
|
2719
2725
|
"offset": 2474,
|
|
2720
2726
|
"length": 16,
|
|
2721
2727
|
"value": "\"IsXcodeManaged\""
|
|
2722
2728
|
},
|
|
2723
2729
|
{
|
|
2724
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2730
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2725
2731
|
"kind": "StringLiteral",
|
|
2726
2732
|
"offset": 2519,
|
|
2727
2733
|
"length": 14,
|
|
2728
2734
|
"value": "\"CreationDate\""
|
|
2729
2735
|
},
|
|
2730
2736
|
{
|
|
2731
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2737
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2732
2738
|
"kind": "StringLiteral",
|
|
2733
2739
|
"offset": 2564,
|
|
2734
2740
|
"length": 16,
|
|
2735
2741
|
"value": "\"ExpirationDate\""
|
|
2736
2742
|
},
|
|
2737
2743
|
{
|
|
2738
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2744
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2739
2745
|
"kind": "StringLiteral",
|
|
2740
2746
|
"offset": 2607,
|
|
2741
2747
|
"length": 12,
|
|
2742
2748
|
"value": "\"TimeToLive\""
|
|
2743
2749
|
},
|
|
2744
2750
|
{
|
|
2745
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2751
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2746
2752
|
"kind": "StringLiteral",
|
|
2747
2753
|
"offset": 2640,
|
|
2748
2754
|
"length": 6,
|
|
2749
2755
|
"value": "\"UUID\""
|
|
2750
2756
|
},
|
|
2751
2757
|
{
|
|
2752
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2758
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2753
2759
|
"kind": "StringLiteral",
|
|
2754
2760
|
"offset": 2670,
|
|
2755
2761
|
"length": 9,
|
|
2756
2762
|
"value": "\"Version\""
|
|
2757
2763
|
},
|
|
2758
2764
|
{
|
|
2759
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2765
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
|
|
2760
2766
|
"kind": "StringLiteral",
|
|
2761
2767
|
"offset": 2708,
|
|
2762
2768
|
"length": 14,
|
|
2763
2769
|
"value": "\"Entitlements\""
|
|
2764
2770
|
},
|
|
2765
2771
|
{
|
|
2766
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2772
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
|
|
2767
2773
|
"kind": "Array",
|
|
2768
2774
|
"offset": 375,
|
|
2769
2775
|
"length": 2,
|
|
2770
2776
|
"value": "[]"
|
|
2771
2777
|
},
|
|
2772
2778
|
{
|
|
2773
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2779
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
|
|
2774
2780
|
"kind": "StringLiteral",
|
|
2775
2781
|
"offset": 415,
|
|
2776
2782
|
"length": 2,
|
|
2777
2783
|
"value": "\"\""
|
|
2778
2784
|
},
|
|
2779
2785
|
{
|
|
2780
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2786
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
|
|
2781
2787
|
"kind": "BooleanLiteral",
|
|
2782
2788
|
"offset": 491,
|
|
2783
2789
|
"length": 4,
|
|
2784
2790
|
"value": "true"
|
|
2785
2791
|
},
|
|
2786
2792
|
{
|
|
2787
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2793
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2788
2794
|
"kind": "StringLiteral",
|
|
2789
2795
|
"offset": 471,
|
|
2790
2796
|
"length": 11,
|
|
2791
2797
|
"value": "\"osVersion\""
|
|
2792
2798
|
},
|
|
2793
2799
|
{
|
|
2794
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2800
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2795
2801
|
"kind": "StringLiteral",
|
|
2796
2802
|
"offset": 511,
|
|
2797
2803
|
"length": 14,
|
|
2798
2804
|
"value": "\"manufacturer\""
|
|
2799
2805
|
},
|
|
2800
2806
|
{
|
|
2801
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2807
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2802
2808
|
"kind": "StringLiteral",
|
|
2803
2809
|
"offset": 547,
|
|
2804
2810
|
"length": 7,
|
|
2805
2811
|
"value": "\"model\""
|
|
2806
2812
|
},
|
|
2807
2813
|
{
|
|
2808
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2809
|
-
"kind": "StringLiteral",
|
|
2810
|
-
"offset": 471,
|
|
2811
|
-
"length": 11,
|
|
2812
|
-
"value": "\"osVersion\""
|
|
2813
|
-
},
|
|
2814
|
-
{
|
|
2815
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2816
|
-
"kind": "StringLiteral",
|
|
2817
|
-
"offset": 511,
|
|
2818
|
-
"length": 14,
|
|
2819
|
-
"value": "\"manufacturer\""
|
|
2820
|
-
},
|
|
2821
|
-
{
|
|
2822
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2823
|
-
"kind": "StringLiteral",
|
|
2824
|
-
"offset": 547,
|
|
2825
|
-
"length": 7,
|
|
2826
|
-
"value": "\"model\""
|
|
2827
|
-
},
|
|
2828
|
-
{
|
|
2829
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2814
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2830
2815
|
"kind": "StringLiteral",
|
|
2831
2816
|
"offset": 753,
|
|
2832
2817
|
"length": 10,
|
|
2833
2818
|
"value": "\"security\""
|
|
2834
2819
|
},
|
|
2835
2820
|
{
|
|
2836
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2821
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2837
2822
|
"kind": "StringLiteral",
|
|
2838
2823
|
"offset": 790,
|
|
2839
2824
|
"length": 12,
|
|
2840
2825
|
"value": "\"biometrics\""
|
|
2841
2826
|
},
|
|
2842
2827
|
{
|
|
2843
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2828
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2844
2829
|
"kind": "StringLiteral",
|
|
2845
2830
|
"offset": 835,
|
|
2846
2831
|
"length": 18,
|
|
2847
2832
|
"value": "\"hwBackedKeychain\""
|
|
2848
2833
|
},
|
|
2849
2834
|
{
|
|
2850
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2851
|
-
"kind": "StringLiteral",
|
|
2852
|
-
"offset": 753,
|
|
2853
|
-
"length": 10,
|
|
2854
|
-
"value": "\"security\""
|
|
2855
|
-
},
|
|
2856
|
-
{
|
|
2857
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2858
|
-
"kind": "StringLiteral",
|
|
2859
|
-
"offset": 790,
|
|
2860
|
-
"length": 12,
|
|
2861
|
-
"value": "\"biometrics\""
|
|
2862
|
-
},
|
|
2863
|
-
{
|
|
2864
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2865
|
-
"kind": "StringLiteral",
|
|
2866
|
-
"offset": 835,
|
|
2867
|
-
"length": 18,
|
|
2868
|
-
"value": "\"hwBackedKeychain\""
|
|
2869
|
-
},
|
|
2870
|
-
{
|
|
2871
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2835
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2872
2836
|
"kind": "StringLiteral",
|
|
2873
2837
|
"offset": 1430,
|
|
2874
2838
|
"length": 18,
|
|
2875
2839
|
"value": "\"endOfGracePeriod\""
|
|
2876
2840
|
},
|
|
2877
2841
|
{
|
|
2878
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2879
|
-
"kind": "StringLiteral",
|
|
2880
|
-
"offset": 1430,
|
|
2881
|
-
"length": 18,
|
|
2882
|
-
"value": "\"endOfGracePeriod\""
|
|
2883
|
-
},
|
|
2884
|
-
{
|
|
2885
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2842
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2886
2843
|
"kind": "StringLiteral",
|
|
2887
2844
|
"offset": 1874,
|
|
2888
2845
|
"length": 15,
|
|
2889
2846
|
"value": "\"appIdentifier\""
|
|
2890
2847
|
},
|
|
2891
2848
|
{
|
|
2892
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2849
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2893
2850
|
"kind": "StringLiteral",
|
|
2894
2851
|
"offset": 1916,
|
|
2895
2852
|
"length": 12,
|
|
2896
2853
|
"value": "\"appVersion\""
|
|
2897
2854
|
},
|
|
2898
2855
|
{
|
|
2899
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2900
|
-
"kind": "StringLiteral",
|
|
2901
|
-
"offset": 1874,
|
|
2902
|
-
"length": 15,
|
|
2903
|
-
"value": "\"appIdentifier\""
|
|
2904
|
-
},
|
|
2905
|
-
{
|
|
2906
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2907
|
-
"kind": "StringLiteral",
|
|
2908
|
-
"offset": 1916,
|
|
2909
|
-
"length": 12,
|
|
2910
|
-
"value": "\"appVersion\""
|
|
2911
|
-
},
|
|
2912
|
-
{
|
|
2913
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2856
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2914
2857
|
"kind": "StringLiteral",
|
|
2915
2858
|
"offset": 5957,
|
|
2916
2859
|
"length": 5,
|
|
2917
2860
|
"value": "\"iOS\""
|
|
2918
2861
|
},
|
|
2919
2862
|
{
|
|
2920
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2863
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2921
2864
|
"kind": "StringLiteral",
|
|
2922
2865
|
"offset": 6394,
|
|
2923
2866
|
"length": 7,
|
|
2924
2867
|
"value": "\"en_US\""
|
|
2925
2868
|
},
|
|
2926
2869
|
{
|
|
2927
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2870
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2928
2871
|
"kind": "StringLiteral",
|
|
2929
2872
|
"offset": 6873,
|
|
2930
2873
|
"length": 3,
|
|
2931
2874
|
"value": "\".\""
|
|
2932
2875
|
},
|
|
2933
2876
|
{
|
|
2934
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2877
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2935
2878
|
"kind": "StringLiteral",
|
|
2936
2879
|
"offset": 6923,
|
|
2937
2880
|
"length": 2,
|
|
2938
2881
|
"value": "\"\""
|
|
2939
2882
|
},
|
|
2940
2883
|
{
|
|
2941
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2942
|
-
"kind": "StringLiteral",
|
|
2943
|
-
"offset": 7146,
|
|
2944
|
-
"length": 12,
|
|
2945
|
-
"value": "\"instanceId\""
|
|
2946
|
-
},
|
|
2947
|
-
{
|
|
2948
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2949
|
-
"kind": "StringLiteral",
|
|
2950
|
-
"offset": 7182,
|
|
2951
|
-
"length": 9,
|
|
2952
|
-
"value": "\"eventId\""
|
|
2953
|
-
},
|
|
2954
|
-
{
|
|
2955
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2956
|
-
"kind": "StringLiteral",
|
|
2957
|
-
"offset": 7218,
|
|
2958
|
-
"length": 12,
|
|
2959
|
-
"value": "\"deviceInfo\""
|
|
2960
|
-
},
|
|
2961
|
-
{
|
|
2962
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2963
|
-
"kind": "StringLiteral",
|
|
2964
|
-
"offset": 7258,
|
|
2965
|
-
"length": 13,
|
|
2966
|
-
"value": "\"deviceState\""
|
|
2967
|
-
},
|
|
2968
|
-
{
|
|
2969
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2970
|
-
"kind": "StringLiteral",
|
|
2971
|
-
"offset": 7295,
|
|
2972
|
-
"length": 9,
|
|
2973
|
-
"value": "\"appInfo\""
|
|
2974
|
-
},
|
|
2975
|
-
{
|
|
2976
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2977
|
-
"kind": "StringLiteral",
|
|
2978
|
-
"offset": 7329,
|
|
2979
|
-
"length": 10,
|
|
2980
|
-
"value": "\"platform\""
|
|
2981
|
-
},
|
|
2982
|
-
{
|
|
2983
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2984
|
-
"kind": "StringLiteral",
|
|
2985
|
-
"offset": 7365,
|
|
2986
|
-
"length": 11,
|
|
2987
|
-
"value": "\"occurence\""
|
|
2988
|
-
},
|
|
2989
|
-
{
|
|
2990
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2991
|
-
"kind": "StringLiteral",
|
|
2992
|
-
"offset": 7407,
|
|
2993
|
-
"length": 16,
|
|
2994
|
-
"value": "\"incidentReport\""
|
|
2995
|
-
},
|
|
2996
|
-
{
|
|
2997
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2998
|
-
"kind": "StringLiteral",
|
|
2999
|
-
"offset": 7446,
|
|
3000
|
-
"length": 8,
|
|
3001
|
-
"value": "\"checks\""
|
|
3002
|
-
},
|
|
3003
|
-
{
|
|
3004
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3005
|
-
"kind": "StringLiteral",
|
|
3006
|
-
"offset": 7481,
|
|
3007
|
-
"length": 12,
|
|
3008
|
-
"value": "\"externalId\""
|
|
3009
|
-
},
|
|
3010
|
-
{
|
|
3011
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3012
|
-
"kind": "StringLiteral",
|
|
3013
|
-
"offset": 7519,
|
|
3014
|
-
"length": 11,
|
|
3015
|
-
"value": "\"sessionId\""
|
|
3016
|
-
},
|
|
3017
|
-
{
|
|
3018
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3019
|
-
"kind": "StringLiteral",
|
|
3020
|
-
"offset": 7555,
|
|
3021
|
-
"length": 10,
|
|
3022
|
-
"value": "\"deviceId\""
|
|
3023
|
-
},
|
|
3024
|
-
{
|
|
3025
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3026
|
-
"kind": "StringLiteral",
|
|
3027
|
-
"offset": 7592,
|
|
3028
|
-
"length": 12,
|
|
3029
|
-
"value": "\"sdkVersion\""
|
|
3030
|
-
},
|
|
3031
|
-
{
|
|
3032
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3033
|
-
"kind": "StringLiteral",
|
|
3034
|
-
"offset": 7632,
|
|
3035
|
-
"length": 13,
|
|
3036
|
-
"value": "\"sdkPlatform\""
|
|
3037
|
-
},
|
|
3038
|
-
{
|
|
3039
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3040
|
-
"kind": "StringLiteral",
|
|
3041
|
-
"offset": 7675,
|
|
3042
|
-
"length": 15,
|
|
3043
|
-
"value": "\"sdkIdentifier\""
|
|
3044
|
-
},
|
|
3045
|
-
{
|
|
3046
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
2884
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3047
2885
|
"kind": "StringLiteral",
|
|
3048
2886
|
"offset": 7146,
|
|
3049
2887
|
"length": 12,
|
|
3050
2888
|
"value": "\"instanceId\""
|
|
3051
2889
|
},
|
|
3052
2890
|
{
|
|
3053
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2891
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3054
2892
|
"kind": "StringLiteral",
|
|
3055
2893
|
"offset": 7182,
|
|
3056
2894
|
"length": 9,
|
|
3057
2895
|
"value": "\"eventId\""
|
|
3058
2896
|
},
|
|
3059
2897
|
{
|
|
3060
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2898
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3061
2899
|
"kind": "StringLiteral",
|
|
3062
2900
|
"offset": 7218,
|
|
3063
2901
|
"length": 12,
|
|
3064
2902
|
"value": "\"deviceInfo\""
|
|
3065
2903
|
},
|
|
3066
2904
|
{
|
|
3067
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2905
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3068
2906
|
"kind": "StringLiteral",
|
|
3069
2907
|
"offset": 7258,
|
|
3070
2908
|
"length": 13,
|
|
3071
2909
|
"value": "\"deviceState\""
|
|
3072
2910
|
},
|
|
3073
2911
|
{
|
|
3074
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2912
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3075
2913
|
"kind": "StringLiteral",
|
|
3076
2914
|
"offset": 7295,
|
|
3077
2915
|
"length": 9,
|
|
3078
2916
|
"value": "\"appInfo\""
|
|
3079
2917
|
},
|
|
3080
2918
|
{
|
|
3081
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2919
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3082
2920
|
"kind": "StringLiteral",
|
|
3083
2921
|
"offset": 7329,
|
|
3084
2922
|
"length": 10,
|
|
3085
2923
|
"value": "\"platform\""
|
|
3086
2924
|
},
|
|
3087
2925
|
{
|
|
3088
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2926
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3089
2927
|
"kind": "StringLiteral",
|
|
3090
2928
|
"offset": 7365,
|
|
3091
2929
|
"length": 11,
|
|
3092
2930
|
"value": "\"occurence\""
|
|
3093
2931
|
},
|
|
3094
2932
|
{
|
|
3095
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2933
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3096
2934
|
"kind": "StringLiteral",
|
|
3097
2935
|
"offset": 7407,
|
|
3098
2936
|
"length": 16,
|
|
3099
2937
|
"value": "\"incidentReport\""
|
|
3100
2938
|
},
|
|
3101
2939
|
{
|
|
3102
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2940
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3103
2941
|
"kind": "StringLiteral",
|
|
3104
2942
|
"offset": 7446,
|
|
3105
2943
|
"length": 8,
|
|
3106
2944
|
"value": "\"checks\""
|
|
3107
2945
|
},
|
|
3108
2946
|
{
|
|
3109
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2947
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3110
2948
|
"kind": "StringLiteral",
|
|
3111
2949
|
"offset": 7481,
|
|
3112
2950
|
"length": 12,
|
|
3113
2951
|
"value": "\"externalId\""
|
|
3114
2952
|
},
|
|
3115
2953
|
{
|
|
3116
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2954
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3117
2955
|
"kind": "StringLiteral",
|
|
3118
2956
|
"offset": 7519,
|
|
3119
2957
|
"length": 11,
|
|
3120
2958
|
"value": "\"sessionId\""
|
|
3121
2959
|
},
|
|
3122
2960
|
{
|
|
3123
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2961
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3124
2962
|
"kind": "StringLiteral",
|
|
3125
2963
|
"offset": 7555,
|
|
3126
2964
|
"length": 10,
|
|
3127
2965
|
"value": "\"deviceId\""
|
|
3128
2966
|
},
|
|
3129
2967
|
{
|
|
3130
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2968
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3131
2969
|
"kind": "StringLiteral",
|
|
3132
2970
|
"offset": 7592,
|
|
3133
2971
|
"length": 12,
|
|
3134
2972
|
"value": "\"sdkVersion\""
|
|
3135
2973
|
},
|
|
3136
2974
|
{
|
|
3137
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2975
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3138
2976
|
"kind": "StringLiteral",
|
|
3139
2977
|
"offset": 7632,
|
|
3140
2978
|
"length": 13,
|
|
3141
2979
|
"value": "\"sdkPlatform\""
|
|
3142
2980
|
},
|
|
3143
2981
|
{
|
|
3144
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2982
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
|
|
3145
2983
|
"kind": "StringLiteral",
|
|
3146
2984
|
"offset": 7675,
|
|
3147
2985
|
"length": 15,
|
|
3148
2986
|
"value": "\"sdkIdentifier\""
|
|
3149
2987
|
},
|
|
3150
2988
|
{
|
|
3151
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2989
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3152
2990
|
"kind": "StringLiteral",
|
|
3153
2991
|
"offset": 413,
|
|
3154
2992
|
"length": 5,
|
|
3155
2993
|
"value": "\"iOS\""
|
|
3156
2994
|
},
|
|
3157
2995
|
{
|
|
3158
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
2996
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3159
2997
|
"kind": "StringLiteral",
|
|
3160
2998
|
"offset": 927,
|
|
3161
2999
|
"length": 7,
|
|
3162
3000
|
"value": "\"en_US\""
|
|
3163
3001
|
},
|
|
3164
3002
|
{
|
|
3165
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3003
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3166
3004
|
"kind": "StringLiteral",
|
|
3167
3005
|
"offset": 1182,
|
|
3168
3006
|
"length": 12,
|
|
3169
3007
|
"value": "\"instanceId\""
|
|
3170
3008
|
},
|
|
3171
3009
|
{
|
|
3172
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3010
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3173
3011
|
"kind": "StringLiteral",
|
|
3174
3012
|
"offset": 1218,
|
|
3175
3013
|
"length": 9,
|
|
3176
3014
|
"value": "\"eventId\""
|
|
3177
3015
|
},
|
|
3178
3016
|
{
|
|
3179
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3017
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3180
3018
|
"kind": "StringLiteral",
|
|
3181
3019
|
"offset": 1254,
|
|
3182
3020
|
"length": 12,
|
|
3183
3021
|
"value": "\"sdkVersion\""
|
|
3184
3022
|
},
|
|
3185
3023
|
{
|
|
3186
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3024
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3187
3025
|
"kind": "StringLiteral",
|
|
3188
3026
|
"offset": 1291,
|
|
3189
3027
|
"length": 10,
|
|
3190
3028
|
"value": "\"platform\""
|
|
3191
3029
|
},
|
|
3192
3030
|
{
|
|
3193
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3031
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3194
3032
|
"kind": "StringLiteral",
|
|
3195
3033
|
"offset": 1329,
|
|
3196
3034
|
"length": 13,
|
|
3197
3035
|
"value": "\"sdkPlatform\""
|
|
3198
3036
|
},
|
|
3199
3037
|
{
|
|
3200
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3038
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3201
3039
|
"kind": "StringLiteral",
|
|
3202
3040
|
"offset": 1369,
|
|
3203
3041
|
"length": 12,
|
|
3204
3042
|
"value": "\"deviceInfo\""
|
|
3205
3043
|
},
|
|
3206
3044
|
{
|
|
3207
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3045
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3208
3046
|
"kind": "StringLiteral",
|
|
3209
3047
|
"offset": 1409,
|
|
3210
3048
|
"length": 13,
|
|
3211
3049
|
"value": "\"deviceState\""
|
|
3212
3050
|
},
|
|
3213
3051
|
{
|
|
3214
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3052
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3215
3053
|
"kind": "StringLiteral",
|
|
3216
3054
|
"offset": 1448,
|
|
3217
3055
|
"length": 11,
|
|
3218
3056
|
"value": "\"occurence\""
|
|
3219
3057
|
},
|
|
3220
3058
|
{
|
|
3221
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3059
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3222
3060
|
"kind": "StringLiteral",
|
|
3223
3061
|
"offset": 1482,
|
|
3224
3062
|
"length": 8,
|
|
3225
3063
|
"value": "\"checks\""
|
|
3226
3064
|
},
|
|
3227
3065
|
{
|
|
3228
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3066
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3229
3067
|
"kind": "StringLiteral",
|
|
3230
3068
|
"offset": 1515,
|
|
3231
3069
|
"length": 10,
|
|
3232
3070
|
"value": "\"deviceId\""
|
|
3233
3071
|
},
|
|
3234
3072
|
{
|
|
3235
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3073
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3236
3074
|
"kind": "StringLiteral",
|
|
3237
3075
|
"offset": 1552,
|
|
3238
3076
|
"length": 12,
|
|
3239
3077
|
"value": "\"externalId\""
|
|
3240
3078
|
},
|
|
3241
3079
|
{
|
|
3242
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3080
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3243
3081
|
"kind": "StringLiteral",
|
|
3244
3082
|
"offset": 1590,
|
|
3245
3083
|
"length": 11,
|
|
3246
3084
|
"value": "\"licensing\""
|
|
3247
3085
|
},
|
|
3248
3086
|
{
|
|
3249
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3250
|
-
"kind": "StringLiteral",
|
|
3251
|
-
"offset": 1182,
|
|
3252
|
-
"length": 12,
|
|
3253
|
-
"value": "\"instanceId\""
|
|
3254
|
-
},
|
|
3255
|
-
{
|
|
3256
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3257
|
-
"kind": "StringLiteral",
|
|
3258
|
-
"offset": 1218,
|
|
3259
|
-
"length": 9,
|
|
3260
|
-
"value": "\"eventId\""
|
|
3261
|
-
},
|
|
3262
|
-
{
|
|
3263
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3264
|
-
"kind": "StringLiteral",
|
|
3265
|
-
"offset": 1254,
|
|
3266
|
-
"length": 12,
|
|
3267
|
-
"value": "\"sdkVersion\""
|
|
3268
|
-
},
|
|
3269
|
-
{
|
|
3270
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3271
|
-
"kind": "StringLiteral",
|
|
3272
|
-
"offset": 1291,
|
|
3273
|
-
"length": 10,
|
|
3274
|
-
"value": "\"platform\""
|
|
3275
|
-
},
|
|
3276
|
-
{
|
|
3277
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3278
|
-
"kind": "StringLiteral",
|
|
3279
|
-
"offset": 1329,
|
|
3280
|
-
"length": 13,
|
|
3281
|
-
"value": "\"sdkPlatform\""
|
|
3282
|
-
},
|
|
3283
|
-
{
|
|
3284
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3285
|
-
"kind": "StringLiteral",
|
|
3286
|
-
"offset": 1369,
|
|
3287
|
-
"length": 12,
|
|
3288
|
-
"value": "\"deviceInfo\""
|
|
3289
|
-
},
|
|
3290
|
-
{
|
|
3291
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3292
|
-
"kind": "StringLiteral",
|
|
3293
|
-
"offset": 1409,
|
|
3294
|
-
"length": 13,
|
|
3295
|
-
"value": "\"deviceState\""
|
|
3296
|
-
},
|
|
3297
|
-
{
|
|
3298
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3299
|
-
"kind": "StringLiteral",
|
|
3300
|
-
"offset": 1448,
|
|
3301
|
-
"length": 11,
|
|
3302
|
-
"value": "\"occurence\""
|
|
3303
|
-
},
|
|
3304
|
-
{
|
|
3305
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3306
|
-
"kind": "StringLiteral",
|
|
3307
|
-
"offset": 1482,
|
|
3308
|
-
"length": 8,
|
|
3309
|
-
"value": "\"checks\""
|
|
3310
|
-
},
|
|
3311
|
-
{
|
|
3312
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3313
|
-
"kind": "StringLiteral",
|
|
3314
|
-
"offset": 1515,
|
|
3315
|
-
"length": 10,
|
|
3316
|
-
"value": "\"deviceId\""
|
|
3317
|
-
},
|
|
3318
|
-
{
|
|
3319
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3320
|
-
"kind": "StringLiteral",
|
|
3321
|
-
"offset": 1552,
|
|
3322
|
-
"length": 12,
|
|
3323
|
-
"value": "\"externalId\""
|
|
3324
|
-
},
|
|
3325
|
-
{
|
|
3326
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
|
|
3327
|
-
"kind": "StringLiteral",
|
|
3328
|
-
"offset": 1590,
|
|
3329
|
-
"length": 11,
|
|
3330
|
-
"value": "\"licensing\""
|
|
3331
|
-
},
|
|
3332
|
-
{
|
|
3333
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
|
|
3087
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
|
|
3334
3088
|
"kind": "IntegerLiteral",
|
|
3335
3089
|
"offset": 253,
|
|
3336
3090
|
"length": 2,
|
|
3337
3091
|
"value": "10"
|
|
3338
3092
|
},
|
|
3339
3093
|
{
|
|
3340
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3094
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
|
|
3341
3095
|
"kind": "StringLiteral",
|
|
3342
3096
|
"offset": 539,
|
|
3343
3097
|
"length": 8,
|
|
3344
3098
|
"value": "\"status\""
|
|
3345
3099
|
},
|
|
3346
3100
|
{
|
|
3347
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3101
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
|
|
3348
3102
|
"kind": "StringLiteral",
|
|
3349
3103
|
"offset": 570,
|
|
3350
3104
|
"length": 8,
|
|
3351
3105
|
"value": "\"timeMs\""
|
|
3352
3106
|
},
|
|
3353
3107
|
{
|
|
3354
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3355
|
-
"kind": "StringLiteral",
|
|
3356
|
-
"offset": 539,
|
|
3357
|
-
"length": 8,
|
|
3358
|
-
"value": "\"status\""
|
|
3359
|
-
},
|
|
3360
|
-
{
|
|
3361
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
|
|
3362
|
-
"kind": "StringLiteral",
|
|
3363
|
-
"offset": 570,
|
|
3364
|
-
"length": 8,
|
|
3365
|
-
"value": "\"timeMs\""
|
|
3366
|
-
},
|
|
3367
|
-
{
|
|
3368
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
|
|
3108
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
|
|
3369
3109
|
"kind": "BooleanLiteral",
|
|
3370
3110
|
"offset": 477,
|
|
3371
3111
|
"length": 4,
|
|
3372
3112
|
"value": "true"
|
|
3373
3113
|
},
|
|
3374
3114
|
{
|
|
3375
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3376
|
-
"kind": "StringLiteral",
|
|
3377
|
-
"offset": 289,
|
|
3378
|
-
"length": 14,
|
|
3379
|
-
"value": "\"appIntegrity\""
|
|
3380
|
-
},
|
|
3381
|
-
{
|
|
3382
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3383
|
-
"kind": "StringLiteral",
|
|
3384
|
-
"offset": 382,
|
|
3385
|
-
"length": 18,
|
|
3386
|
-
"value": "\"privilegedAccess\""
|
|
3387
|
-
},
|
|
3388
|
-
{
|
|
3389
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3390
|
-
"kind": "StringLiteral",
|
|
3391
|
-
"offset": 456,
|
|
3392
|
-
"length": 7,
|
|
3393
|
-
"value": "\"debug\""
|
|
3394
|
-
},
|
|
3395
|
-
{
|
|
3396
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3397
|
-
"kind": "StringLiteral",
|
|
3398
|
-
"offset": 562,
|
|
3399
|
-
"length": 7,
|
|
3400
|
-
"value": "\"hooks\""
|
|
3401
|
-
},
|
|
3402
|
-
{
|
|
3403
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3404
|
-
"kind": "StringLiteral",
|
|
3405
|
-
"offset": 909,
|
|
3406
|
-
"length": 15,
|
|
3407
|
-
"value": "\"deviceBinding\""
|
|
3408
|
-
},
|
|
3409
|
-
{
|
|
3410
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner4\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3115
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3411
3116
|
"kind": "StringLiteral",
|
|
3412
3117
|
"offset": 289,
|
|
3413
3118
|
"length": 14,
|
|
3414
3119
|
"value": "\"appIntegrity\""
|
|
3415
3120
|
},
|
|
3416
3121
|
{
|
|
3417
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3122
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3418
3123
|
"kind": "StringLiteral",
|
|
3419
3124
|
"offset": 382,
|
|
3420
3125
|
"length": 18,
|
|
3421
3126
|
"value": "\"privilegedAccess\""
|
|
3422
3127
|
},
|
|
3423
3128
|
{
|
|
3424
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3129
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3425
3130
|
"kind": "StringLiteral",
|
|
3426
3131
|
"offset": 456,
|
|
3427
3132
|
"length": 7,
|
|
3428
3133
|
"value": "\"debug\""
|
|
3429
3134
|
},
|
|
3430
3135
|
{
|
|
3431
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3136
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3432
3137
|
"kind": "StringLiteral",
|
|
3433
3138
|
"offset": 562,
|
|
3434
3139
|
"length": 7,
|
|
3435
3140
|
"value": "\"hooks\""
|
|
3436
3141
|
},
|
|
3437
3142
|
{
|
|
3438
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3143
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
|
|
3439
3144
|
"kind": "StringLiteral",
|
|
3440
3145
|
"offset": 909,
|
|
3441
3146
|
"length": 15,
|
|
3442
3147
|
"value": "\"deviceBinding\""
|
|
3443
3148
|
},
|
|
3444
3149
|
{
|
|
3445
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3150
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
|
|
3446
3151
|
"kind": "Dictionary",
|
|
3447
3152
|
"offset": 605,
|
|
3448
3153
|
"length": 3,
|
|
3449
3154
|
"value": "[]"
|
|
3450
3155
|
},
|
|
3451
3156
|
{
|
|
3452
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3157
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
|
|
3453
3158
|
"kind": "Dictionary",
|
|
3454
3159
|
"offset": 682,
|
|
3455
3160
|
"length": 3,
|
|
3456
3161
|
"value": "[]"
|
|
3457
3162
|
},
|
|
3458
3163
|
{
|
|
3459
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3164
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
|
|
3460
3165
|
"kind": "BooleanLiteral",
|
|
3461
|
-
"offset":
|
|
3166
|
+
"offset": 17205,
|
|
3462
3167
|
"length": 4,
|
|
3463
3168
|
"value": "true"
|
|
3464
3169
|
},
|
|
3465
3170
|
{
|
|
3466
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3171
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
|
|
3467
3172
|
"kind": "BooleanLiteral",
|
|
3468
|
-
"offset":
|
|
3173
|
+
"offset": 18442,
|
|
3469
3174
|
"length": 4,
|
|
3470
3175
|
"value": "true"
|
|
3471
3176
|
},
|
|
3472
3177
|
{
|
|
3473
|
-
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-
|
|
3178
|
+
"filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
|
|
3474
3179
|
"kind": "BooleanLiteral",
|
|
3475
|
-
"offset":
|
|
3180
|
+
"offset": 19068,
|
|
3476
3181
|
"length": 4,
|
|
3477
3182
|
"value": "true"
|
|
3478
3183
|
}
|