capacitor-freerasp 2.4.0 → 2.5.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.
Files changed (61) hide show
  1. package/CHANGELOG.md +60 -0
  2. package/android/build.gradle +1 -1
  3. package/android/src/main/java/com/aheaditec/freerasp/FreeraspPlugin.kt +70 -45
  4. package/android/src/main/java/com/aheaditec/freerasp/PluginThreatHandler.kt +9 -4
  5. package/android/src/main/java/com/aheaditec/freerasp/dispatchers/ExecutionStateDispatcher.kt +33 -16
  6. package/android/src/main/java/com/aheaditec/freerasp/dispatchers/ThreatDispatcher.kt +40 -24
  7. package/dist/esm/api/listeners/raspExecutionState.js +23 -11
  8. package/dist/esm/api/listeners/raspExecutionState.js.map +1 -1
  9. package/dist/esm/api/listeners/threat.js +25 -12
  10. package/dist/esm/api/listeners/threat.js.map +1 -1
  11. package/dist/esm/api/methods/capacitor.js +7 -1
  12. package/dist/esm/api/methods/capacitor.js.map +1 -1
  13. package/dist/esm/channels/threat.js +2 -5
  14. package/dist/esm/channels/threat.js.map +1 -1
  15. package/dist/esm/models/threat.js +1 -0
  16. package/dist/esm/models/threat.js.map +1 -1
  17. package/dist/esm/types/types.d.ts +6 -1
  18. package/dist/esm/types/types.js.map +1 -1
  19. package/dist/plugin.cjs.js +58 -28
  20. package/dist/plugin.cjs.js.map +1 -1
  21. package/dist/plugin.js +58 -28
  22. package/dist/plugin.js.map +1 -1
  23. package/ios/Plugin/FreeraspPlugin.m +1 -0
  24. package/ios/Plugin/FreeraspPlugin.swift +28 -8
  25. package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory +0 -0
  26. package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeResources +84 -62
  27. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h +1 -1
  28. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h +1 -1
  29. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h +7 -7
  30. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h +4 -4
  31. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h +1 -1
  32. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h +1 -1
  33. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist +0 -0
  34. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json +359 -102
  35. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface +2 -0
  36. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  37. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftinterface +2 -0
  38. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/PrivacyInfo.xcprivacy +8 -0
  39. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime +0 -0
  40. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h +1 -1
  41. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h +2 -2
  42. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h +7 -7
  43. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h +4 -4
  44. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h +1 -1
  45. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h +1 -1
  46. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist +0 -0
  47. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json +366 -109
  48. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +2 -0
  49. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  50. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftinterface +2 -0
  51. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json +366 -109
  52. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +2 -0
  53. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  54. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +2 -0
  55. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/PrivacyInfo.xcprivacy +8 -0
  56. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime +0 -0
  57. package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources +46 -35
  58. package/ios/Plugin/models/SecurityThreat.swift +2 -0
  59. package/ios/Plugin/utils/EventIdentifiers.swift +2 -2
  60. package/package.json +1 -1
  61. package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeSignature +0 -0
@@ -4,6 +4,76 @@
4
4
  "name": "TalsecRuntime",
5
5
  "printedName": "TalsecRuntime",
6
6
  "children": [
7
+ {
8
+ "kind": "Import",
9
+ "name": "Foundation",
10
+ "printedName": "Foundation",
11
+ "declKind": "Import",
12
+ "moduleName": "TalsecRuntime"
13
+ },
14
+ {
15
+ "kind": "Import",
16
+ "name": "Foundation",
17
+ "printedName": "Foundation",
18
+ "declKind": "Import",
19
+ "moduleName": "TalsecRuntime"
20
+ },
21
+ {
22
+ "kind": "Import",
23
+ "name": "Foundation",
24
+ "printedName": "Foundation",
25
+ "declKind": "Import",
26
+ "moduleName": "TalsecRuntime"
27
+ },
28
+ {
29
+ "kind": "Import",
30
+ "name": "Network",
31
+ "printedName": "Network",
32
+ "declKind": "Import",
33
+ "moduleName": "TalsecRuntime"
34
+ },
35
+ {
36
+ "kind": "Import",
37
+ "name": "Foundation",
38
+ "printedName": "Foundation",
39
+ "declKind": "Import",
40
+ "moduleName": "TalsecRuntime"
41
+ },
42
+ {
43
+ "kind": "Import",
44
+ "name": "Foundation",
45
+ "printedName": "Foundation",
46
+ "declKind": "Import",
47
+ "moduleName": "TalsecRuntime"
48
+ },
49
+ {
50
+ "kind": "Import",
51
+ "name": "Network",
52
+ "printedName": "Network",
53
+ "declKind": "Import",
54
+ "moduleName": "TalsecRuntime"
55
+ },
56
+ {
57
+ "kind": "Import",
58
+ "name": "Foundation",
59
+ "printedName": "Foundation",
60
+ "declKind": "Import",
61
+ "moduleName": "TalsecRuntime"
62
+ },
63
+ {
64
+ "kind": "Import",
65
+ "name": "Foundation",
66
+ "printedName": "Foundation",
67
+ "declKind": "Import",
68
+ "moduleName": "TalsecRuntime"
69
+ },
70
+ {
71
+ "kind": "Import",
72
+ "name": "Network",
73
+ "printedName": "Network",
74
+ "declKind": "Import",
75
+ "moduleName": "TalsecRuntime"
76
+ },
7
77
  {
8
78
  "kind": "Import",
9
79
  "name": "Foundation",
@@ -388,6 +458,13 @@
388
458
  "RawDocComment"
389
459
  ]
390
460
  },
461
+ {
462
+ "kind": "Import",
463
+ "name": "CryptoKit",
464
+ "printedName": "CryptoKit",
465
+ "declKind": "Import",
466
+ "moduleName": "TalsecRuntime"
467
+ },
391
468
  {
392
469
  "kind": "Import",
393
470
  "name": "Foundation",
@@ -1813,6 +1890,46 @@
1813
1890
  "RawDocComment"
1814
1891
  ]
1815
1892
  },
1893
+ {
1894
+ "kind": "Var",
1895
+ "name": "timeSpoofing",
1896
+ "printedName": "timeSpoofing",
1897
+ "children": [
1898
+ {
1899
+ "kind": "TypeFunc",
1900
+ "name": "Function",
1901
+ "printedName": "(TalsecRuntime.SecurityThreat.Type) -> TalsecRuntime.SecurityThreat",
1902
+ "children": [
1903
+ {
1904
+ "kind": "TypeNominal",
1905
+ "name": "SecurityThreat",
1906
+ "printedName": "TalsecRuntime.SecurityThreat",
1907
+ "usr": "s:13TalsecRuntime14SecurityThreatO"
1908
+ },
1909
+ {
1910
+ "kind": "TypeNominal",
1911
+ "name": "Metatype",
1912
+ "printedName": "TalsecRuntime.SecurityThreat.Type",
1913
+ "children": [
1914
+ {
1915
+ "kind": "TypeNominal",
1916
+ "name": "SecurityThreat",
1917
+ "printedName": "TalsecRuntime.SecurityThreat",
1918
+ "usr": "s:13TalsecRuntime14SecurityThreatO"
1919
+ }
1920
+ ]
1921
+ }
1922
+ ]
1923
+ }
1924
+ ],
1925
+ "declKind": "EnumElement",
1926
+ "usr": "s:13TalsecRuntime14SecurityThreatO12timeSpoofingyA2CmF",
1927
+ "mangledName": "$s13TalsecRuntime14SecurityThreatO12timeSpoofingyA2CmF",
1928
+ "moduleName": "TalsecRuntime",
1929
+ "declAttributes": [
1930
+ "RawDocComment"
1931
+ ]
1932
+ },
1816
1933
  {
1817
1934
  "kind": "Constructor",
1818
1935
  "name": "init",
@@ -2096,6 +2213,13 @@
2096
2213
  "usr": "s:s9EscapableP",
2097
2214
  "mangledName": "$ss9EscapableP"
2098
2215
  },
2216
+ {
2217
+ "kind": "Conformance",
2218
+ "name": "Equatable",
2219
+ "printedName": "Equatable",
2220
+ "usr": "s:SQ",
2221
+ "mangledName": "$sSQ"
2222
+ },
2099
2223
  {
2100
2224
  "kind": "Conformance",
2101
2225
  "name": "Decodable",
@@ -2453,13 +2577,6 @@
2453
2577
  "usr": "s:ST",
2454
2578
  "mangledName": "$sST"
2455
2579
  },
2456
- {
2457
- "kind": "Conformance",
2458
- "name": "Equatable",
2459
- "printedName": "Equatable",
2460
- "usr": "s:SQ",
2461
- "mangledName": "$sSQ"
2462
- },
2463
2580
  {
2464
2581
  "kind": "Conformance",
2465
2582
  "name": "Comparable",
@@ -2622,562 +2739,702 @@
2622
2739
  },
2623
2740
  "ConstValues": [
2624
2741
  {
2625
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2742
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2743
+ "kind": "IntegerLiteral",
2744
+ "offset": 3270,
2745
+ "length": 1,
2746
+ "value": "0"
2747
+ },
2748
+ {
2749
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2750
+ "kind": "IntegerLiteral",
2751
+ "offset": 3372,
2752
+ "length": 1,
2753
+ "value": "1"
2754
+ },
2755
+ {
2756
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2757
+ "kind": "IntegerLiteral",
2758
+ "offset": 3476,
2759
+ "length": 1,
2760
+ "value": "2"
2761
+ },
2762
+ {
2763
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2764
+ "kind": "IntegerLiteral",
2765
+ "offset": 3562,
2766
+ "length": 1,
2767
+ "value": "3"
2768
+ },
2769
+ {
2770
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2771
+ "kind": "IntegerLiteral",
2772
+ "offset": 3649,
2773
+ "length": 1,
2774
+ "value": "4"
2775
+ },
2776
+ {
2777
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2778
+ "kind": "IntegerLiteral",
2779
+ "offset": 3741,
2780
+ "length": 1,
2781
+ "value": "5"
2782
+ },
2783
+ {
2784
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2785
+ "kind": "IntegerLiteral",
2786
+ "offset": 3831,
2787
+ "length": 1,
2788
+ "value": "6"
2789
+ },
2790
+ {
2791
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2792
+ "kind": "IntegerLiteral",
2793
+ "offset": 3924,
2794
+ "length": 1,
2795
+ "value": "7"
2796
+ },
2797
+ {
2798
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2799
+ "kind": "IntegerLiteral",
2800
+ "offset": 4319,
2801
+ "length": 1,
2802
+ "value": "0"
2803
+ },
2804
+ {
2805
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2806
+ "kind": "IntegerLiteral",
2807
+ "offset": 4423,
2808
+ "length": 1,
2809
+ "value": "1"
2810
+ },
2811
+ {
2812
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2813
+ "kind": "IntegerLiteral",
2814
+ "offset": 4532,
2815
+ "length": 1,
2816
+ "value": "2"
2817
+ },
2818
+ {
2819
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket.swift",
2820
+ "kind": "IntegerLiteral",
2821
+ "offset": 4627,
2822
+ "length": 1,
2823
+ "value": "3"
2824
+ },
2825
+ {
2826
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPTime.swift",
2827
+ "kind": "IntegerLiteral",
2828
+ "offset": 287,
2829
+ "length": 13,
2830
+ "value": "2208988800"
2831
+ },
2832
+ {
2833
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPTime.swift",
2834
+ "kind": "IntegerLiteral",
2835
+ "offset": 466,
2836
+ "length": 13,
2837
+ "value": "2085978496"
2838
+ },
2839
+ {
2840
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPTime.swift",
2841
+ "kind": "IntegerLiteral",
2842
+ "offset": 580,
2843
+ "length": 25,
2844
+ "value": "9487534653230284800"
2845
+ },
2846
+ {
2847
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/TimeSpoofingDetector.swift",
2848
+ "kind": "IntegerLiteral",
2849
+ "offset": 417,
2850
+ "length": 2,
2851
+ "value": "60"
2852
+ },
2853
+ {
2854
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPClient.swift",
2855
+ "kind": "IntegerLiteral",
2856
+ "offset": 775,
2857
+ "length": 1,
2858
+ "value": "5"
2859
+ },
2860
+ {
2861
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPClient.swift",
2862
+ "kind": "IntegerLiteral",
2863
+ "offset": 1522,
2864
+ "length": 3,
2865
+ "value": "123"
2866
+ },
2867
+ {
2868
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPClient.swift",
2869
+ "kind": "BooleanLiteral",
2870
+ "offset": 4729,
2871
+ "length": 5,
2872
+ "value": "false"
2873
+ },
2874
+ {
2875
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/TimeManipulation\/NTP\/NTPPacket+Data.swift",
2876
+ "kind": "IntegerLiteral",
2877
+ "offset": 3301,
2878
+ "length": 1,
2879
+ "value": "0"
2880
+ },
2881
+ {
2882
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2626
2883
  "kind": "StringLiteral",
2627
2884
  "offset": 243,
2628
2885
  "length": 13,
2629
2886
  "value": "\"development\""
2630
2887
  },
2631
2888
  {
2632
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2889
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2633
2890
  "kind": "StringLiteral",
2634
2891
  "offset": 279,
2635
2892
  "length": 12,
2636
2893
  "value": "\"production\""
2637
2894
  },
2638
2895
  {
2639
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2896
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2640
2897
  "kind": "StringLiteral",
2641
2898
  "offset": 312,
2642
2899
  "length": 10,
2643
2900
  "value": "\"disabled\""
2644
2901
  },
2645
2902
  {
2646
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2903
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2647
2904
  "kind": "StringLiteral",
2648
2905
  "offset": 575,
2649
2906
  "length": 24,
2650
2907
  "value": "\"keychain-access-groups\""
2651
2908
  },
2652
2909
  {
2653
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2910
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2654
2911
  "kind": "StringLiteral",
2655
2912
  "offset": 628,
2656
2913
  "length": 16,
2657
2914
  "value": "\"get-task-allow\""
2658
2915
  },
2659
2916
  {
2660
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2917
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2661
2918
  "kind": "StringLiteral",
2662
2919
  "offset": 675,
2663
2920
  "length": 17,
2664
2921
  "value": "\"aps-environment\""
2665
2922
  },
2666
2923
  {
2667
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2924
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2668
2925
  "kind": "StringLiteral",
2669
2926
  "offset": 722,
2670
2927
  "length": 24,
2671
2928
  "value": "\"application-identifier\""
2672
2929
  },
2673
2930
  {
2674
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2931
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2675
2932
  "kind": "BooleanLiteral",
2676
2933
  "offset": 1994,
2677
2934
  "length": 5,
2678
2935
  "value": "false"
2679
2936
  },
2680
2937
  {
2681
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2938
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2682
2939
  "kind": "StringLiteral",
2683
2940
  "offset": 2227,
2684
2941
  "length": 6,
2685
2942
  "value": "\"Name\""
2686
2943
  },
2687
2944
  {
2688
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2945
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2689
2946
  "kind": "StringLiteral",
2690
2947
  "offset": 2259,
2691
2948
  "length": 11,
2692
2949
  "value": "\"AppIDName\""
2693
2950
  },
2694
2951
  {
2695
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2952
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2696
2953
  "kind": "StringLiteral",
2697
2954
  "offset": 2296,
2698
2955
  "length": 29,
2699
2956
  "value": "\"ApplicationIdentifierPrefix\""
2700
2957
  },
2701
2958
  {
2702
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2959
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2703
2960
  "kind": "StringLiteral",
2704
2961
  "offset": 2350,
2705
2962
  "length": 10,
2706
2963
  "value": "\"TeamName\""
2707
2964
  },
2708
2965
  {
2709
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2966
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2710
2967
  "kind": "StringLiteral",
2711
2968
  "offset": 2392,
2712
2969
  "length": 16,
2713
2970
  "value": "\"TeamIdentifier\""
2714
2971
  },
2715
2972
  {
2716
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2973
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2717
2974
  "kind": "StringLiteral",
2718
2975
  "offset": 2433,
2719
2976
  "length": 10,
2720
2977
  "value": "\"Platform\""
2721
2978
  },
2722
2979
  {
2723
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2980
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2724
2981
  "kind": "StringLiteral",
2725
2982
  "offset": 2474,
2726
2983
  "length": 16,
2727
2984
  "value": "\"IsXcodeManaged\""
2728
2985
  },
2729
2986
  {
2730
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2987
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2731
2988
  "kind": "StringLiteral",
2732
2989
  "offset": 2519,
2733
2990
  "length": 14,
2734
2991
  "value": "\"CreationDate\""
2735
2992
  },
2736
2993
  {
2737
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2994
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2738
2995
  "kind": "StringLiteral",
2739
2996
  "offset": 2564,
2740
2997
  "length": 16,
2741
2998
  "value": "\"ExpirationDate\""
2742
2999
  },
2743
3000
  {
2744
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
3001
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2745
3002
  "kind": "StringLiteral",
2746
3003
  "offset": 2607,
2747
3004
  "length": 12,
2748
3005
  "value": "\"TimeToLive\""
2749
3006
  },
2750
3007
  {
2751
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
3008
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2752
3009
  "kind": "StringLiteral",
2753
3010
  "offset": 2640,
2754
3011
  "length": 6,
2755
3012
  "value": "\"UUID\""
2756
3013
  },
2757
3014
  {
2758
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
3015
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2759
3016
  "kind": "StringLiteral",
2760
3017
  "offset": 2670,
2761
3018
  "length": 9,
2762
3019
  "value": "\"Version\""
2763
3020
  },
2764
3021
  {
2765
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
3022
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Signature\/MobileProvision.swift",
2766
3023
  "kind": "StringLiteral",
2767
3024
  "offset": 2708,
2768
3025
  "length": 14,
2769
3026
  "value": "\"Entitlements\""
2770
3027
  },
2771
3028
  {
2772
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
3029
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
2773
3030
  "kind": "Array",
2774
3031
  "offset": 375,
2775
3032
  "length": 2,
2776
3033
  "value": "[]"
2777
3034
  },
2778
3035
  {
2779
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
3036
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
2780
3037
  "kind": "StringLiteral",
2781
3038
  "offset": 415,
2782
3039
  "length": 2,
2783
3040
  "value": "\"\""
2784
3041
  },
2785
3042
  {
2786
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
3043
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/DynamicConfiguration\/DefaultConfig.swift",
2787
3044
  "kind": "BooleanLiteral",
2788
3045
  "offset": 491,
2789
3046
  "length": 4,
2790
3047
  "value": "true"
2791
3048
  },
2792
3049
  {
2793
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3050
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2794
3051
  "kind": "StringLiteral",
2795
3052
  "offset": 471,
2796
3053
  "length": 11,
2797
3054
  "value": "\"osVersion\""
2798
3055
  },
2799
3056
  {
2800
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3057
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2801
3058
  "kind": "StringLiteral",
2802
3059
  "offset": 511,
2803
3060
  "length": 14,
2804
3061
  "value": "\"manufacturer\""
2805
3062
  },
2806
3063
  {
2807
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3064
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2808
3065
  "kind": "StringLiteral",
2809
3066
  "offset": 547,
2810
3067
  "length": 7,
2811
3068
  "value": "\"model\""
2812
3069
  },
2813
3070
  {
2814
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3071
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2815
3072
  "kind": "StringLiteral",
2816
3073
  "offset": 753,
2817
3074
  "length": 10,
2818
3075
  "value": "\"security\""
2819
3076
  },
2820
3077
  {
2821
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3078
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2822
3079
  "kind": "StringLiteral",
2823
3080
  "offset": 790,
2824
3081
  "length": 12,
2825
3082
  "value": "\"biometrics\""
2826
3083
  },
2827
3084
  {
2828
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3085
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2829
3086
  "kind": "StringLiteral",
2830
3087
  "offset": 835,
2831
3088
  "length": 18,
2832
3089
  "value": "\"hwBackedKeychain\""
2833
3090
  },
2834
3091
  {
2835
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3092
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2836
3093
  "kind": "StringLiteral",
2837
3094
  "offset": 1430,
2838
3095
  "length": 18,
2839
3096
  "value": "\"endOfGracePeriod\""
2840
3097
  },
2841
3098
  {
2842
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3099
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2843
3100
  "kind": "StringLiteral",
2844
3101
  "offset": 1874,
2845
3102
  "length": 15,
2846
3103
  "value": "\"appIdentifier\""
2847
3104
  },
2848
3105
  {
2849
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3106
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2850
3107
  "kind": "StringLiteral",
2851
3108
  "offset": 1916,
2852
3109
  "length": 12,
2853
3110
  "value": "\"appVersion\""
2854
3111
  },
2855
3112
  {
2856
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3113
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2857
3114
  "kind": "StringLiteral",
2858
- "offset": 5957,
3115
+ "offset": 7497,
2859
3116
  "length": 5,
2860
3117
  "value": "\"iOS\""
2861
3118
  },
2862
3119
  {
2863
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3120
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2864
3121
  "kind": "StringLiteral",
2865
- "offset": 6394,
3122
+ "offset": 7934,
2866
3123
  "length": 7,
2867
3124
  "value": "\"en_US\""
2868
3125
  },
2869
3126
  {
2870
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3127
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2871
3128
  "kind": "StringLiteral",
2872
- "offset": 6873,
3129
+ "offset": 8413,
2873
3130
  "length": 3,
2874
3131
  "value": "\".\""
2875
3132
  },
2876
3133
  {
2877
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3134
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2878
3135
  "kind": "StringLiteral",
2879
- "offset": 6923,
3136
+ "offset": 8463,
2880
3137
  "length": 2,
2881
3138
  "value": "\"\""
2882
3139
  },
2883
3140
  {
2884
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3141
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2885
3142
  "kind": "StringLiteral",
2886
- "offset": 7146,
3143
+ "offset": 8686,
2887
3144
  "length": 12,
2888
3145
  "value": "\"instanceId\""
2889
3146
  },
2890
3147
  {
2891
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3148
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2892
3149
  "kind": "StringLiteral",
2893
- "offset": 7182,
3150
+ "offset": 8722,
2894
3151
  "length": 9,
2895
3152
  "value": "\"eventId\""
2896
3153
  },
2897
3154
  {
2898
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3155
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2899
3156
  "kind": "StringLiteral",
2900
- "offset": 7218,
3157
+ "offset": 8758,
2901
3158
  "length": 12,
2902
3159
  "value": "\"deviceInfo\""
2903
3160
  },
2904
3161
  {
2905
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3162
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2906
3163
  "kind": "StringLiteral",
2907
- "offset": 7258,
3164
+ "offset": 8798,
2908
3165
  "length": 13,
2909
3166
  "value": "\"deviceState\""
2910
3167
  },
2911
3168
  {
2912
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3169
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2913
3170
  "kind": "StringLiteral",
2914
- "offset": 7295,
3171
+ "offset": 8835,
2915
3172
  "length": 9,
2916
3173
  "value": "\"appInfo\""
2917
3174
  },
2918
3175
  {
2919
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3176
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2920
3177
  "kind": "StringLiteral",
2921
- "offset": 7329,
3178
+ "offset": 8869,
2922
3179
  "length": 10,
2923
3180
  "value": "\"platform\""
2924
3181
  },
2925
3182
  {
2926
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3183
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2927
3184
  "kind": "StringLiteral",
2928
- "offset": 7365,
3185
+ "offset": 8905,
2929
3186
  "length": 11,
2930
3187
  "value": "\"occurence\""
2931
3188
  },
2932
3189
  {
2933
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3190
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2934
3191
  "kind": "StringLiteral",
2935
- "offset": 7407,
3192
+ "offset": 8947,
2936
3193
  "length": 16,
2937
3194
  "value": "\"incidentReport\""
2938
3195
  },
2939
3196
  {
2940
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3197
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2941
3198
  "kind": "StringLiteral",
2942
- "offset": 7446,
3199
+ "offset": 8986,
2943
3200
  "length": 8,
2944
3201
  "value": "\"checks\""
2945
3202
  },
2946
3203
  {
2947
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3204
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2948
3205
  "kind": "StringLiteral",
2949
- "offset": 7481,
3206
+ "offset": 9021,
2950
3207
  "length": 12,
2951
3208
  "value": "\"externalId\""
2952
3209
  },
2953
3210
  {
2954
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3211
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2955
3212
  "kind": "StringLiteral",
2956
- "offset": 7519,
3213
+ "offset": 9059,
2957
3214
  "length": 11,
2958
3215
  "value": "\"sessionId\""
2959
3216
  },
2960
3217
  {
2961
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3218
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2962
3219
  "kind": "StringLiteral",
2963
- "offset": 7555,
3220
+ "offset": 9095,
2964
3221
  "length": 10,
2965
3222
  "value": "\"deviceId\""
2966
3223
  },
2967
3224
  {
2968
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3225
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2969
3226
  "kind": "StringLiteral",
2970
- "offset": 7592,
3227
+ "offset": 9132,
2971
3228
  "length": 12,
2972
3229
  "value": "\"sdkVersion\""
2973
3230
  },
2974
3231
  {
2975
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3232
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2976
3233
  "kind": "StringLiteral",
2977
- "offset": 7632,
3234
+ "offset": 9172,
2978
3235
  "length": 13,
2979
3236
  "value": "\"sdkPlatform\""
2980
3237
  },
2981
3238
  {
2982
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
3239
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Report.swift",
2983
3240
  "kind": "StringLiteral",
2984
- "offset": 7675,
3241
+ "offset": 9215,
2985
3242
  "length": 15,
2986
3243
  "value": "\"sdkIdentifier\""
2987
3244
  },
2988
3245
  {
2989
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3246
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
2990
3247
  "kind": "StringLiteral",
2991
3248
  "offset": 413,
2992
3249
  "length": 5,
2993
3250
  "value": "\"iOS\""
2994
3251
  },
2995
3252
  {
2996
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3253
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
2997
3254
  "kind": "StringLiteral",
2998
3255
  "offset": 927,
2999
3256
  "length": 7,
3000
3257
  "value": "\"en_US\""
3001
3258
  },
3002
3259
  {
3003
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3260
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3004
3261
  "kind": "StringLiteral",
3005
3262
  "offset": 1182,
3006
3263
  "length": 12,
3007
3264
  "value": "\"instanceId\""
3008
3265
  },
3009
3266
  {
3010
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3267
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3011
3268
  "kind": "StringLiteral",
3012
3269
  "offset": 1218,
3013
3270
  "length": 9,
3014
3271
  "value": "\"eventId\""
3015
3272
  },
3016
3273
  {
3017
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3274
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3018
3275
  "kind": "StringLiteral",
3019
3276
  "offset": 1254,
3020
3277
  "length": 12,
3021
3278
  "value": "\"sdkVersion\""
3022
3279
  },
3023
3280
  {
3024
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3281
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3025
3282
  "kind": "StringLiteral",
3026
3283
  "offset": 1291,
3027
3284
  "length": 10,
3028
3285
  "value": "\"platform\""
3029
3286
  },
3030
3287
  {
3031
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3288
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3032
3289
  "kind": "StringLiteral",
3033
3290
  "offset": 1329,
3034
3291
  "length": 13,
3035
3292
  "value": "\"sdkPlatform\""
3036
3293
  },
3037
3294
  {
3038
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3295
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3039
3296
  "kind": "StringLiteral",
3040
3297
  "offset": 1369,
3041
3298
  "length": 12,
3042
3299
  "value": "\"deviceInfo\""
3043
3300
  },
3044
3301
  {
3045
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3302
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3046
3303
  "kind": "StringLiteral",
3047
3304
  "offset": 1409,
3048
3305
  "length": 13,
3049
3306
  "value": "\"deviceState\""
3050
3307
  },
3051
3308
  {
3052
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3309
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3053
3310
  "kind": "StringLiteral",
3054
3311
  "offset": 1448,
3055
3312
  "length": 11,
3056
3313
  "value": "\"occurence\""
3057
3314
  },
3058
3315
  {
3059
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3316
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3060
3317
  "kind": "StringLiteral",
3061
3318
  "offset": 1482,
3062
3319
  "length": 8,
3063
3320
  "value": "\"checks\""
3064
3321
  },
3065
3322
  {
3066
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3323
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3067
3324
  "kind": "StringLiteral",
3068
3325
  "offset": 1515,
3069
3326
  "length": 10,
3070
3327
  "value": "\"deviceId\""
3071
3328
  },
3072
3329
  {
3073
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3330
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3074
3331
  "kind": "StringLiteral",
3075
3332
  "offset": 1552,
3076
3333
  "length": 12,
3077
3334
  "value": "\"externalId\""
3078
3335
  },
3079
3336
  {
3080
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3337
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Cryptogram\/ThreatFlags.swift",
3081
3338
  "kind": "StringLiteral",
3082
3339
  "offset": 1590,
3083
3340
  "length": 11,
3084
3341
  "value": "\"licensing\""
3085
3342
  },
3086
3343
  {
3087
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
3344
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/ScreenCapture\/ScreenCaptureReportRateLimiter.swift",
3088
3345
  "kind": "IntegerLiteral",
3089
3346
  "offset": 253,
3090
3347
  "length": 2,
3091
3348
  "value": "10"
3092
3349
  },
3093
3350
  {
3094
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
3351
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
3095
3352
  "kind": "StringLiteral",
3096
3353
  "offset": 539,
3097
3354
  "length": 8,
3098
3355
  "value": "\"status\""
3099
3356
  },
3100
3357
  {
3101
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
3358
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Report\/Check.swift",
3102
3359
  "kind": "StringLiteral",
3103
3360
  "offset": 570,
3104
3361
  "length": 8,
3105
3362
  "value": "\"timeMs\""
3106
3363
  },
3107
3364
  {
3108
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
3365
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/FreeRASP\/TalsecRunner.swift",
3109
3366
  "kind": "BooleanLiteral",
3110
3367
  "offset": 477,
3111
3368
  "length": 4,
3112
3369
  "value": "true"
3113
3370
  },
3114
3371
  {
3115
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3372
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3116
3373
  "kind": "StringLiteral",
3117
3374
  "offset": 289,
3118
3375
  "length": 14,
3119
3376
  "value": "\"appIntegrity\""
3120
3377
  },
3121
3378
  {
3122
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3379
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3123
3380
  "kind": "StringLiteral",
3124
3381
  "offset": 382,
3125
3382
  "length": 18,
3126
3383
  "value": "\"privilegedAccess\""
3127
3384
  },
3128
3385
  {
3129
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3386
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3130
3387
  "kind": "StringLiteral",
3131
3388
  "offset": 456,
3132
3389
  "length": 7,
3133
3390
  "value": "\"debug\""
3134
3391
  },
3135
3392
  {
3136
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3393
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3137
3394
  "kind": "StringLiteral",
3138
3395
  "offset": 562,
3139
3396
  "length": 7,
3140
3397
  "value": "\"hooks\""
3141
3398
  },
3142
3399
  {
3143
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3400
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/SecurityThreat.swift",
3144
3401
  "kind": "StringLiteral",
3145
3402
  "offset": 909,
3146
3403
  "length": 15,
3147
3404
  "value": "\"deviceBinding\""
3148
3405
  },
3149
3406
  {
3150
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3407
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3151
3408
  "kind": "Dictionary",
3152
3409
  "offset": 605,
3153
3410
  "length": 3,
3154
3411
  "value": "[]"
3155
3412
  },
3156
3413
  {
3157
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3414
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3158
3415
  "kind": "Dictionary",
3159
3416
  "offset": 682,
3160
3417
  "length": 3,
3161
3418
  "value": "[]"
3162
3419
  },
3163
3420
  {
3164
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3421
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3165
3422
  "kind": "BooleanLiteral",
3166
- "offset": 17205,
3423
+ "offset": 18763,
3167
3424
  "length": 4,
3168
3425
  "value": "true"
3169
3426
  },
3170
3427
  {
3171
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3428
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3172
3429
  "kind": "BooleanLiteral",
3173
- "offset": 18442,
3430
+ "offset": 20000,
3174
3431
  "length": 4,
3175
3432
  "value": "true"
3176
3433
  },
3177
3434
  {
3178
- "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner6\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3435
+ "filePath": "\/Users\/talsec\/Talsec_Development\/talsec-dev\/actions-runner2\/actions-runner17\/_work\/rasp-ios\/rasp-ios\/Talsec\/TalsecRuntime\/Classes\/Runtime\/TalsecRuntime.swift",
3179
3436
  "kind": "BooleanLiteral",
3180
- "offset": 19068,
3437
+ "offset": 20764,
3181
3438
  "length": 4,
3182
3439
  "value": "true"
3183
3440
  }