
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.
Auttar WebSocket JS Class. An easy implementation of Auttar WebSocket Service.
Uma forma mais fácil de implementar o websocket da Auttar em seu sistema.
Acesse https://auttar-js.netlify.com para acessar o exemplo online da implementação
npm install auttarjs --save
# For Yarn, use the command below.
yarn add auttarjs
<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/auttarjs@latest/dist/index.umd.js"></script>
<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/auttarjs@latest/dist/index.umd.js"></script>
<script>
console.log(Auttar);
</script>
import AuttarClass from 'auttarjs';
// Inicializando Classe
const Auttar = new AuttarClass({});
Propiedade | Tipo | Default |
---|---|---|
host | string | ws://localhost:2500 |
debug | boolean | false |
orderId | string | '' |
amount | float | 0 |
Auttar.credit(installments = 1, withInterest = false)
Auttar.debit(isVoucher = false)
Auttar.cancel(prop = {})
Propiedade | Tipo | Default |
---|---|---|
operacao | number | Última operação realizada |
dataTransacao | string | Data da última operação realizada |
amount | float | Valor da última operação realizada |
nsuCTF | string | nsuCTF da última operação realizada |
import AuttarClass from 'auttarjs';
// Inicializando Classe
const Auttar = new AuttarClass({
orderId: '123456ABCDEF',
amount: 100.90
});
//Realizando pagamento com cartão de crédito.
Auttar.credit();
//Realizando pagamento com cartão de crédito parcelado
Auttar.credit(3);
//Realizando pagamento com cartão de crédito parcelado juros pela administradora
Auttar.credit(3, true);
//Realizando pagamento com cartão de débito.
Auttar.debit();
//Realizando desfazimento total de operação
Auttar.requestCancellation();
//Realizando cancelamento da última compra
Auttar.cancel();
//Realizando confirmação da operação
Auttar.confirm();
FAQs
Auttar WebSocket JS Class. An easy implementation of Auttar WebSocket Service.
The npm package auttarjs receives a total of 6 weekly downloads. As such, auttarjs popularity was classified as not popular.
We found that auttarjs 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
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.