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.
@mimjs/investorapi
Advanced tools
Модуль для работы с API vk mini app инвестор
Для начала использования, вам нужно создать в своей папке исполняемый файл, пусть это будет index.js
Теперь его нужно открыть и импортировать библиотеку:
const InvestorApi = require('@mimjs/investorapi');
const client = new InvestorApi({
uid: айди страницы вк,
url: "https://prod-app7689931-9e82ad376a9f.pages-ac.vk-apps.com/index.html?vk_access_token_settings=&vk_app_id=7689931&vk_are_notifications_enabled=1&vk_is_app_user=1&vk_is_favorite=1&vk_language=ru&vk_platform=desktop_web&vk_ref=quick_search&vk_ts=***&vk_user_id=***&sign=***"
});
Пробует подключится к серверу по вашим данным
async function run() {
await client.connect();
}
run().catch(console.error);
Получить свои балансы
async function run() {
const result = await client.getMyBalance().catch((e) => console.log(e));
console.log(result);
}
run().catch(console.error);
Отправить USD/BTC/ETH любому пользователю/группе
async function run() {
const result = await client.sendPayment(toId, sum, recieverType, currencyType).catch((e) => console.log(e));
console.log(result);
}
run().catch(console.error);
Параметр | Тип | Описание | По умолчанию |
---|---|---|---|
toId | Number | Id пользователя/группы, которому нужно отправить коины | нет |
sum | Number | Сумма, которую нужно отправить пользователю | нет |
recieverType | String | Тип получателя ( user, community ) | user |
currencyType | String | Тип валюты для перевода ( USD, BTC, ETH ) | USD |
Получить историю переводов USD от пользователей на свой аккаунт
async function run() {
const result = await client.getMyHistory().catch((e) => console.log(e));
console.log(result);
}
run().catch(console.error);
Получить награду за просмотр рекламы, без просмотра рекламы
async function run() {
const result = await client.getAdReward().catch((e) => console.log(e));
console.log(result);
}
run().catch(console.error);
FAQs
api for vk mini app investor
We found that @mimjs/investorapi 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
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.