Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els11.x86_64 #1 SMP Sun Nov 3 09:06:59 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.129.216.15
66 Domain
8.0.30
amvm
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
cloud-init /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
seed
[ DIR ]
drwxr-xr-x
cloud-config-add-apt-repos.txt
1.41
KB
-rw-r--r--
cloud-config-apt.txt
12.52
KB
-rw-r--r--
cloud-config-archive-launch-in...
802
B
-rw-r--r--
cloud-config-archive.txt
244
B
-rw-r--r--
cloud-config-boot-cmds.txt
634
B
-rw-r--r--
cloud-config-ca-certs.txt
1.07
KB
-rw-r--r--
cloud-config-chef-oneiric.txt
3.43
KB
-rw-r--r--
cloud-config-chef.txt
3.62
KB
-rw-r--r--
cloud-config-datasources.txt
2.43
KB
-rw-r--r--
cloud-config-disk-setup.txt
8.8
KB
-rw-r--r--
cloud-config-final-message.txt
252
B
-rw-r--r--
cloud-config-gluster.txt
456
B
-rw-r--r--
cloud-config-growpart.txt
980
B
-rw-r--r--
cloud-config-install-packages....
378
B
-rw-r--r--
cloud-config-landscape.txt
779
B
-rw-r--r--
cloud-config-launch-index.txt
594
B
-rw-r--r--
cloud-config-lxd.txt
1.76
KB
-rw-r--r--
cloud-config-mcollective.txt
2.44
KB
-rw-r--r--
cloud-config-mount-points.txt
1.46
KB
-rw-r--r--
cloud-config-ntp.txt
835
B
-rw-r--r--
cloud-config-phone-home.txt
364
B
-rw-r--r--
cloud-config-power-state.txt
1.58
KB
-rw-r--r--
cloud-config-puppet.txt
2.13
KB
-rw-r--r--
cloud-config-reporting.txt
405
B
-rw-r--r--
cloud-config-resolv-conf.txt
527
B
-rw-r--r--
cloud-config-rh_subscription.t...
1.43
KB
-rw-r--r--
cloud-config-rsyslog.txt
1.44
KB
-rw-r--r--
cloud-config-run-cmds.txt
788
B
-rw-r--r--
cloud-config-salt-minion.txt
2.35
KB
-rw-r--r--
cloud-config-seed-random.txt
1.25
KB
-rw-r--r--
cloud-config-ssh-keys.txt
3.21
KB
-rw-r--r--
cloud-config-update-apt.txt
138
B
-rw-r--r--
cloud-config-update-packages.t...
143
B
-rw-r--r--
cloud-config-user-groups.txt
4.82
KB
-rw-r--r--
cloud-config-vendor-data.txt
561
B
-rw-r--r--
cloud-config-write-files.txt
1.11
KB
-rw-r--r--
cloud-config-yum-repo.txt
683
B
-rw-r--r--
cloud-config.txt
20.07
KB
-rw-r--r--
include-once.txt
353
B
-rw-r--r--
include.txt
237
B
-rw-r--r--
kernel-cmdline.txt
839
B
-rw-r--r--
part-handler-v2.txt
1.53
KB
-rw-r--r--
part-handler.txt
834
B
-rw-r--r--
plain-ignored.txt
68
B
-rw-r--r--
upstart-cloud-config.txt
182
B
-rw-r--r--
upstart-rclocal.txt
217
B
-rw-r--r--
user-script.txt
125
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cloud-config-user-groups.txt
# Add groups to the system # The following example adds the ubuntu group with members foo and bar and # the group cloud-users. groups: - ubuntu: [foo,bar] - cloud-users # Add users to the system. Users are added after groups are added. users: - default - name: foobar gecos: Foo B. Bar primary-group: foobar groups: users selinux-user: staff_u expiredate: 2012-09-01 ssh-import-id: foobar lock_passwd: false passwd: $6$j212wezy$7H/1LT4f9/N3wpgNunhsIqtMj62OKiS3nyNwuizouQc3u7MbYCarYeAHWYPYb2FT.lbioDm2RrkJPb9BZMN1O/ - name: barfoo gecos: Bar B. Foo sudo: ALL=(ALL) NOPASSWD:ALL groups: users, admin ssh-import-id: None lock_passwd: true ssh-authorized-keys: - <ssh pub key 1> - <ssh pub key 2> - name: cloudy gecos: Magic Cloud App Daemon User inactive: true system: true - snapuser: joe@joeuser.io # Valid Values: # name: The user's login name # gecos: The user name's real name, i.e. "Bob B. Smith" # homedir: Optional. Set to the local path you want to use. Defaults to # /home/<username> # primary-group: define the primary group. Defaults to a new group created # named after the user. # groups: Optional. Additional groups to add the user to. Defaults to none # selinux-user: Optional. The SELinux user for the user's login, such as # "staff_u". When this is omitted the system will select the default # SELinux user. # lock_passwd: Defaults to true. Lock the password to disable password login # inactive: Create the user as inactive # passwd: The hash -- not the password itself -- of the password you want # to use for this user. You can generate a safe hash via: # mkpasswd --method=SHA-512 --rounds=4096 # (the above command would create from stdin an SHA-512 password hash # with 4096 salt rounds) # # Please note: while the use of a hashed password is better than # plain text, the use of this feature is not ideal. Also, # using a high number of salting rounds will help, but it should # not be relied upon. # # To highlight this risk, running John the Ripper against the # example hash above, with a readily available wordlist, revealed # the true password in 12 seconds on a i7-2620QM. # # In other words, this feature is a potential security risk and is # provided for your convenience only. If you do not fully trust the # medium over which your cloud-config will be transmitted, then you # should use SSH authentication only. # # You have thus been warned. # no-create-home: When set to true, do not create home directory. # no-user-group: When set to true, do not create a group named after the user. # no-log-init: When set to true, do not initialize lastlog and faillog database. # ssh-import-id: Optional. Import SSH ids # ssh-authorized-keys: Optional. [list] Add keys to user's authorized keys file # sudo: Defaults to none. Set to the sudo string you want to use, i.e. # ALL=(ALL) NOPASSWD:ALL. To add multiple rules, use the following # format. # sudo: # - ALL=(ALL) NOPASSWD:/bin/mysql # - ALL=(ALL) ALL # Note: Please double check your syntax and make sure it is valid. # cloud-init does not parse/check the syntax of the sudo # directive. # system: Create the user as a system user. This means no home directory. # snapuser: Create a Snappy (Ubuntu-Core) user via the snap create-user # command available on Ubuntu systems. If the user has an account # on the Ubuntu SSO, specifying the email will allow snap to # request a username and any public ssh keys and will import # these into the system with username specifed by SSO account. # If 'username' is not set in SSO, then username will be the # shortname before the email domain. # # Default user creation: # # Unless you define users, you will get a 'ubuntu' user on ubuntu systems with the # legacy permission (no password sudo, locked user, etc). If however, you want # to have the 'ubuntu' user in addition to other users, you need to instruct # cloud-init that you also want the default user. To do this use the following # syntax: # users: # - default # - bob # - .... # foobar: ... # # users[0] (the first user in users) overrides the user directive. # # The 'default' user above references the distro's config: # system_info: # default_user: # name: Ubuntu # plain_text_passwd: 'ubuntu' # home: /home/ubuntu # shell: /bin/bash # lock_passwd: True # gecos: Ubuntu # groups: [adm, audio, cdrom, dialout, floppy, video, plugdev, dip, netdev]
Close