Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.16.51.68
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
snap /
lxd /
29619 /
share /
openvswitch /
python /
ovs /
db /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
38
B
-rw-r--r--
custom_index.py
4.74
KB
-rw-r--r--
data.py
21.15
KB
-rw-r--r--
error.py
1.13
KB
-rw-r--r--
idl.py
94.55
KB
-rw-r--r--
parser.py
3.56
KB
-rw-r--r--
schema.py
11.67
KB
-rw-r--r--
types.py
22.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : error.py
# Copyright (c) 2009, 2010, 2011 Nicira, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import ovs.json class Error(Exception): def __init__(self, msg, json=None, tag=None): self.msg = msg self.json = json if tag is None: if json is None: self.tag = "ovsdb error" else: self.tag = "syntax error" else: self.tag = tag # Compose message. syntax = "" if self.json is not None: syntax = 'syntax "%s": ' % ovs.json.to_string(self.json) Exception.__init__(self, "%s%s: %s" % (syntax, self.tag, self.msg))
Close