
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.
ru-cbr-newbik
Advanced tools
This software is developed solely for integration with Russian government IT systems, so the Cyrillic script is widely used in its documentation.
Во многих информационных системах, разработанных для рынка РФ, есть такой объект данных, как платёжные реквизиты, а именно:
Необходимый для корректного ввода актуальный реестр БИК доступен на официальном сайте ЦБ РФ по ссылке http://www.cbr.ru/s/newbik.
По этой ссылке предлагается на скачивание ZIP-архив, содержащий единственный XML-документ, корневой элемент которого имеет тип ED807 из пространства имён urn:cbr-ru:ed:v2.0.
Схема XML является составной частью Унифицированных форматов электронных банковских сообщений Банка России (УФЭБС), документация на которые доступна по адресу http://www.cbr.ru/development/Formats/.
Библиотека ru-cbr-newbik позволяет node.js-приложению получить содержимое такого ZIP-архива в виде потока объектов, набор и структура которых оптимизированы для использования в качестве справочника для ввода платёжных реквизитов.
npm install ru-cbr-newbik
const {RuCBRNewBikReader} = require ('ru-cbr-newbik')
const reader = await RuCBRNewBikReader.fromFile ('20220119ED01OSBR.zip', {
// lowercase: true, // приводить имена к нижнему регистру
// filterParticipantInfo: e => ["20", "30"].includes (e.pttype), // кредитная организация или филиал
// filterAccounts: e => e.regulationaccounttype === 'CRSA', // корреспондентский счёт
})
for await (const {bic, namep, adr, account} of reader) {
// bic -- БИК
// account -- кор. счёт
// namep -- наименование (филиала) банка
// adr -- адрес
// и теперь можно что-то делать с этими реквизитами...
}
// или, если реализована поточная обработка:
reader.pipe (someObjectWriterStream)
FAQs
www.cbr.ru/s/newbik parser
We found that ru-cbr-newbik 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.