Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/ahmagdy/csv-to-json-converter
A little script to convert CSV Files to JSON in easy and flexible way using GoLang.
The Reason for this tool is i was in charge to convert a couple of csv files to JSON and i didn't find simple thing give me exactly what i expect from such a tool, and i looked for golang examples but i found most of it using struct for single case, so i built this to be flexible enough for any file.
go run main.go -path=C:\\TheFile.csv
or go run main.go -path C:\\TheFile.csv
or after getting the executable file myfile.exe -path=C:\\TheFile.csv
If i have a csv file contains a people data people.csv:
Id,Name,Age
1,Ahmad,21
2,Ali,50
and we need to convert it to json file:
go run main.go -path=C:\Users\User\Desktop\data\src\people.csv
after writing this command you will get another file in the same directory called people.json with the data in the new format:
[
{
"Id": 1,
"Name": "Ahmad",
"Age": 21
},
{
"Id": 2,
"Name": "Ali",
"Age": 50
}
]
and that's it.
FAQs
Unknown package
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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.