Vibe

Find Vulnerabilities
Before Hackers Do.

Sapiens AI Audit Agents
Vault.sol
1// SPDX-License-Identifier: MIT
2pragma solidity ^0.8.19;
3
4contract Vault {
5    mapping(address => uint256) public balances;
6
7    function deposit() external payable {
8        balances[msg.sender] += msg.value;
9    }
10
11    function withdraw() external {
12        uint256 balance = balances[msg.sender];
13        require(balance > 0, "No balance");
14
15        // CEI Violation: call before state update
16        (bool success, ) = msg.sender.call{value: balance}("");
17        require(success, "Transfer failed");
18
19        balances[msg.sender] = 0;  // Too late
20    }
21
22    receive() external payable {}
23}
main
7
Reentrancy
Vault.solSolidityUTF-8
0+

Vulnerability Patterns

0 Hops

Analysis Depth

0+

LLM Models

0

AI Agents

Rutile Corp.
SapiensSapiens

Securing the Web3 ecosystem with AI-powered automated auditing. Detect vulnerabilities instantly and deploy with confidence.

© 2026 Rutile Corp. All rights reserved.

Representative: Haksung Lee

+82 010-5658-3557