Revisión de seguridad de un paquete de ficheros (Python, web, JSON) sin ejecutar
Revisión de seguridad de un paquete de ficheros (Python, web, JSON) sin ejecutar nada: importaciones y llamadas prohibidas, escritura, red y credenciales. Un tipo de fichero que el gate no sabe leer se declara como no verificable, no como aprobado.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
641 msmedian answer time
$0.05listed price per call
$0.05price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agente.revenuerecoveryai.app/v1/code/review
| Category | Code and developer |
|---|---|
| Provider host | agente.revenuerecoveryai.app |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 641 ms |
Example input (from the provider)
{
"body": {
"ficheros": [
{
"nombre": "index.html",
"texto": "<!doctype html><html lang=\"es\"><body><main><h1>Demo</h1></main></body></html>"
},
{
"nombre": "app.js",
"texto": "var listo = true;"
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"ficheros": {
"description": "Los ficheros a revisar. M\u00e1ximo 10, 64 KB cada uno.",
"items": {
"properties": {
"nombre": {
"description": "Ruta relativa del fichero, ej. 'index.html'.",
"maxLength": 200,
"minLength": 1,
"title": "Nombre",
"type": "string"
},
"texto": {
"description": "Contenido del fichero, como texto.",
"maxLength": 65536,
"title": "Texto",
"type": "string"
}
},
"required": [
"nombre",
"texto"
],
"title": "FicheroEntrada",
"type": "object"
},
"maxItems": 10,
"minItems": 1,
"title": "Ficheros",
"type": "array"
}
},
"required": [
"ficheros"
],
"title": "PeticionVerificacion",
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"ficheros_revisados": {
"items": {
"type": "string"
},
"title": "Ficheros Revisados",
"type": "array"
},
"hallazgos": {
"items": {
"properties": {
"detalle": {
"title": "Detalle",
"type": "string"
},
"fichero": {
"title": "Fichero",
"type": "string"
},
"linea": {
"minimum": 0,
"title": "Linea",
"type": "integer"
},
"regla": {
"description": "Identificador estable de la regla.",
"title": "Regla",
"type": "string"
}
},
"required": [
"regla",
"fichero",
"linea",
"detalle"
],
"title": "Hallazgo",
"type": "object"
},
"title": "Hallazgos",
"type": "array"
},
"no_verificable": {
"description": "Lo que no se pudo comprobar, con su motivo. Nunca vac\u00edo por comodidad: si algo no se revis\u00f3, aparece aqu\u00ed.",
"items": {
"properties": {
"fichero": {
"title": "Fichero",
"type": "string"
},
"motivo": {
"description": "Por qu\u00e9 no se pudo comprobar. No es un aprobado.",
"title": "Motivo",
"type": "string"
}
},
"required": [
"fichero",
"motivo"
],
"title": "NoVerificable",
"type": "object"
},
"title": "No Verificable",
"type": "array"
},
"reglas_aplicadas": {
"title": "Reglas Aplicadas",
"type": "integer"
},
"uso": {
"additionalProperties": true,
"title": "Uso",
"type": "object"
},
"veredicto": {
"description": "PASS s\u00f3lo si no hay hallazgos NI ficheros sin verificar.",
"enum": [
"PASS",
"FAIL"
],
"title": "Veredicto",
"type": "string"
}
},
"required": [
"veredicto",
"hallazgos",
"ficheros_revisados",
"no_verificable",
"reglas_aplicadas",
"uso"
],
"title": "RespuestaVerificacion",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}