
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@croz/plugin-ibm-apic-backend
Advanced tools
Welcome to the apic-public backend plugin!
This plugin was created through the Backstage CLI
Your plugin has been added to the example app in this repository, meaning you'll be able to access it by running yarn start
in the root directory, and then navigating to /apic-public.
You can also serve the plugin in isolation by running yarn start
in the plugin directory.
This method of serving the plugin provides quicker iteration speed and a faster startup and hot reloads.
It is only meant for local development, and the setup for it can be found inside the /dev directory.
For standalone run, the standalone router is exposed (located at src\service\standaloneRouter.ts
) with a method
for synchronization that you can access by navigating to /apic-public-standalone/syncApic
.
Exposed method triggers sync with IBM API Connect to fetch all entities related to the defined provider. The configuration for the provider is provided as environment variables located inside .env file.
Install the plugin into backstage:
cd packages/backend
yarn add @croz/plugin-ibm-apic-backend
yarn install
Add proxy config to the app-config.yaml file:
catalog:
providers:
ibmApic:
default:
baseUrl: ${IBM_APIC_API_URL}
# provider/your-realm
realm: ${IBM_APIC_REALM}
clientId: ${IBM_APIC_CLIENT_ID}
clientSecret: ${IBM_APIC_CLIENT_SECRET}
username: ${IBM_APIC_SERVICE_ACCOUNT_USERNAME}
password: ${IBM_APIC_SERVICE_ACCOUNT_PASSWORD}
Register plugin inside the catalog. The catalog is located at packages/backend/src/plugins/catalog.ts
...
import {APICEntityProcessor, APICEntityProvider} from "@croz/plugin-ibm-apic-backend";
...
...
const builder = CatalogBuilder.create(env);
builder.addProcessor(new ScaffolderEntitiesProcessor());
const cacheService = env.cache.getClient();
const apicEntityProviders = APICEntityProvider.fromConfig(env.config, {
id: 'default',
logger: env.logger,
cache: cacheService,
database: env.database,
schedule: env.scheduler.createScheduledTaskRunner({
frequency: {minutes: 30},
timeout: {minutes: 1},
initialDelay: {seconds: 15}
}),
});
builder.addEntityProvider(
apicEntityProviders,
);
const entityProcessor = new APICEntityProcessor(env.config, env.logger, cacheService)
builder.addProcessor(entityProcessor)
...
Catalog is refreshed every 30 minutes.
FAQs
Welcome to the apic-public backend plugin!
The npm package @croz/plugin-ibm-apic-backend receives a total of 1 weekly downloads. As such, @croz/plugin-ibm-apic-backend popularity was classified as not popular.
We found that @croz/plugin-ibm-apic-backend demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.