OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
exabgp
/
util
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/16/2023 12:55:54 PM
rwxr-xr-x
📄
__init__.py
1.68 KB
03/13/2021 04:30:48 PM
rw-r--r--
📁
__pycache__
-
03/16/2023 12:55:54 PM
rwxr-xr-x
📄
cache.py
1.38 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
coroutine.py
582 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
dictionary.py
448 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
dns.py
1002 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
enumeration.py
720 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
errstr.py
517 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
hashtable.py
615 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
ip.py
559 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
od.py
498 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
panic.py
4.1 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
test.py
189 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
trace.py
376 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
usage.py
652 bytes
03/13/2021 04:30:48 PM
rw-r--r--
Editing: panic.py
Close
# encoding: utf-8 """ panic.py Created by Thomas Mangin on 2014-12-30. Copyright (c) 2009-2017 Exa Networks. All rights reserved. License: 3-clause BSD. (See the COPYRIGHT file) """ from exabgp.version import version import sys import platform if sys.version_info[0] < 3: _max = sys.maxint else: _max = sys.maxsize PANIC = """ ******************************************************************************** EXABGP HAD AN INTERNAL ISSUE / HELP US FIX IT ******************************************************************************** Sorry, you encountered a problem with ExaBGP and we could not keep the program running. There are a few things you can do to help us (and yourself): - make sure you are running the latest version of the code available at https://github.com/Exa-Networks/exabgp/releases/latest - if so report the issue on https://github.com/Exa-Networks/exabgp/issues so it can be fixed (github can be searched for similar reports) PLEASE, when reporting, do include as much information as you can: - do not obfuscate any data (feel free to send us a private email with the extra information if your business policy is strict on information sharing) https://github.com/Exa-Networks/exabgp/wiki/FAQ - if you can reproduce the issue, run ExaBGP with the command line option -d it provides us with much needed information to fix problems quickly - include the information presented below Should you not receive an acknowledgment of your issue on github (assignement, comment, or similar) within a few hours, feel free to email us to make sure it was not overlooked. (please keep in mind the authors are based in GMT/Europe) ******************************************************************************** -- Please provide ALL the information below on : -- https://github.com/Exa-Networks/exabgp/issues ******************************************************************************** ExaBGP version : %s Python version : %s System Uname : %s System MaxInt : %s """ % ( version, sys.version.replace('\n', ' '), platform.version(), str(_max), ) NO_PANIC = """ ******************************************************************************** EXABGP MISBEHAVED / HELP US FIX IT ******************************************************************************** Sorry, you encountered a problem with ExaBGP, as the problem only affects one peer, we are trying to keep the program running. There are a few things you can do to help us (and yourself): - make sure you are running the latest version of the code available at https://github.com/Exa-Networks/exabgp/releases/latest - if so report the issue on https://github.com/Exa-Networks/exabgp/issues so it can be fixed (github can be searched for similar reports) PLEASE, when reporting, do include as much information as you can: - do not obfuscate any data (feel free to send us a private email with the extra information if your business policy is strict on information sharing) https://github.com/Exa-Networks/exabgp/wiki/FAQ - if you can reproduce the issue, run ExaBGP with the command line option -d it provides us with much needed information to fix problems quickly - include the information presented below Should you not receive an acknowledgment of your issue on github (assignement, comment, or similar) within a few hours, feel free to email us to make sure it was not overlooked. (please keep in mind the authors are based in GMT/Europe) ******************************************************************************** -- Please provide ALL the information below on : -- https://github.com/Exa-Networks/exabgp/issues ******************************************************************************** ExaBGP version : %s Python version : %s System Uname : %s System MaxInt : %s """ % ( version, sys.version.replace('\n', ' '), platform.version(), str(_max), ) FOOTER = """\ ******************************************************************************** -- Please provide _ALL_ the information above on : -- https://github.com/Exa-Networks/exabgp/issues ******************************************************************************** """