Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
inflow-export
Advanced tools
Export my spendings as CSV across all Nigerian Bank accounts, using inflow.finance
Thanks to inflow.finance, a dope utility for aggregating my bank account spendings, this tool can now give me those spending in CSV format.
Inflow saves the user's access token (JWT) in as a secure cookie, which can be obtained, and passed to this CLI tool via secure readline.
inflow-export
> Provide your Access Token: ****
> What date range would you like to filter by? (Last 30 days)
- Last 30 Days
- All
- Custom
> Exported to /home/mykeels/Documents/inflow-2021-09-12-13-16.csv
To install, run:
npm i -g inflow-export
To use, run:
inflow-export
and follow the prompts.
(function () {
function getCookie(name) {
function escape(s) {
return s.replace(/([.*+?\^$(){}|\[\]\/\\])/g, "\\$1");
}
var match = document.cookie.match(
RegExp("(?:^|;\\s*)" + escape(name) + "=([^;]*)")
);
return match ? match[1] : null;
}
console.log(getCookie("__ACCESS_TOKEN__").replace(/\%22/g, ""));
})();
console.log("Copy the above Token 👆🏻");
The author of this package is NOT liable for any misdemeanour on your bank accounts, or inflow finance accounts.
Enjoy!
FAQs
Export my spendings as CSV across all Nigerian Bank accounts, using inflow.finance
The npm package inflow-export receives a total of 2 weekly downloads. As such, inflow-export popularity was classified as not popular.
We found that inflow-export 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.