Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
mobiletto-cli
Advanced tools
A command-line interface (CLI) for mobiletto storage.
You can install and run mobiletto-cli
via npm or directly from source.
# install globally with npm
npm i -g mobiletto-cli
# install globally with yarn
yarn global add mobiletto-cli
# Now the 'mo' command should be on your PATH
mo -h
mo --help
To run from source, you'll need nodejs v16+ and yarn
# Clone source and install dependencies
git clone https://github.com/cobbzilla/mobiletto-cli.git
cd mobiletto-cli
yarn install
# Use the 'mo' command from the git repo
./mo -h
./mo --help
All mobiletto storage is accessed through a connection.
Mobiletto currently supports connections to the local filesystem storage and Amazon S3 buckets.
Connections are specified by a JSON object that looks like this:
{
"name": "name-of-connection",
"type": "local-or-s3",
"opts": {
"readOnly": false, # optional, default false
"cacheSize": 100, # optional,
... other type-specific options ...
},
"encryption": { # optional, default is no encryption
"key": "enc-key", # required if encryption is enabled
"iv": "enc-IV", # optional, derived from key if omitted
"algo": "enc-algo" # optional, default is aes-256-cbc
}
}
For full details on all the options and their values and meanings, see the mobiletto docs.
To create a new connection, we need one of these JSON objects.
We can create one interactively, or supply one via a file or JSON literal:
# Create JSON via interactive prompts
mo connect
# Create via interactive prompts, but force name `my-conn` to be used
mo connect -c my-conn
mo connect --create my-conn # long-form option
# Create from JSON config
mo connect my-conn.json
# Create from JSON config, but force name `renamed` to be used
mo connect -c renamed my-conn.json
# Create from literal JSON object
mo connect '{
"name": "my-conn",
"type": "local",
"key": "/tmp/basedir"
}'
List available connections:
mo connect -l
mo connect --list
Show the full JSON config for a connection. WARNING this will print keys and secrets to stdout.
mo connect -d my-conn
mo connect --dump my-conn
# pretty-print JSON
mo connect --verbose --dump my-conn
mo connect -vd my-conn
Remove a single connection:
mo connect -r my-conn
mo connect --remove my-conn
Remove ALL connections:
mo connect -R
mo connect --remove-all
Once you have created some connections, use the ls
, cp
, rm
, meta
and mirror
operations
to work with them.
Every file path that you provide to a command must be prefixed with the name of the connection
it refers to. In the examples below, we assume two connections exist named conn1
and conn2
The output of a list command is a series of JSON objects, one per line, representing the files
found. These objects will have a name
and type
, and possibly other fields.
mo ls conn1/some/path
List files recursively:
mo ls -r conn1/some/path
mo ls --recursive conn1/some/path
List files verbosely (pretty-print JSON):
mo ls -v conn1/some/path
mo ls --verbose conn1/some/path
List files recursively and verbosely:
mo ls -vr conn1/some/path
mo ls --verbose --recursive conn1/some/path
View help for ls
command, describes all options:
mo ls -h
mo ls --help
Copy a single file from one mobiletto to another:
mo cp conn1/some/path/to/file conn2/some/dest/path/
Copy a single file from one mobiletto to another, renaming it at the destination:
mo cp conn1/some/path/to/file conn2/some/dest/path/file2
Recursively copy a directory:
mo cp -r conn1/some/directory conn2/some/dest/
View help for cp
command, describes all options:
mo cp -h
mo cp --help
Note: File copying is not very fast, because it currently requires an intermediary temp file.
Delete a single file:
mo rm conn1/some/file.txt
Delete a single file and don't complain about any errors:
mo rm -f conn1/some/file.txt
mo rm --force conn1/some/file.txt
Delete a directory:
mo rm -r conn1/some/directory
mo rm --recursive conn1/some/directory
Delete a directory and don't complain about any errors:
mo rm -rf conn1/some/directory
mo rm --recursive --force conn1/some/directory
Mobiletto is able to report file size and last modified time, in addition to name and type. To view metadata:
mo meta conn1/some/file.txt
Mirroring is more than a special case of cp
, it is a separate mobiletto command that wraps the
copy operation; it continues even when errors occur, and track a count of successes and errors.
To mirror everything from conn1 into conn2:
mo mirror conn1 conn2
To mirror a subdirectory:
mo mirror conn1/some/subdir conn2
To mirror a subdirectory into another subdirectory:
mo mirror conn1/some/subdir conn2/another/dir
FAQs
CLI for mobiletto
The npm package mobiletto-cli receives a total of 67 weekly downloads. As such, mobiletto-cli popularity was classified as not popular.
We found that mobiletto-cli 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.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.