Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
mutasi-scraper
Advanced tools
NodeJS Package for scraping settlement (mutasi) in iBank indonesia
Library untuk membantu anda mendapatkan informasi mutasi dari iBanking anda banyak fungsi yang akan didapatkan jika kalian bisa mengimplementasikannya kedalam kebutuhan yang ada , semisal auto accept payment , auto transfer , auto cek , dsb
npm install --save mutasi-scraper
atau
npm install https://github.com/fdciabdul/mutasi-Scraper
const {ScrapBCA} = require('./lib/bank/BCA.class.js');
npm run example
const {ScrapBCA} = require('./lib/bank/BCA.class.js');
const user = 'USER';
const pass = 'PASS';
const scraper = new ScrapBCA(user, pass);
scraper.getSettlement("1", "3", "24", "3").then((page) => {
// tanggalawal,bulanawal,tanggalakhir,bulanakhir
console.log(page);
}).catch((e) => {
console.log(e);
});
const scraper = new ScraperBank("user", "pass"); // username dan password akun ibanking
(async () => {
var result = await scraper.getBRI("norek");
console.log(result);
})();
untuk mandiri karna web ibank biasanya mati , kalian bisa pakai yang ini
https://github.com/fdciabdul/MIB-Mutasi-Scraper
const scraper = new ScraperBank("user", "pass"); // username dan password akun ibanking
(async () => {
var result = await scraper.getDanamon();
console.log(result);
})();
guys karna saya tidak punya akun ibanking dari beberapa bank yang error , jika kalian ingin bank lain ditambahkan atau di fix silahkan email saya :)
const scraper = new ScraperBank("user", "pass" , {
headless : false , // set false jika ingin memunculkan browser
FAQs
Scrap all settlement from indonesian banks
The npm package mutasi-scraper receives a total of 0 weekly downloads. As such, mutasi-scraper popularity was classified as not popular.
We found that mutasi-scraper demonstrated a healthy version release cadence and project activity because the last version was released less than 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.