All checks were successful
Build & Sign Wraith / Build Windows + Sign (push) Successful in 3m7s
Network scanner (through SSH exec channels): - scan_network: ping sweep + ARP table + reverse DNS on remote network - scan_ports: TCP connect scan via bash /dev/tcp (parallel batches of 20) - quick_scan: 24 common ports (SSH, HTTP, RDP, SMB, DB, etc.) - Cross-platform: Linux + macOS - No agent/nmap required — uses standard POSIX commands - All scans run on the remote host through existing SSH tunnel SFTP context menu: - Right-click on files/folders shows Edit, Download, Rename, Delete - Right-click on folders shows Open Folder - Teleport menu to body for proper z-index layering - Click-away handler to close menu - Rename uses sftp_rename invoke CI fix: - Added default-run = "wraith" to Cargo.toml - The [[bin]] entry for wraith-mcp-bridge confused Cargo about which binary is the Tauri app main binary Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
68 lines
1.7 KiB
TOML
68 lines
1.7 KiB
TOML
[package]
|
|
name = "wraith"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
default-run = "wraith"
|
|
|
|
[lib]
|
|
name = "wraith_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[[bin]]
|
|
name = "wraith-mcp-bridge"
|
|
path = "src/bin/wraith_mcp_bridge.rs"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["devtools"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-updater = "2"
|
|
anyhow = "1"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
aes-gcm = "0.10"
|
|
argon2 = "0.5"
|
|
rand = "0.9"
|
|
hex = "0.4"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
base64 = "0.22"
|
|
dashmap = "6"
|
|
tokio = { version = "1", features = ["full"] }
|
|
async-trait = "0.1"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
thiserror = "2"
|
|
russh = "0.48"
|
|
russh-sftp = "2.1.1"
|
|
ssh-key = { version = "0.6", features = ["ed25519", "rsa"] }
|
|
|
|
# EC key PEM decryption (all already in dep tree via russh)
|
|
md5 = "0.7"
|
|
aes = "0.8"
|
|
cbc = "0.1"
|
|
block-padding = "0.3"
|
|
pem = "3"
|
|
pkcs8 = { version = "0.10", features = ["pem"] }
|
|
sec1 = { version = "0.7", features = ["pem"] }
|
|
|
|
# Local PTY for AI copilot panel
|
|
portable-pty = "0.8"
|
|
|
|
# MCP HTTP server (for bridge binary communication)
|
|
axum = "0.8"
|
|
ureq = "3"
|
|
png = "0.17"
|
|
|
|
# RDP (IronRDP)
|
|
ironrdp = { version = "0.14", features = ["connector", "session", "graphics", "input"] }
|
|
ironrdp-tokio = { version = "0.8", features = ["reqwest-rustls-ring"] }
|
|
ironrdp-tls = { version = "0.2", features = ["rustls"] }
|
|
tokio-rustls = "0.26"
|
|
x509-cert = { version = "0.2", default-features = false, features = ["std"] }
|
|
sspi = { version = "0.18", features = ["network_client"] }
|