文件名称:unifi-backup-decrypt:解密UniFi Controller备份(.unf <=> .zip)
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-17 16:56:30
Shell
UniFi备份文件(.unf)解密 要求 的openssl 压缩 一些代码片段 final Cipher instance = Cipher.getInstance("AES/CBC/NoPadding"); instance.init(2, new SecretKeySpec("bcyangkmluohmars".getBytes(), "AES"), new IvParameterSpec("ubntenterpriseap".getBytes())); return new CipherInputStream(inputStream, instance); 格式错误的zip文件需要先修复,然后才能解压缩 数据库 db.gz包含ace数据库的每个集合的BSON文档流。 您可以通过gunzip -c db.gz | bsondump查看其内容gunzip -c db.gz | bs
【文件预览】:
unifi-backup-decrypt-master
----encrypt.sh(400B)
----LICENSE(1KB)
----README.md(668B)
----decrypt.sh(527B)