├── .eslintignore ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yml │ ├── issue_watcher.yml │ └── publish-release.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── CHANGELOG.md ├── CapacitorFreerasp.podspec ├── LICENSE ├── README.md ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── proguard-rules.pro ├── settings.gradle └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── android │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── aheaditec │ │ │ └── freerasp │ │ │ ├── FreeraspPlugin.kt │ │ │ ├── ScreenProtector.kt │ │ │ ├── Threat.kt │ │ │ ├── ThreatHandler.kt │ │ │ ├── models │ │ │ └── CapSuspiciousAppInfo.kt │ │ │ └── utils │ │ │ ├── Extensions.kt │ │ │ └── Utils.kt │ └── res │ │ └── .gitkeep │ └── test │ └── java │ └── com │ └── getcapacitor │ └── ExampleUnitTest.java ├── dist ├── esm │ ├── definitions.d.ts │ ├── definitions.js │ ├── definitions.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── utils.d.ts │ ├── utils.js │ └── utils.js.map ├── plugin.cjs.js ├── plugin.cjs.js.map ├── plugin.js └── plugin.js.map ├── example ├── .eslintrc.js ├── .gitignore ├── android │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── capacitor.build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── io │ │ │ │ └── ionic │ │ │ │ └── starter │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-land-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── splash.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── file_paths.xml │ ├── build.gradle │ ├── capacitor.settings.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── variables.gradle ├── capacitor.config.ts ├── ionic.config.json ├── ios │ ├── .gitignore │ └── App │ │ ├── App.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── App.xcscheme │ │ ├── App.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Splash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splash-2732x2732-1.png │ │ │ │ ├── splash-2732x2732-2.png │ │ │ │ └── splash-2732x2732.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ └── Info.plist │ │ └── Podfile ├── package-lock.json ├── package.json ├── public │ ├── assets │ │ ├── icon │ │ │ ├── favicon.png │ │ │ └── icon.png │ │ └── shapes.svg │ ├── index.html │ └── manifest.json ├── src │ ├── App.tsx │ ├── assets │ │ └── talsec-logo.png │ ├── components │ │ ├── MalwareItem.css │ │ ├── MalwareItem.tsx │ │ ├── MalwareModal.css │ │ └── MalwareModal.tsx │ ├── index.tsx │ ├── pages │ │ ├── FreeRaspDemo.css │ │ └── FreeRaspDemo.tsx │ ├── react-app-env.d.ts │ ├── theme │ │ └── variables.css │ └── utils │ │ └── checks.ts └── tsconfig.json ├── ios ├── Plugin.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Plugin.xcscheme │ │ └── PluginTests.xcscheme ├── Plugin.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Plugin │ ├── FreeraspPlugin.h │ ├── FreeraspPlugin.m │ ├── FreeraspPlugin.swift │ ├── Info.plist │ └── TalsecRuntime.xcframework │ │ ├── Info.plist │ │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ │ ├── ios-arm64 │ │ └── TalsecRuntime.framework │ │ │ ├── Headers │ │ │ ├── CryptoBridgingHeader.h │ │ │ ├── CurlWrapper.h │ │ │ ├── TalsecRuntime-Swift.h │ │ │ ├── TalsecRuntime_iOS.h │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── header.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── options.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── urlapi.h │ │ │ └── websockets.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── TalsecRuntime.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── TalsecRuntime │ │ │ ├── cacert.pem │ │ │ └── module.modulemap │ │ └── ios-arm64_x86_64-simulator │ │ └── TalsecRuntime.framework │ │ ├── Headers │ │ ├── CryptoBridgingHeader.h │ │ ├── CurlWrapper.h │ │ ├── TalsecRuntime-Swift.h │ │ ├── TalsecRuntime_iOS.h │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── header.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── options.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ ├── urlapi.h │ │ └── websockets.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── TalsecRuntime.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ │ ├── PrivacyInfo.xcprivacy │ │ ├── TalsecRuntime │ │ ├── _CodeSignature │ │ └── CodeResources │ │ ├── cacert.pem │ │ └── module.modulemap ├── PluginTests │ ├── FreeraspTests.swift │ └── Info.plist └── Podfile ├── package.json ├── rollup.config.js ├── scripts ├── extract_changelog.js └── extract_version.js ├── src ├── definitions.ts ├── index.ts └── utils.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/issue_watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/.github/workflows/issue_watcher.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CapacitorFreerasp.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/CapacitorFreerasp.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/aheaditec/freerasp/FreeraspPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/java/com/aheaditec/freerasp/FreeraspPlugin.kt -------------------------------------------------------------------------------- /android/src/main/java/com/aheaditec/freerasp/ScreenProtector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/java/com/aheaditec/freerasp/ScreenProtector.kt -------------------------------------------------------------------------------- /android/src/main/java/com/aheaditec/freerasp/Threat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/java/com/aheaditec/freerasp/Threat.kt -------------------------------------------------------------------------------- /android/src/main/java/com/aheaditec/freerasp/ThreatHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/java/com/aheaditec/freerasp/ThreatHandler.kt -------------------------------------------------------------------------------- /android/src/main/java/com/aheaditec/freerasp/models/CapSuspiciousAppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/java/com/aheaditec/freerasp/models/CapSuspiciousAppInfo.kt -------------------------------------------------------------------------------- /android/src/main/java/com/aheaditec/freerasp/utils/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/java/com/aheaditec/freerasp/utils/Extensions.kt -------------------------------------------------------------------------------- /android/src/main/java/com/aheaditec/freerasp/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/main/java/com/aheaditec/freerasp/utils/Utils.kt -------------------------------------------------------------------------------- /android/src/main/res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/src/test/java/com/getcapacitor/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/android/src/test/java/com/getcapacitor/ExampleUnitTest.java -------------------------------------------------------------------------------- /dist/esm/definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/definitions.d.ts -------------------------------------------------------------------------------- /dist/esm/definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/definitions.js -------------------------------------------------------------------------------- /dist/esm/definitions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/definitions.js.map -------------------------------------------------------------------------------- /dist/esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/index.d.ts -------------------------------------------------------------------------------- /dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/index.js -------------------------------------------------------------------------------- /dist/esm/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/index.js.map -------------------------------------------------------------------------------- /dist/esm/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/utils.d.ts -------------------------------------------------------------------------------- /dist/esm/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/utils.js -------------------------------------------------------------------------------- /dist/esm/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/esm/utils.js.map -------------------------------------------------------------------------------- /dist/plugin.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/plugin.cjs.js -------------------------------------------------------------------------------- /dist/plugin.cjs.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/plugin.cjs.js.map -------------------------------------------------------------------------------- /dist/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/plugin.js -------------------------------------------------------------------------------- /dist/plugin.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/dist/plugin.js.map -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/.eslintrc.js -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/java/io/ionic/starter/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/android/variables.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/android/variables.gradle -------------------------------------------------------------------------------- /example/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/capacitor.config.ts -------------------------------------------------------------------------------- /example/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ionic.config.json -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /example/ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /example/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /example/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /example/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /example/ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/App/Info.plist -------------------------------------------------------------------------------- /example/ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/ios/App/Podfile -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/public/assets/icon/favicon.png -------------------------------------------------------------------------------- /example/public/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/public/assets/icon/icon.png -------------------------------------------------------------------------------- /example/public/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/public/assets/shapes.svg -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/assets/talsec-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/assets/talsec-logo.png -------------------------------------------------------------------------------- /example/src/components/MalwareItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/components/MalwareItem.css -------------------------------------------------------------------------------- /example/src/components/MalwareItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/components/MalwareItem.tsx -------------------------------------------------------------------------------- /example/src/components/MalwareModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/components/MalwareModal.css -------------------------------------------------------------------------------- /example/src/components/MalwareModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/components/MalwareModal.tsx -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/pages/FreeRaspDemo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/pages/FreeRaspDemo.css -------------------------------------------------------------------------------- /example/src/pages/FreeRaspDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/pages/FreeRaspDemo.tsx -------------------------------------------------------------------------------- /example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/src/theme/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/theme/variables.css -------------------------------------------------------------------------------- /example/src/utils/checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/src/utils/checks.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /ios/Plugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Plugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Plugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Plugin.xcodeproj/xcshareddata/xcschemes/Plugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin.xcodeproj/xcshareddata/xcschemes/Plugin.xcscheme -------------------------------------------------------------------------------- /ios/Plugin.xcodeproj/xcshareddata/xcschemes/PluginTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin.xcodeproj/xcshareddata/xcschemes/PluginTests.xcscheme -------------------------------------------------------------------------------- /ios/Plugin.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Plugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Plugin/FreeraspPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/FreeraspPlugin.h -------------------------------------------------------------------------------- /ios/Plugin/FreeraspPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/FreeraspPlugin.m -------------------------------------------------------------------------------- /ios/Plugin/FreeraspPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/FreeraspPlugin.swift -------------------------------------------------------------------------------- /ios/Plugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/Info.plist -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/Info.plist -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CryptoBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CryptoBridgingHeader.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curlver.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/easy.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/header.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/mprintf.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/stdcheaders.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/system.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/websockets.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/cacert.pem -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/module.modulemap -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CryptoBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CryptoBridgingHeader.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curlver.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/easy.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/header.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/mprintf.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/stdcheaders.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/system.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/websockets.h -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/cacert.pem -------------------------------------------------------------------------------- /ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/module.modulemap -------------------------------------------------------------------------------- /ios/PluginTests/FreeraspTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/PluginTests/FreeraspTests.swift -------------------------------------------------------------------------------- /ios/PluginTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/PluginTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/ios/Podfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/extract_changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/scripts/extract_changelog.js -------------------------------------------------------------------------------- /scripts/extract_version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/scripts/extract_version.js -------------------------------------------------------------------------------- /src/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/src/definitions.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/Free-RASP-Capacitor/HEAD/tsconfig.json --------------------------------------------------------------------------------