
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@roadiehq/backstage-plugin-aws-backend
Advanced tools
To use the backend, you will need to configure the following in the app-config.yaml file:
Region and External ID are optional.
integrations:
aws:
- accountId: '9999999999'
roleArn: arn:aws:iam::9999999999:role/ops
region: eu-west-1
externalId: 'blah'
Create a file in packages/backend/src/plugins/aws.ts
import { createRouter } from '@roadiehq/backstage-plugin-aws-backend';
import type { PluginEnvironment } from '../types';
export default async function createPlugin({
logger,
config,
}: PluginEnvironment) {
return await createRouter({ logger, config });
}
In packages/backend/src/index.ts
add the following:
import aws from './plugins/aws';
// ...
async function main() {
// ...
const awsEnv = useHotMemoize(module, () => createEnv('aws'));
const apiRouter = Router();
apiRouter.use('/aws', await aws(awsEnv));
// ...
}
At this point you can retrieve details of an aws resource as follows:
You can optionally pass a parameter region
.
$ curl http://localhost:7007/api/aws/9999999999/AWS::S3::Bucket/bucket1
{ "Arn":"arn:aws:s3:::bucket1", "BucketName":"bucket1", ... }
Roadie gives you a hassle-free, fully customisable SaaS Backstage. Find out more here: https://roadie.io.
FAQs
Unknown package
The npm package @roadiehq/backstage-plugin-aws-backend receives a total of 79 weekly downloads. As such, @roadiehq/backstage-plugin-aws-backend popularity was classified as not popular.
We found that @roadiehq/backstage-plugin-aws-backend demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.