
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@payhos/theme-plugin
Advanced tools
The plugin for creating, maintaining and publishing themes in the PayHos themes marketplace
PayHos Theme plugin package is built by EmbyBest Concept Nig. Ltd to assist other developers to easily build, maintain and published their own developed themes in the PayHos themes marketplace. It is tested with Node.js and can easily be adapted to other JavaScript-based environments easily.
Install package via npm by running the following command:
npm install @payhos/theme-plugin --save-dev
The theme plugin is associated with a node.js server which helps developer create, sync and update theme labels created during the course of theme development. To start the plugin server, run the following command:
node node_modules/@payhos/theme-plugin/dev/server
With the command above, a node.js server is started running on localhost, port 5001 and can be accessed via http://localhost:5001
. With this developer-facing interface, you can update and delete the contents of labels as desired.
import { ThemePluginClient } from '@payhos/theme-plugin';
const credentials = {
themeId: `THEME_ID`,
secret: `THEME_SECRET_KEY`
};
const client = new ThemePluginClient(credentials);
ThemePluginClient
to get the plugin proxy object on which any keyed label can be invoked.client.init().then(plugin => {
// plugin received here is used to read labels into your templates and user-facing texts/sentences.
console.log(plugin);
}).catch(e => {
console.error(e);
});
To read labels that can be translated later, use the plugin
variable received from the promise above as follows:
let welcomeText = plugin.welcome_text;
The variable welcomeText
created above invokes the creation of the welcome_text
label which whose real rext value can be updated in the node.js plugin server running on http://localhost:5001
as noted above.
FAQs
The plugin for creating, maintaining and publishing themes in the PayHos themes marketplace
The npm package @payhos/theme-plugin receives a total of 9 weekly downloads. As such, @payhos/theme-plugin popularity was classified as not popular.
We found that @payhos/theme-plugin 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.