
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@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
The npm package @mishguru/muppet receives a total of 0 weekly downloads. As such, @mishguru/muppet popularity was classified as not popular.
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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.