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.
A simple REPL based command line tool for accessing the Wish Core.
This is bleeding egde software and WILL BREAK from time to time, you have been warned.
This package is dependent on the wish-core-api package, which currently is working with Linux x64/ia32, OSX x64, on nodejs v6.x only. To get it working you also need to run a Wish Core on the same host.
If you are running on Linux x64 or OSX x64 everything should work out of the box according to the instructions below. Windows is not supported yet.
Download and install node.js v6.x: https://nodejs.org/dist/latest-v6.x/. You may use Node Version Manager nvm
(https://github.com/creationix/nvm).
You will need to have an appropriate wish-core (the peer-to-peer identity based communication layer mist is based on). The source is available at: https://github.com/WishCore/wish-c99.
npm install -g wish-cli
wish-cli
If everything is working correctly you should be greeted with something like this:
Welcome to Wish CLI vX.Y.Z
Not everything works as expected! You have been warned.
Connected to Wish Core v0.8.0-beta-2
wish>
There is a primitive directory implementation for publishing, finding and befriending identities.
directory.find(search: string): [DirectoryEntry]
directory.publish(uid: Buffer(32))
direcotry.friendRequest(uid: Buffer(32), entry: DirectoryEntry)
Wish Cli reads the available API from the core it connects to using the methods
request. It is partially self documenting and can be enumerated using the help()
command.
All commands have the form some.command(arg1, arg2, argn, callback?: (err, data) => {})
, where callback
is optional. If no callback is given the answer will be stored in the global variable result
.
Example command sequence:
identity.create('John Doe')
uid = result.uid // store uid for later use
directory.publish(uid)
direcotry.find('My Friend') // will print result, if any
directory.friendRequest(result[7])
Create an identity with wish-cli
identity.create('John Andersson')
identity.list(): [Identity]
identity.remove(uid: Buffer(32)): boolean
Update identity alias
or meta data
identity.update(uid, { alias: 'John Doe' });
identity.update(uid, { telephone: '+358 80 123 1234', BCH: '1kdshfvnksdvjhnfsdkjfvnhsklf', dateOfBirth: '1982-05-05' });
Delete meta data. With an exception with alias
which cannot be deleted.
identity.update(uid, { dateOfBirth: null, telephone: null });
CORE=9090 # connect to core on localhost at port 9090, default is 9094
FAQs
A simple REPL based command line tool for accessing the Wish Core.
The npm package wish-cli receives a total of 0 weekly downloads. As such, wish-cli popularity was classified as not popular.
We found that wish-cli 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.
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.