Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
site-packages /
boto /
beanstalk /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
1.64
KB
-rw-r--r--
2016-04-07 22:15
__init__.pyc
1005
B
-rw-r--r--
2017-01-28 02:50
__init__.pyo
1005
B
-rw-r--r--
2017-01-28 02:50
exception.py
2.08
KB
-rw-r--r--
2016-04-07 22:15
exception.pyc
6.62
KB
-rw-r--r--
2017-01-28 02:50
exception.pyo
6.62
KB
-rw-r--r--
2017-01-28 02:50
layer1.py
54.94
KB
-rw-r--r--
2016-04-07 22:15
layer1.pyc
49.3
KB
-rw-r--r--
2017-01-28 02:50
layer1.pyo
49.3
KB
-rw-r--r--
2017-01-28 02:50
response.py
27.39
KB
-rw-r--r--
2016-04-07 22:15
response.pyc
33.15
KB
-rw-r--r--
2017-01-28 02:50
response.pyo
33.15
KB
-rw-r--r--
2017-01-28 02:50
wrapper.py
1.05
KB
-rw-r--r--
2016-04-07 22:15
wrapper.pyc
1.89
KB
-rw-r--r--
2017-01-28 02:50
wrapper.pyo
1.89
KB
-rw-r--r--
2017-01-28 02:50
Save
Rename
import sys from boto.compat import json from boto.exception import BotoServerError def simple(e): code = e.code if code.endswith('Exception'): code = code.rstrip('Exception') try: # Dynamically get the error class. simple_e = getattr(sys.modules[__name__], code)(e) except AttributeError: # Return original exception on failure. return e return simple_e class SimpleException(BotoServerError): def __init__(self, e): super(SimpleException, self).__init__(e.status, e.reason, e.body) self.error_message = self.message def __repr__(self): return self.__class__.__name__ + ': ' + self.error_message def __str__(self): return self.__class__.__name__ + ': ' + self.error_message class ValidationError(SimpleException): pass # Common beanstalk exceptions. class IncompleteSignature(SimpleException): pass class InternalFailure(SimpleException): pass class InvalidAction(SimpleException): pass class InvalidClientTokenId(SimpleException): pass class InvalidParameterCombination(SimpleException): pass class InvalidParameterValue(SimpleException): pass class InvalidQueryParameter(SimpleException): pass class MalformedQueryString(SimpleException): pass class MissingAction(SimpleException): pass class MissingAuthenticationToken(SimpleException): pass class MissingParameter(SimpleException): pass class OptInRequired(SimpleException): pass class RequestExpired(SimpleException): pass class ServiceUnavailable(SimpleException): pass class Throttling(SimpleException): pass # Action specific exceptions. class TooManyApplications(SimpleException): pass class InsufficientPrivileges(SimpleException): pass class S3LocationNotInServiceRegion(SimpleException): pass class TooManyApplicationVersions(SimpleException): pass class TooManyConfigurationTemplates(SimpleException): pass class TooManyEnvironments(SimpleException): pass class S3SubscriptionRequired(SimpleException): pass class TooManyBuckets(SimpleException): pass class OperationInProgress(SimpleException): pass class SourceBundleDeletion(SimpleException): pass