
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.
@mishguru/muppet
Advanced tools
Utils for remote controlling android phone
import { device } from '@mishguru/muppet'
const deviceId = await device.firstDeviceIdAvailable()
await device.enableRoot(deviceId)
await device.runCommand(deviceId, 'echo hello world')
const buffer = await device.runCommandAndAll(deviceId, 'ls')
const string = await device.runCommandAndReadAllAsString('deviceId, ls')
await device.pullFile(deviceId, '/etc/passwd', './local/passwd.txt')
await device.pushFile(deviceId, './local/cache.tgz', '/data/cache.tgz')
await device.reboot(deviceId, )
import { android } from '@mishguru/muppet'
await android.setSELinuxToEnforce(deviceId)
await android.writeId(deviceId, android.generateRandomId())
const androidId = await android.readId(deviceId)
await android.pressPowerButton(deviceId)
const isSleeping = await android.isSleeping(deviceId)
await android.toggleScreenAwake(deviceId, !isSleeping)
await android.whileAwake(deviceId, async () => {
// phone is guranteed to be awake
// and will be reset to it's existing state
// when this function finishes
})
const batteryLevel = await android.batteryLevel(deviceId)
const screenshotPath = await android.screenshot(deviceId)
import { automator } from '@mishguru/muppet'
const window = automator.dumpWindow(deviceId)
const node = window.findNodeById('android:id/button1')
const { x, y } = node.center()
await automator.tap(deviceId, x, y)
await automator.tapNode(deviceId, node)
await automator.longTouch(deviceId, x, y)
await automator.longTouchNode(deviceId, node)
await automator.type(deviceId, 'hello world')
await automator.pressKey(deviceId, 66)
await automator.pressEnter(deviceId)
await automator.pressBack(deviceId)
await automator.pressDelete(deviceId)
await automator.moveToEndOfInput(deviceId)
const textInput = window.findNodeById('android:id/textinput')
await automator.clearTextInput(deviceId, textInput)
// window
window.findNodeById()
window.mustFindNodeById()
window.findNodeByRegex()
window.mustFindNodeByRegex()
window.findNodeByText()
window.mustFindNodeByText()
window.toString
// node
node.id()
node.class()
node.text()
node.coords()
node.size()
node.center()
node.findChild()
node.toString()
import { wifiSettings } from '@mishguru/muppet'
await wifiSettings.start(deviceId)
await wifiSettings.quit(deviceId)
await wifiSettings.getProxy(deviceId)
await wifiSettings.setProxy(deviceId, { host: '192.168.1.100', port: 8080 })
await wifiSettings.removeProxy()
await wifiSettings.restartWifi()
import { logger } from '@mishguru/muppet'
logger.debug(message)
logger.verbose(message)
logger.info({ success: true })
logger.error(message)
import { poll } from '@mishguru/muppet'
// repeatedly loop a function
// until it either returns true
// or 2 seconds have passed
const timedOut = await poll(2000, async () => {
const result = await device.runCommandAndReadAllAsString(deviceId, 'cat /data/status')
return /ready/.test(result)
})
if (timedOut) {
// ...
}
FAQs
ADB utils
We found that @mishguru/muppet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
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.