
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ONS SPD
create schema onsspd;
CREATE TABLE onsspd.parishes ( parncp21cd varchar(15) NOT null primary key, parncp21nm text not null, createdAt timestamp not null DEFAULT now(), updatedAt timestamp null );
CREATE TABLE onsspd.counties ( cty21cd varchar(15) NOT null primary key, cty21nm text not null, createdAt timestamp not null DEFAULT now(), updatedAt timestamp null );
CREATE TABLE onsspd.grid_reference_positional_quality_indicator ( osgrdind integer NOT null primary key, description text not null, createdAt timestamp not null DEFAULT now(), updatedAt timestamp null );
create table onsspd.postcodes ( pcds varchar(8) NOT null primary key, parish varchar(15) NOT null, ctry varchar(15) NOT null, oseast1m integer, osnrth1m integer, osgrdind integer NOT null, longitude decimal, latitude decimal, createdAt timestamp not null, updatedAt timestamp null,
constraint fk_counties_postcodes
foreign key (ctry)
REFERENCES onsspd.counties (cty21cd),
constraint fk_grid_reference_positional_quality_indicator_postcodes
foreign key (osgrdind)
REFERENCES onsspd.grid_reference_positional_quality_indicator (osgrdind),
constraint fk_parishes_postcodes
foreign key (parish)
REFERENCES onsspd.parishes (parncp21cd)
);
FAQs
ons-spd
The npm package ons-spd receives a total of 0 weekly downloads. As such, ons-spd popularity was classified as not popular.
We found that ons-spd 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.