π¦ ClawHub
Windows Hardening
by @krishnakumarmahadevan-cmd
Professional Windows Security Configuration Generator for automated hardening policy creation and deployment.
π‘ Examples
Generate Hardening Configuration
Create a hardening configuration by specifying desired security options and session details.
Request:
{
"sessionId": "sess-2024-001-hardening",
"userId": 12345,
"timestamp": "2024-01-15T14:30:00Z",
"hardeningOptions": {
"firewall": [
"enable_inbound_rules",
"block_legacy_protocols"
],
"services": [
"disable_unnecessary_services",
"restrict_remote_access"
],
"authentication": [
"enforce_strong_passwords",
"enable_mfa"
],
"audit": [
"enable_event_logging",
"monitor_privileged_access"
]
}
}
Response:
{
"status": "success",
"configId": "cfg-2024-001-hw7k2x",
"timestamp": "2024-01-15T14:30:05Z",
"hardeningProfile": {
"firewall": {
"inbound_rules": "enabled",
"legacy_protocols": "blocked",
"status": "configured"
},
"services": {
"unnecessary_services": "disabled",
"remote_access": "restricted",
"status": "configured"
},
"authentication": {
"password_policy": "strong_enforcement",
"mfa": "enabled",
"status": "configured"
},
"audit": {
"event_logging": "enabled",
"privileged_access_monitoring": "active",
"status": "configured"
}
},
"downloadUrl": "https://api.mkkpro.com/hardening/download/cfg-2024-001-hw7k2x",
"expiresIn": 86400
}
TERMINAL
clawhub install toolweb-windows-hardening