Alibabacloud Waf Protectionconfig Backup
/install alibabacloud-waf-protectionconfig-backup
WAF Protection Config Backup
Export and backup all WAF protection configurations as Excel workbooks (.xlsx) for disaster recovery, auditing, configuration migration, or compliance review. Each data module is saved as a separate sheet within the workbook.
Architecture
Alibaba Cloud WAF Instance
├── WAF 3.0 (API 2021-10-01)
│ ├── Defense Resources
│ ├── Defense Resource Groups
│ ├── Defense Templates → Rules → Resource Bindings
│ │ └── 20 DefenseScene types (waf_group, cc, custom_acl, ip_blacklist, ...)
│ ├── Major Protection Black IPs
│ └── Address Books
│
└── WAF 2.0 (API 2019-09-10)
└── Per-Domain Protection Rules
└── 16 DefenseType types (ac_custom, whitelist, tamperproof, ...)
├── Rules / Status / Mode
└── Domain Rule Group
Regions: cn-hangzhou (China) | ap-southeast-1 (International)
Output: waf3-{region}.xlsx (8 sheets) | waf2-{region}.xlsx (5 sheets)
Installation
Pre-check: Aliyun CLI >= 3.3.3 required
Run
aliyun versionto verify >= 3.3.3. If not installed or version too low, runcurl -fsSL https://aliyuncli.alicdn.com/setup.sh | bashto install/update, or see references/cli-installation-guide.md for detailed instructions.
Pre-check: Aliyun CLI plugin update required
[MUST] run
aliyun configure set --auto-plugin-install trueto enable automatic plugin installation. [MUST] runaliyun plugin updateto ensure that any existing plugins are always up-to-date.
Pre-check: Python openpyxl library required
Excel (.xlsx) output requires the
openpyxlPython library.pip3 install openpyxl
Environment Variables
No environment variables are required. All parameters are provided via CLI flags or confirmed interactively.
Authentication
Pre-check: Alibaba Cloud Credentials Required
Security Rules:
- NEVER read, echo, or print AK/SK values (e.g.,
echo $ALIBABA_CLOUD_ACCESS_KEY_IDis FORBIDDEN)- NEVER ask the user to input AK/SK directly in the conversation or command line
- NEVER use
aliyun configure setwith literal credential values- ONLY use
aliyun configure listto check credential statusaliyun configure listCheck the output for a valid profile (AK, STS, or OAuth identity).
If no valid profile exists, STOP here.
- Obtain credentials from Alibaba Cloud Console
- Configure credentials outside of this session (via
aliyun configurein terminal or environment variables in shell profile)- Return and re-run after
aliyun configure listshows a valid profile
RAM Policy
This skill requires read-only permissions for WAF APIs. See references/ram-policies.md for the full IAM policy JSON.
| Action | WAF Version | Description |
|---|---|---|
waf:DescribeInstance |
3.0 | Query instance info |
waf:DescribeDefenseResources |
3.0 | List defense resources |
waf:DescribeDefenseResourceGroups |
3.0 | List resource groups |
waf:DescribeDefenseTemplates |
3.0 | List defense templates |
waf:DescribeDefenseRules |
3.0 | List defense rules |
waf:DescribeTemplateResources |
3.0 | List template-resource bindings |
waf:DescribeMajorProtectionBlackIps |
3.0 | List major protection black IPs |
waf:DescribeAddresses |
3.0 | List address book entries |
waf:DescribeInstanceInfo |
2.0 | Query instance info |
waf:DescribeDomainNames |
2.0 | List domains |
waf:DescribeProtectionModuleRules |
2.0 | List protection rules |
waf:DescribeProtectionModuleStatus |
2.0 | Query module status |
waf:DescribeProtectionModuleMode |
2.0 | Query module mode |
waf:DescribeDomainRuleGroup |
2.0 | Query domain rule group |
[MUST] Permission Failure Handling: When any command or API call fails due to permission errors at any point during execution, follow this process:
- Read
references/ram-policies.mdto get the full list of permissions required by this SKILL- Use
ram-permission-diagnoseskill to guide the user through requesting the necessary permissions- Pause and wait until the user confirms that the required permissions have been granted
Observability (MUST follow for every aliyun command)
Upon loading this skill, generate a random session ID (32-char lowercase hex string) once for the entire session. Use it as {session-id} below.
Rule: Every aliyun CLI command that calls a cloud API MUST include the --user-agent flag.
Local utility commands (e.g. configure, plugin, version) do not support this flag and should be excluded.
--user-agent AlibabaCloud-Agent-Skills/alibabacloud-waf-protectionconfig-backup/{session-id}
Example (assuming session-id is a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6):
aliyun waf-openapi describe-instance --region cn-hangzhou --biz-region-id cn-hangzhou --user-agent AlibabaCloud-Agent-Skills/alibabacloud-waf-protectionconfig-backup/a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6
Do not skip, alter the format, or omit --user-agent on any aliyun API command invocation.
Parameter Confirmation
IMPORTANT: Parameter Confirmation — Before executing any command or API call, ALL user-customizable parameters (e.g., RegionId, instance names, CIDR blocks, passwords, domain names, resource specifications, etc.) MUST be confirmed with the user. Do NOT assume or use default values without explicit user approval.
| Parameter | Required | Description | Default |
|---|---|---|---|
REGIONS |
Optional | Regions to scan | cn-hangzhou,ap-southeast-1 |
BACKUP_DIR |
Optional | Output directory path | ./waf-backup-{YYYYMMDD-HHmmss} |
WAF_VERSION |
Optional | Target WAF version: 3.0, 2.0, or auto |
auto |
Core Workflow
Phase 1: Initialize
BACKUP_DIR="./waf-backup-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BACKUP_DIR"
Phase 2: Detect WAF Version (per region)
For each region in [cn-hangzhou, ap-southeast-1]:
Try WAF 3.0:
aliyun waf-openapi describe-instance \
--region {region} \
--biz-region-id {region} \
--user-agent AlibabaCloud-Agent-Skills/alibabacloud-waf-protectionconfig-backup/{session-id}
If response contains a valid InstanceId → WAF 3.0 detected. Parse response and write to "instance" sheet of {BACKUP_DIR}/waf3-{region}.xlsx.
Try WAF 2.0:
aliyun waf-openapi describe-instance-info \
--api-version 2019-09-10 \
--region {region} \
--biz-region-id {region} \
--user-agent AlibabaCloud-Agent-Skills/alibabacloud-waf-protectionconfig-backup/{session-id}
If response contains valid instance info → WAF 2.0 detected. Parse response and write to "instance-info" sheet of {BACKUP_DIR}/waf2-{region}.xlsx.
If neither returns results, skip this region.
Phase 3: WAF 3.0 Backup
For each region with WAF 3.0 detected, follow the detailed steps in references/waf3-backup-workflow.md:
All data is written to {BACKUP_DIR}/waf3-{region}.xlsx with each module as a separate sheet:
- Backup Defense Resources —
describe-defense-resourceswith--pager→ sheet "defense-resources" - Backup Defense Resource Groups —
describe-defense-resource-groupswith--pager→ sheet "defense-resource-groups" - Backup Defense Templates & Rules — Iterate all 20 DefenseScene values:
- For each scene: list templates → for each template: get rules + resource bindings
- Aggregate all templates into sheet "defense-templates", all rules into sheet "defense-rules", all bindings into sheet "template-resource-bindings"
- See references/defense-scene-values.md for the full enum list
- Backup Major Protection Black IPs —
describe-major-protection-black-ipswith--pager→ sheet "major-protection-black-ips" - Backup Address Books —
describe-addresseswith--pager→ sheet "addresses"
Phase 4: WAF 2.0 Backup
For each region with WAF 2.0 detected, follow the detailed steps in references/waf2-backup-workflow.md:
All data is written to {BACKUP_DIR}/waf2-{region}.xlsx with each module as a separate sheet:
- List Domains —
describe-domain-names --api-version 2019-09-10→ sheet "domain-names" - Per-Domain Backup — For each domain, iterate all 16 DefenseType values:
describe-protection-module-rules→ append to sheet "protection-rules"describe-protection-module-status+describe-protection-module-mode→ append to sheet "protection-status"- See references/defense-scene-values.md for the full enum list
- Backup Domain Rule Group —
describe-domain-rule-groupper domain → append to sheet "domain-rule-groups"
CRITICAL: All WAF 2.0 commands MUST include
--api-version 2019-09-10and--region {region}. The--regionflag sets the API endpoint region. Without it, non-China-mainland instances (e.g., ap-southeast-1) will not be found — the API defaults to cn-hangzhou and returns the China mainland instance instead.
Phase 5: Generate Manifest
Create {BACKUP_DIR}/manifest.json containing:
backupTime— ISO 8601 timestampregions— object with per-region details (WAF version, instance ID, sheet counts)totalFiles— total number of backup Excel (.xlsx) files
Success Verification
- Verify
manifest.jsonexists and is valid JSON - Compare Excel file count against
totalFilesin manifest - Spot-check: open
waf3-{region}.xlsxand verify "defense-resources" sheet has data rows (WAF 3.0), or openwaf2-{region}.xlsxand verify "domain-names" sheet has data rows (WAF 2.0) - Validate all Excel files:
find {BACKUP_DIR} -name "*.xlsx" -exec python3 -c "import openpyxl; openpyxl.load_workbook('{}'); print('OK: {}')" \;
See references/verification-method.md for detailed verification steps.
Cleanup
This is a read-only backup skill. No cloud resources are created or modified.
To remove backup files:
rm -rf {BACKUP_DIR}
Command Tables
See references/related-commands.md for the complete CLI command reference.
| Category | Key Commands | Version |
|---|---|---|
| Instance Detection | describe-instance, describe-instance-info |
3.0 / 2.0 |
| Defense Resources | describe-defense-resources, describe-defense-resource-groups |
3.0 |
| Defense Rules | describe-defense-templates, describe-defense-rules, describe-template-resources |
3.0 |
| Major Protection | describe-major-protection-black-ips |
3.0 |
| Address Book | describe-addresses |
3.0 |
| Domain Rules | describe-protection-module-rules, describe-protection-module-status, describe-protection-module-mode |
2.0 |
| Domain Rule Group | describe-domain-rule-group |
2.0 |
Best Practices
- Run backups on a regular schedule (daily or weekly) for disaster recovery
- Store backup files in OSS with versioning enabled for long-term retention
- Use
autoversion detection to support mixed WAF 2.0/3.0 environments - Always scan both
cn-hangzhouandap-southeast-1to capture all instances - Validate backup integrity using
manifest.jsonfile counts after each run - Keep at least 7 days of backup history before pruning old backups
- Use
--pagerflag to handle large datasets without manual pagination - Compress backup directories (
tar -czf) for archival storage
Reference Links
| Reference | Description |
|---|---|
| references/cli-installation-guide.md | Aliyun CLI installation guide |
| references/ram-policies.md | Complete RAM policy JSON |
| references/waf3-backup-workflow.md | WAF 3.0 detailed backup workflow |
| references/waf2-backup-workflow.md | WAF 2.0 detailed backup workflow |
| references/defense-scene-values.md | DefenseScene / DefenseType enum reference |
| references/related-commands.md | Complete CLI command reference |
| references/verification-method.md | Backup verification procedures |
| references/acceptance-criteria.md | Testing acceptance criteria |
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install alibabacloud-waf-protectionconfig-backup - 安装完成后,直接呼叫该 Skill 的名称或使用
/alibabacloud-waf-protectionconfig-backup触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Alibabacloud Waf Protectionconfig Backup 是什么?
Export and backup Alibaba Cloud WAF protection configurations for WAF 3.0 and WAF 2.0 instances. Supports both China mainland (cn-hangzhou) and international... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 36 次。
如何安装 Alibabacloud Waf Protectionconfig Backup?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install alibabacloud-waf-protectionconfig-backup」即可一键安装,无需额外配置。
Alibabacloud Waf Protectionconfig Backup 是免费的吗?
是的,Alibabacloud Waf Protectionconfig Backup 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Alibabacloud Waf Protectionconfig Backup 支持哪些平台?
Alibabacloud Waf Protectionconfig Backup 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Alibabacloud Waf Protectionconfig Backup?
由 alibabacloud-skills-team(@sdk-team)开发并维护,当前版本 v0.0.1。