Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@approov/nativescript-approov
Advanced tools
Approov support for NativeScript with Angular/Vue support and TLS pinning
This provides support for using Approov in NativeScript
mobile applications, including Angular and Vue. Support is provided for adding Approov protection to API requests made using the Http module
and also Angular Http
requests. Furthermore, requests using Axios
are also supported. If this is not your situation then check if there is a more relevant quickstart guide available.
This quickstart provides the basic steps for integrating Approov into your app. A more detailed step-by-step guide using a Shapes App Example is also available.
To follow this guide you should have received an onboarding email for a trial or paid Approov account.
Note that for Android the minimum supported version is 5.1 (SDK level 22). For iOS, only 64-bit devices are supported on iOS 12 or above.
Add the Approov plugin to your existing App with the following command:
ns plugin add @approov/nativescript-approov
In order to use Approov you should include the ApproovService
, which allows you to make certain calls to Approov from your application, as follows:
import { ApproovService } from '@approov/nativescript-approov';
You must initialize the ApproovService
as follows:
ApproovService.initialize("<enter-your-config-string-here>");
You should place this in your main app file so that it is executed immediately the app starts. The <enter-your-config-string-here>
is a custom string that configures your Approov account access. This will have been provided in your Approov onboarding email.
Once the initialization has been made, Approov protection can be automatically added to network requests. Note that you must ensure that no network requests are executed prior to the initialization call being made.
For an Angular app you should place the initialization call in the constructor
of the App itself as follows:
export class AppModule {
constructor() {
ApproovService.initialize("<enter-your-config-string-here>");
}
}
For a Vue app you should place the initialization call in the beforeCreate
of the components that can be initially shown in the app`:
export default Vue.extend({
beforeCreate() {
ApproovService.initialize("<enter-your-config-string-here>");
}
Once the initialization is called, it is possible for any network requests to have Approov tokens or secret substitutions made. Initially you won't have set which API domains to protect, so the requests will be unchanged. It will have called Approov though and made contact with the Approov cloud service. You will see ApproovService
logging indicating UNKNOWN_URL
(Android) or unknown URL
(iOS).
On Android, you can see logging using logcat
output from the device. You can see the specific Approov output using adb logcat | grep ApproovService
. On iOS, look at the console output from the device using the Console app from MacOS. This provides console output for a connected simulator or physical device. Select the device and search for ApproovService
to obtain specific logging related to Approov.
Your Approov onboarding email should contain a link allowing you to access Live Metrics Graphs. After you've run your app with Approov integration you should be able to see the results in the live metrics within a minute or so. At this stage you could even release your app to get details of your app population and the attributes of the devices they are running upon.
To actually protect your APIs there are some further steps. Approov provides two different options for protection:
API PROTECTION: You should use this if you control the backend API(s) being protected and are able to modify them to ensure that a valid Approov token is being passed by the app. An Approov Token is short lived crytographically signed JWT proving the authenticity of the call.
SECRETS PROTECTION: If you do not control the backend API(s) being protected, and are therefore unable to modify it to check Approov tokens, you can use this approach instead. It allows app secrets, and API keys, to be protected so that they no longer need to be included in the built code and are only made available to passing apps at runtime.
Note that it is possible to use both approaches side-by-side in the same app, in case your app uses a mixture of 1st and 3rd party APIs.
See REFERENCE for a complete list of all of the Approov related methods.
FAQs
Approov support for NativeScript with Angular/Vue support and TLS pinning
The npm package @approov/nativescript-approov receives a total of 3 weekly downloads. As such, @approov/nativescript-approov popularity was classified as not popular.
We found that @approov/nativescript-approov demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.