SShortSingh.
Back to feed

Mantax Otax Android Malware Steals Data, Encrypts Files, and Disrupts Devices

0
·1 views

Zimperium zLabs has analyzed a malicious Android APK called Mantax Otax, which combines ransomware, spyware, and device harassment capabilities in a single package. The malware is distributed via external file-sharing links and tricks users into granting Accessibility, device administrator, and other sensitive permissions after manual installation. Once active, it exfiltrates SMS messages, OTPs, PINs, location data, screenshots, and photos, while encrypting user files using victim-specific AES keys and demanding ransom through a built-in chat interface. File encryption is more extensive on Android 9 and earlier, though data theft remains a serious risk on Android 10 and later. Based on targeted file types and language indicators, researchers assess the campaign is primarily aimed at users in Indonesia.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingHacker News ·

Zep AI Seeks Head of Forward Deployed Engineering

Zep AI, a startup that participated in Y Combinator's Winter 2024 batch, is currently hiring for a Head of Forward Deployed Engineering role. The position was listed on the company's official careers page at getzep.com. Forward deployed engineering roles typically involve working closely with customers to implement and customize software solutions. The job posting was shared on Hacker News, though it received no points or comments at the time of reporting.

0
ProgrammingDEV Community ·

How PHP Password Reset Flows Become Account Takeover Vulnerabilities

A detailed security analysis highlights how PHP and Laravel developers often combine individually sound concepts incorrectly when building password reset features, resulting in serious account takeover vulnerabilities. Common mistakes include using predictable token sources like md5(time()), uniqid(), or mt_rand() instead of the cryptographically secure random_bytes() function. Even when tokens are generated securely, storing them in plaintext exposes users to risk if the database is ever compromised through SQL injection or misconfigured backups. The article recommends hashing tokens with SHA-256 before storage, mirroring best practices already applied to passwords. It also covers additional failure points such as missing rate limiting, unsafe string comparisons, and inadequate session invalidation after a password change.

0
ProgrammingDEV Community ·

Claude API Offers Three Tool-Calling Methods With Distinct Trade-offs in Cost and Complexity

When integrating tools with Anthropic's Claude API in 2026, developers can choose from three approaches: traditional JSON tool calling, a Tool Runner helper, or programmatic tool calling. The traditional method uses a manual request-response loop where each tool invocation requires a full round trip with the model, which can become costly and token-heavy at scale — tool definitions alone can exceed 134,000 tokens in multi-server setups. The Tool Runner, available across multiple official SDKs including Python and TypeScript, automates the agentic loop by handling schema generation, execution, and conversation state management. Programmatic tool calling offers a third path, aimed at reducing inference passes and context bloat by allowing more direct execution control. Each method involves distinct trade-offs between developer control, boilerplate complexity, token consumption, and overall performance.

0
ProgrammingDEV Community ·

Developer builds CodeRift to automate GitLab code reviews using AI and AST analysis

A developer has created CodeRift, an automated code review platform designed to address the inefficiency and superficiality of manual code reviews in software teams. The tool integrates with GitLab and analyzes every merge request through a seven-step pipeline that includes diff parsing, AST analysis via tree-sitter, a TOML rule engine, and parallel AI agents. Three specialized AI agents run simultaneously on each code chunk, focusing respectively on security vulnerabilities, logic bugs, and performance issues. The platform is built on a Rust-based API and worker architecture, orchestrated by a custom workflow engine called IronFlow, which handles retries, structured logging, and status updates. CodeRift supports multiple languages including Rust, TypeScript, Python, Go, and SQL, and allows per-project rule customization through a configuration file.