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.217.14
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 /
pyzor /
Delete
Unzip
Name
Size
Permission
Date
Action
engines
[ DIR ]
drwxr-xr-x
2017-07-03 22:07
hacks
[ DIR ]
drwxr-xr-x
2017-07-03 22:07
__init__.py
1.38
KB
-rw-r--r--
2014-12-10 14:25
__init__.pyc
2.42
KB
-rw-r--r--
2017-07-03 22:07
account.py
2.49
KB
-rw-r--r--
2014-12-10 14:10
account.pyc
3.2
KB
-rw-r--r--
2017-07-03 22:07
client.py
10.56
KB
-rw-r--r--
2014-12-10 14:10
client.pyc
12.77
KB
-rw-r--r--
2017-07-03 22:07
config.py
8.95
KB
-rw-r--r--
2014-12-10 14:10
config.pyc
8.07
KB
-rw-r--r--
2017-07-03 22:07
digest.py
5.74
KB
-rw-r--r--
2014-12-10 14:10
digest.pyc
6.25
KB
-rw-r--r--
2017-07-03 22:07
forwarder.py
2.51
KB
-rw-r--r--
2014-12-10 14:10
forwarder.pyc
2.87
KB
-rw-r--r--
2017-07-03 22:07
message.py
3.93
KB
-rw-r--r--
2014-12-10 14:10
message.pyc
8.52
KB
-rw-r--r--
2017-07-03 22:07
server.py
15.41
KB
-rw-r--r--
2014-12-10 14:10
server.pyc
16.16
KB
-rw-r--r--
2017-07-03 22:07
Save
Rename
"""Networked spam-signature detection.""" __author__ = "Frank J. Tobin, ftobin@neverending.org" __credits__ = "Tony Meyer, Dreas von Donselaar, all the Pyzor contributors." __version__ = "1.0.0" import hashlib proto_name = 'pyzor' proto_version = 2.1 anonymous_user = 'anonymous' # We would like to use sha512, but that would mean that all the digests # changed, so for now, we stick with sha1 (which is the same as the old # sha module). sha = hashlib.sha1 # This is the maximum time between a client signing a Pyzor request and the # server checking the signature. MAX_TIMESTAMP_DIFFERENCE = 300 # seconds class CommError(Exception): """Something in general went wrong with the transaction.""" code = 400 class ProtocolError(CommError): """Something is wrong with talking the protocol.""" code = 400 class TimeoutError(CommError): """The connection timed out.""" code = 504 class IncompleteMessageError(ProtocolError): """A complete requested was not received.""" pass class UnsupportedVersionError(ProtocolError): """Client is using an unsupported protocol version.""" pass class SignatureError(CommError): """Unknown user, signature on msg invalid, or not within allowed time range.""" pass class AuthorizationError(CommError): """The signature was valid, but the user is not permitted to do the requested action.""" pass