Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python3-boto /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
asadmin
11.71
KB
-rwxr-xr-x
bundle_image
1.52
KB
-rwxr-xr-x
cfadmin
3.36
KB
-rwxr-xr-x
cq
2.98
KB
-rwxr-xr-x
cwutil
4.93
KB
-rwxr-xr-x
dynamodb_dump
2.08
KB
-rwxr-xr-x
dynamodb_load
3.42
KB
-rwxr-xr-x
elbadmin
9.47
KB
-rwxr-xr-x
fetch_file
1.83
KB
-rwxr-xr-x
glacier
5.12
KB
-rwxr-xr-x
instance_events
5.64
KB
-rwxr-xr-x
kill_instance
925
B
-rwxr-xr-x
launch_instance
10.36
KB
-rwxr-xr-x
list_instances
3.03
KB
-rwxr-xr-x
lss3
3.36
KB
-rwxr-xr-x
mturk
18.7
KB
-rwxr-xr-x
pyami_sendmail
2.56
KB
-rwxr-xr-x
route53
8.82
KB
-rwxr-xr-x
s3put
16.45
KB
-rwxr-xr-x
sdbadmin
6.83
KB
-rwxr-xr-x
taskadmin
3.68
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bundle_image
#!/usr/bin/python3.10 from boto.manage.server import Server if __name__ == "__main__": from optparse import OptionParser parser = OptionParser(version="%prog 1.0", usage="Usage: %prog [options] instance-id [instance-id-2]") # Commands parser.add_option("-b", "--bucket", help="Destination Bucket", dest="bucket", default=None) parser.add_option("-p", "--prefix", help="AMI Prefix", dest="prefix", default=None) parser.add_option("-k", "--key", help="Private Key File", dest="key_file", default=None) parser.add_option("-c", "--cert", help="Public Certificate File", dest="cert_file", default=None) parser.add_option("-s", "--size", help="AMI Size", dest="size", default=None) parser.add_option("-i", "--ssh-key", help="SSH Keyfile", dest="ssh_key", default=None) parser.add_option("-u", "--user-name", help="SSH Username", dest="uname", default="root") parser.add_option("-n", "--name", help="Name of Image", dest="name") (options, args) = parser.parse_args() for instance_id in args: try: s = Server.find(instance_id=instance_id).next() print "Found old server object" except StopIteration: print "New Server Object Created" s = Server.create_from_instance_id(instance_id, options.name) assert(s.hostname is not None) b = s.get_bundler(uname=options.uname) b.bundle(bucket=options.bucket,prefix=options.prefix,key_file=options.key_file,cert_file=options.cert_file,size=int(options.size),ssh_key=options.ssh_key)
Close