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.
@kintone/data-loader
Advanced tools
A kintone record importer and exporter.
THIS IS EXPERIMENTAL, AND THESE FEATURES ARE NOT SUPPORTED YET.
We plan to support them in the future release.
$ npm install -g @kintone/data-loader
You can use also npx instead of installing @kintone/data-loader as global.
import
command allows you to import record data into a specified kintone app.
$ kintone-data-loader \
import \
--base-url https://${yourDomain} \
--username ${yourLoginName} \
--password ${yourPassword} \
--app ${kintoneAppId} \
--file-path ${filepath}
Some options use enviroment variables starting KINTONE_
as default values.
Options:
--version Show version number [boolean]
--help Show help [boolean]
--base-url Kintone Base Url [default: KINTONE_BASE_URL]
-u, --username Kintone Username [default: KINTONE_USERNAME]
-p, --password Kintone Password [default: KINTONE_PASSWORD]
--api-token App's API token [default: KINTONE_API_TOKEN]
--basic-auth-username Kintone Basic Auth Username
[default: KINTONE_BASIC_AUTH_USERNAME]
--basic-auth-password Kintone Basic Auth Password
[default: KINTONE_BASIC_AUTH_PASSWORD]
--app The ID of the app
--guest-space-id The ID of guest space
[default: KINTONE_GUEST_SPACE_ID]
--file-path The path to source file. ".json" or ".csv"
--pfx-file-path The path to client certificate file
--pfx-file-password The password of client certificate file
export
command allows you to export record data from a specified kintone app.
$ kintone-data-loader \
export \
--base-url https://${yourDomain} \
--username ${yourLoginName} \
--password ${yourPassword} \
--app ${kintoneAppId} \
> ${filepath}
Some options use enviroment variables starting KINTONE_
as default values.
Options:
--version Show version number [boolean]
--help Show help [boolean]
--base-url Kintone Base Url [default: KINTONE_BASE_URL]
-u, --username Kintone Username [default: KINTONE_USERNAME]
-p, --password Kintone Password [default: KINTONE_PASSWORD]
--api-token App's API token [default: KINTONE_API_TOKEN]
--basic-auth-username Kintone Basic Auth Username
[default: KINTONE_BASIC_AUTH_USERNAME]
--basic-auth-password Kintone Basic Auth Password
[default: KINTONE_BASIC_AUTH_PASSWORD]
--app The ID of the app
--guest-space-id The ID of guest space
[default: KINTONE_GUEST_SPACE_ID]
--attachment-dir Attachment file directory [string]
--format Output format. "json" or "csv" [default: "json"]
-q, --query The query string
--pfx-file-path The path to client certificate file
--pfx-file-password The password of client certificate file
data-loader supports JSON and CSV for both import/export commands.
When import, it determines the format automatically by the extension of the file (specified by --file-path
option).
When export, you can specify the format by specifying --format
option.
The detailed formats of JSON / CSV files are as follows:
The format of JSON file is the same as Get/Add/Update records REST API.
[
{
"FieldCode1": {
"type": "SINGLE_LINE_TEXT",
"value": "foo"
},
"Created_by": {
"type": "CREATOR",
"value": {
"code": "Administrator",
"name": "Administrator"
}
},
...
},
{
...
},
...
]
The first row (header row) lists the field codes of each field.
Each subsequent row corresponds to a record. Each value represents the value of the field.
"Record_number","FieldCode1","FieldCode2"
"1","foo","bar"
"2","baz","qux"
Here are considerations for some field types:
If the value contains line break, enclose the value in double quotes.
"TextAreaField"
"multi
line
text"
Specify multiple values divided by line break.
"CheckboxField"
"value1
value2"
Specify the user's login name (equivalent to value.code
in REST API).
"Created_by"
"John"
FAQs
A data loader
The npm package @kintone/data-loader receives a total of 1 weekly downloads. As such, @kintone/data-loader popularity was classified as not popular.
We found that @kintone/data-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.