cfdf515228
- .claude/CLAUDE.md - .claude/commands/subagentes.md - .claude/rules/INDEX.md - .mcp.json - bash/functions/cybersecurity/analyze_dns.md - bash/functions/cybersecurity/audit_http_headers.md - bash/functions/cybersecurity/audit_ssh_config.md - bash/functions/cybersecurity/check_firewall.md - bash/functions/cybersecurity/detect_suspicious_users.md - bash/functions/cybersecurity/encrypt_file.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
46 lines
965 B
Markdown
46 lines
965 B
Markdown
---
|
|
name: is_hex
|
|
kind: function
|
|
lang: py
|
|
domain: cybersecurity
|
|
version: "1.0.0"
|
|
purity: pure
|
|
signature: "def is_hex(s: str) -> bool"
|
|
description: "Verifica si un string es hexadecimal valido. Acepta con o sin prefijo 0x. Requiere minimo 2 caracteres."
|
|
tags: [hex, validation, encoding, python, pendiente-usar]
|
|
uses_functions: []
|
|
uses_types: []
|
|
returns: []
|
|
returns_optional: false
|
|
error_type: ""
|
|
imports: [re]
|
|
params:
|
|
- name: s
|
|
desc: "string a validar como hexadecimal"
|
|
output: "booleano indicando si el string es hexadecimal valido con o sin prefijo 0x (minimo 2 caracteres)"
|
|
tested: false
|
|
tests: []
|
|
test_file_path: ""
|
|
file_path: "python/functions/cybersecurity/cybersecurity.py"
|
|
---
|
|
|
|
## Ejemplo
|
|
|
|
```python
|
|
is_hex("4a6f686e")
|
|
# True
|
|
|
|
is_hex("0x4a6f686e")
|
|
# True
|
|
|
|
is_hex("xyz")
|
|
# False
|
|
|
|
is_hex("a")
|
|
# False (menos de 2 caracteres)
|
|
```
|
|
|
|
## Notas
|
|
|
|
Util para validar hashes, direcciones de memoria, shellcode y otros datos hexadecimales en contexto de seguridad.
|