
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@kozmoai/backstage-plugin-github-pull-requests
Advanced tools


This plugin relies on the GitHub Authentication Provider for its access to GitHub.
Search filter works the same way it works in GitHub, but glint-backstage-pull-requests/default-filter annotation needs to be provided in component configuration. Adding a filter will result in applying that filter per default.
If this annotation is left out, no default filter will be applied when running the app.
cd packages/app
yarn add @kozmoai/backstage-plugin-github-pull-requests
// packages/app/src/components/catalog/EntityPage.tsx
import {
EntityGithubPullRequestsContent,
isGithubPullRequestsAvailable,
} from '@kozmoai/backstage-plugin-github-pull-requests';
...
const serviceEntityPage = (
<EntityLayout>
...
<EntityLayout.Route
path="/pull-requests"
title="Pull Requests"
// Uncomment the line below if you'd like to only show the tab on entities with the correct annotations already set
// if={isGithubPullRequestsAvailable}
>
<EntityGithubPullRequestsContent />
</EntityLayout.Route>
...
</EntityLayout>
yarn start and navigate to services tabs.
You must install plugin by following the steps above to add widget to your Overview
Add widget to your Overview tab:
// packages/app/src/components/catalog/EntityPage.tsx
import { EntityGithubPullRequestsOverviewCard, isGithubPullRequestsAvailable } from '@kozmoai/backstage-plugin-github-pull-requests';
...
const overviewContent = (
<Grid container spacing={3}>
...
<EntitySwitch>
<EntitySwitch.Case if={isGithubPullRequestsAvailable}>
<Grid item md={6}>
<EntityGithubPullRequestsOverviewCard />
</Grid>
</EntitySwitch.Case>
</EntitySwitch>
...
</Grid>
);

You must install plugin by following the steps above to add widget to your Group Entity Page
Add widget to your group page:
import {
EntityGithubGroupPullRequestsCard,
isGithubTeamPullRequestsAvailable,
} from '@kozmoai/backstage-plugin-github-pull-requests';
...
const groupPage = (
<Grid container spacing={3}>
...
<EntitySwitch>
<EntitySwitch.Case if={isGithubTeamPullRequestsAvailable}>
<Grid item md={5} xs={12}>
<EntityGithubGroupPullRequestsCard/>
</Grid>
</EntitySwitch.Case>
</EntitySwitch>
...
</Grid>
);

If you didn't set up the HomePage plugin you can see the official documentation about it here. You'll need to have it setup to be able to include this plugin.
A reasonable default will be used as a search term for both cards but you may have reasonable to provide your own query. This can be done through the query prop available for both cards.
TIP: You might want to filter by a specific Github org if you have users who share a single Github account for work and personal usage.
You can build up a query using Github Advanced Search and once you hit "Search", the query in the search bar is what you'll want to provide as your query prop.
//packages/app/src/components/home/HomePage.tsx
import {
HomePageRequestedReviewsCard,
HomePageYourOpenPullRequestsCard,
} from '@kozmoai/backstage-plugin-github-pull-requests';
export const HomePage = () => {
return (
...
<Grid item md={6} xs={12}>
<HomePageRequestedReviewsCard />
</Grid>
<Grid item md={6} xs={12}>
<HomePageYourOpenPullRequestsCard query="org:kozmoai is:pr language:CSS" />
</Grid>
...
);
};
FAQs

We found that @kozmoai/backstage-plugin-github-pull-requests demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.