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 /
cloud-init /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
seed
[ DIR ]
drwxr-xr-x
boothook.txt
80
B
-rw-r--r--
cloud-config-add-apt-repos.txt
1.54
KB
-rw-r--r--
cloud-config-ansible-controlle...
7.19
KB
-rw-r--r--
cloud-config-ansible-managed.t...
3.73
KB
-rw-r--r--
cloud-config-ansible-pull.txt
334
B
-rw-r--r--
cloud-config-apt.txt
12.69
KB
-rw-r--r--
cloud-config-archive-launch-in...
802
B
-rw-r--r--
cloud-config-archive.txt
239
B
-rw-r--r--
cloud-config-boot-cmds.txt
406
B
-rw-r--r--
cloud-config-ca-certs.txt
1.16
KB
-rw-r--r--
cloud-config-chef-oneiric.txt
3.37
KB
-rw-r--r--
cloud-config-chef.txt
4.1
KB
-rw-r--r--
cloud-config-datasources.txt
2.17
KB
-rw-r--r--
cloud-config-disk-setup.txt
8.7
KB
-rw-r--r--
cloud-config-gluster.txt
456
B
-rw-r--r--
cloud-config-install-packages....
383
B
-rw-r--r--
cloud-config-launch-index.txt
570
B
-rw-r--r--
cloud-config-lxd.txt
1.77
KB
-rw-r--r--
cloud-config-mount-points.txt
1.47
KB
-rw-r--r--
cloud-config-ntp.txt
835
B
-rw-r--r--
cloud-config-reporting.txt
335
B
-rw-r--r--
cloud-config-run-cmds.txt
963
B
-rw-r--r--
cloud-config-ssh-keys.txt
2.24
KB
-rw-r--r--
cloud-config-update-apt.txt
229
B
-rw-r--r--
cloud-config-update-packages.t...
93
B
-rw-r--r--
cloud-config-user-groups.txt
6.74
KB
-rw-r--r--
cloud-config-wireguard.txt
1.16
KB
-rw-r--r--
cloud-config-write-files.txt
1.05
KB
-rw-r--r--
cloud-config-yum-repo.txt
897
B
-rw-r--r--
cloud-config.txt
16.15
KB
-rw-r--r--
include-once.txt
353
B
-rw-r--r--
include.txt
434
B
-rw-r--r--
kernel-command-line.txt
1
KB
-rw-r--r--
network-config-v1-bonded-pair....
428
B
-rw-r--r--
network-config-v1-bonded-vlan....
508
B
-rw-r--r--
network-config-v1-bridge.yaml
638
B
-rw-r--r--
network-config-v1-multiple-vla...
1.18
KB
-rw-r--r--
network-config-v1-nameserver.y...
403
B
-rw-r--r--
network-config-v1-physical-3-n...
443
B
-rw-r--r--
network-config-v1-physical-dhc...
100
B
-rw-r--r--
network-config-v1-route.yaml
321
B
-rw-r--r--
network-config-v1-subnet-dhcp....
151
B
-rw-r--r--
network-config-v1-subnet-multi...
364
B
-rw-r--r--
network-config-v1-subnet-route...
483
B
-rw-r--r--
network-config-v1-subnet-stati...
348
B
-rw-r--r--
network-config-v1-vlan.yaml
253
B
-rw-r--r--
part-handler-v2.txt
1.53
KB
-rw-r--r--
part-handler.txt
2.03
KB
-rw-r--r--
plain-ignored.txt
68
B
-rw-r--r--
user-script.txt
125
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : part-handler.txt
#part-handler """This is a trivial example part-handler that creates a file with the path specified in the payload. It performs no input checking or error handling. To use it, first save the file you are currently viewing into your current working directory. Then run the following: ``` $ echo '/var/tmp/my_path' > part $ cloud-init devel make-mime -a part-handler.py:part-handler -a part:x-my-path --force > user-data ``` This will create a mime file with the contents of 'part' and the part-handler. You can now pass 'user-data' to your cloud of choice. When run, cloud-init will have created an empty file at /var/tmp/my_path. """ import pathlib from typing import Any from cloudinit.cloud import Cloud def list_types(): """Return a list of mime-types that are handled by this module.""" return ["text/x-my-path"] def handle_part(data: Cloud, ctype: str, filename: str, payload: Any): """Handle a part with the given mime-type. This function will get called multiple times. The first time is to allow any initial setup needed to handle parts. It will then get called once for each part matching the mime-type returned by `list_types`. Finally, it will get called one last time to allow for any final teardown. :data: A `Cloud` instance. This will be the same instance for each call to handle_part. :ctype: '__begin__', '__end__', or the mime-type (for this example 'text/x-my-path') of the part :filename: The filename for the part as defined in the MIME archive, or dynamically generated part if no filename is given :payload: The content of the part. This will be `None` when `ctype` is '__begin__' or '__end__'. """ if ctype == "__begin__": # Any custom setup needed before handling payloads return if ctype == "__end__": # Any custom teardown needed after handling payloads can happen here return # If we've made it here, we're dealing with a real payload, so handle # it appropriately pathlib.Path(payload.strip()).touch()
Close