403Webshell
Server IP : 192.158.238.246  /  Your IP : 3.15.7.155
Web Server : LiteSpeed
System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
User : jenniferflocom ( 1321)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/alt/python37/lib/python3.7/site-packages/beaker/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/alt/python37/lib/python3.7/site-packages/beaker/__pycache__/session.cpython-37.pyc
B

�Rd];��@spddlmZmZmZmZmZmZmZddlZddl	Z	ddl
m
Z
mZddlm
ZmZmZmZmZmZddlmZmZddlmZddlmZmZdd	lmZd
ZdZ dd
dgZ!Gdd�de"�Z#e#�Z$yddl%Z%dd�Z&WnBe'k
�rddl(Z(e)ed��rej*Z*ndd�Z*dd�Z&YnXGdd�de�Z+Gdd�de,�Z-Gdd
�d
e-�Z.Gdd�de.�Z/Gdd�de"�Z0dS)�)�PY2�pickle�http_cookies�unicode_text�	b64encode�	b64decode�string_type�N)�datetime�	timedelta)�hmac�	hmac_sha1�sha1�get_nonce_size�DEFAULT_NONCE_BITS�get_crypto_module)�crypto�util)�clsmap)�BeakerException�InvalidCryptoBackendError)�SimpleCookie)
N�Jan�Feb�Mar�Apr�May�Jun�Jul�Aug�Sep�Oct�Nov�Dec)�Mon�Tue�Wed�Thu�Fri�Sat�Sun�SignedCookie�Session�InvalidSignaturec@s eZdZdZdd�Zdd�ZdS)�_InvalidSignatureTypezBReturned from SignedCookie when the value's signature was invalid.cCsdS)NF�)�selfr/r/�?/opt/alt/python37/lib/python3.7/site-packages/beaker/session.py�__nonzero__sz!_InvalidSignatureType.__nonzero__cCsdS)NFr/)r0r/r/r1�__bool__sz_InvalidSignatureType.__bool__N)�__name__�
__module__�__qualname__�__doc__r2r3r/r/r/r1r.sr.cCs
t��jS)N)�uuidZuuid4�hexr/r/r/r1�_session_id$sr:�getpidcCsdS)N�r/r/r/r/r1r;+scCs�dt��ti�t��t�f}tsVtt|�d�����}t	|�
dd��
dd��d��Stt|����}|�
dd	��
d
d��d�SdS)
Nz%f%s%f%s�ascii�+�-�/�_�=�+�-�/�_�=)�time�id�randomr;rrr�encode�digest�str�replace�rstrip)Zid_strZraw_idr/r/r1r:.s
c@s*eZdZdZd	dd�Zdd�Zdd�ZdS)
r+z7Extends python cookie to give digital signature supportNcCs|�d�|_tj�||�dS)NzUTF-8)rK�secretrZ
BaseCookie�__init__)r0rP�inputr/r/r1rQAszSignedCookie.__init__cCs�|�d�}|sd|fSt�|j|dd��d�t���}d}|dd�}t|�t|�kr`t|fSx"t	||�D]\}}|||k7}qlW|r�t|fS|dd�|fSdS)N�"�(zutf-8r	)
�strip�HMAC�newrPrK�SHA1�	hexdigest�lenr-�zip)r0�val�sigZinvalid_bitsZ	input_sig�a�br/r/r1�value_decodeEs
"zSignedCookie.value_decodecCs.t�|j|�d�t���}t|�d||ffS)Nzutf-8z%s%s)rVrWrPrKrXrYrM)r0r\r]r/r/r1�value_encodeZszSignedCookie.value_encode)N)r4r5r6r7rQr`rar/r/r/r1r+?s
cs*eZdZdZddd�Z�fdd�Z�ZS)	�_ConfigurableSessionz�Provides support for configurable Session objects.
    
    Provides a way to ensure some properties of sessions
    are always available with pre-configured values
    when they are not available in the session cookie itself.
    NrEcCs||d�|_dS)N)�_domain�_path)�_config)r0�
cookie_domain�cookie_pathr/r/r1rQgsz_ConfigurableSession.__init__cstt|���|�|j�dS)z5Clears Session data. Preserves session configuration.N)�superrb�clear�updatere)r0)�	__class__r/r1rimsz_ConfigurableSession.clear)NrE)r4r5r6r7rQri�
__classcell__r/r/)rkr1rb_s
rbc@s*eZdZdZddddddddddddddddddedd	fd
d�Zdd
�Zdd�Zd<dd�Ze	dd��Z
dd�Zd=dd�Zdd�Z
d>dd�Zedd��Zdd�Zd d!�Zeee�Zd"d#�Zd$d%�Zeee�Zd?d&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�Zd0d1�Zd@d2d3�Zd4d5�Zd6d7�Zd8d9�Z d:d;�Z!dS)Ar,an
Session object that uses container package for storage.

    :param invalidate_corrupt: How to handle corrupt data when loading. When
                               set to True, then corrupt data will be silently
                               invalidated and a new session created,
                               otherwise invalid data will cause an exception.
    :type invalidate_corrupt: bool
    :param use_cookies: Whether or not cookies should be created. When set to
                        False, it is assumed the user will handle storing the
                        session on their own.
    :type use_cookies: bool
    :param type: What data backend type should be used to store the underlying
                 session data
    :param key: The name the cookie should be set to.
    :param timeout: How long session data is considered valid. This is used
                    regardless of the cookie being present or not to determine
                    whether session data is still valid. Can be set to None to
                    disable session time out.
    :type timeout: int or None
    :param save_accessed_time: Whether beaker should save the session's access
                               time (True) or only modification time (False).
                               Defaults to True.
    :param cookie_expires: Expiration date for cookie
    :param cookie_domain: Domain to use for the cookie.
    :param cookie_path: Path to use for the cookie.
    :param data_serializer: If ``"json"`` or ``"pickle"`` should be used
                              to serialize data. Can also be an object with
                              ``loads` and ``dumps`` methods. By default
                              ``"pickle"`` is used.
    :param secure: Whether or not the cookie should only be sent over SSL.
    :param httponly: Whether or not the cookie should only be accessible by
                     the browser not by JavaScript.
    :param encrypt_key: The key to use for the local session encryption, if not
                        provided the session will not be encrypted.
    :param validate_key: The key used to sign the local encrypted session
    :param encrypt_nonce_bits: Number of bits used to generate nonce for encryption key salt.
                               For security reason this is 128bits be default. If you want
                               to keep backward compatibility with sessions generated before 1.8.0
                               set this to 48.
    :param crypto_type: encryption module to use
    :param samesite: SameSite value for the cookie -- should be either 'Lax',
                     'Strict', or None.
    NFTzbeaker.session.idrEr�default�Laxc
Ks$tj|||d�|��|s0|r(d|_q6d|_n||_|pBt|j|_||_||_||_||_	|rn|	snt
d��||_|jdk	r�|jd|jd<|	|_||_
|
|_|�|
�d|_||_||_||_||_||_||_t|�|_t|�|_||_i|_||_|j
�r�|�dd	�}|�rPyt||d
�|_ Wn&t!j"k
�rLt|dd
�|_ YnXnt#|d
�|_ |j�s�|j	|j k�r�|j |j	j$}|t%k�r�d}||_|jdk|_&|j&�r�|�'�t(�(�|d<|d<nZy|�)�WnLt*k
�r}z,|j�rt+�,d
|j|f�|�-�n�Wdd}~XYnXdS)N)rfrg�fileZmemoryz#timeout requires save_accessed_time�x�timeoutF�cookier<)rR�_accessed_time�_creation_timezjInvalidating corrupt session %s; error was: %s.  Set invalidate_corrupt=False to propagate this exception.).rbrQri�typer�namespace_class�namespace_args�request�data_dir�keyrrq�
save_atime�use_cookies�cookie_expires�_set_serializer�was_invalidatedrP�secure�httponly�samesite�encrypt_key�validate_keyr�encrypt_nonce_sizer�
crypto_modulerI�
accessed_dict�invalidate_corrupt�getr+rrr�CookieErrorr�valuer-�is_new�
_create_idrH�load�	Exceptionr�warn�
invalidate)r0rxrIr�r|ruryrzrq�save_accessed_timer}rfrg�data_serializerrPr�rvr�r�r��encrypt_nonce_bits�crypto_typer�rw�cookieheader�cookie_data�er/r/r1rQ�s�	





zSession.__init__cCsV||_|jdkrt��|_n6|jdkr2t��|_n t|jt�rLtd|��n||_dS)NZjsonrz%Invalid value for data_serializer: %s)r�rZJsonSerializer�
serializerZPickleSerializer�
isinstancerr)r0r�r/r/r1r~s

zSession._set_serializercCs||kS)Nr/)r0�namer/r/r1�has_keyszSession.has_keycCs||j|j|j<|jr&|j|j|jd<|jr<d|j|jd<|jrT|j|j|jd<|��|j|j|jd<|�|�dS)N�domainTr�r��path)	rIrrrzr�r�r��_set_cookie_http_onlyr��_set_cookie_expires)r0�expiresr/r/r1�_set_cookie_valuesszSession._set_cookie_valuescCs0|��}t�d|�}|t|dt|dfS)Nz%%s, %d-%%s-%Y %H:%M:%S GMT�r)�	timetuplerH�strftime�weekdays�months)�v�rr/r/r1�serialize_cookie_date"szSession.serialize_cookie_datecCs�|dkr|j}|dkr"t�d�}nBt|t�r:t��|}n*t|t�rJ|}n|dk	rdtdt|j���||_|jr||j	|jkr�|j
|j|j	<|dkr�d|j|j	d<dS|�|�|j|j	d<|S)NFi���Tz'Invalid argument for cookie_expires: %sr<r�)r}r
�
fromtimestampr�r�utcnow�
ValueError�reprrrrzrIr�)r0r�Zexpires_dater/r/r1r�)s&

zSession._set_cookie_expirescCsH|��|j|jjdd�}t|t�s0|�d�}||jd<||jd<dS)Nr<)�header�latin1�
cookie_out�
set_cookie)r�rrrz�outputr�rMrKrx)r0r�r�r/r/r1�_update_cookie_out?s


zSession._update_cookie_outc
Cs\y|jrd|j|jd<Wn<tjk
rV}zdt|�kr<�t�d�Wdd}~XYnXdS)NTr�zInvalid Attribute httponlyz'Python 2.6+ is required to use httponly)r�rrrzrr�rMrr�)r0r�r/r/r1r�GszSession._set_cookie_http_onlycCs6t�|_|rd|_d|_|jr2|dk}|j|d�dS)NTF)r�)r:rIr��
last_accessedr|r�)r0�set_newZscr/r/r1r�PszSession._create_idcCs|dS)Nrtr/)r0r/r/r1�createdZszSession.createdcCs||d<|��dS)Nrc)r�)r0r�r/r/r1�_set_domain^szSession._set_domaincCs|dS)Nrcr/)r0r/r/r1�_get_domainbszSession._get_domaincCs||d<|��dS)Nrd)r�)r0r�r/r/r1�	_set_pathgszSession._set_pathcCs|�dd�S)NrdrE)r�)r0r/r/r1�	_get_pathkszSession._get_pathcCs�|p
|��}|jrr|j\}}tt�|��d|�}t�|j|j|d|j	�
��}|j�|�}|t|j	�
||��S|j�|�}t|�SdS)z0Serialize, encipher, and base64 the session dictNr)�copyr�r�r�os�urandomr�generateCryptoKeysr�r��getKeyLengthr��dumpsZ
aesEncrypt)r0�session_dataZ	nonce_len�nonce_b64len�noncer��datar/r/r1�
_encrypt_dataps
zSession._encrypt_datacCsn|jrZ|j\}}|d|�}t�|j|j|d|j���}t||d��}|j�||�}nt|�}|j	�
|�S)zIBase64, decipher, then un-serialize the data for the session
        dictNr)r�r�rr�r�r�r�rZ
aesDecryptr��loads)r0r��__r�r�r��payloadr�r/r/r1�
_decrypt_data�s
zSession._decrypt_datacCs0d|jd<t��td�}|�|�|��dS)NTr�im)rxr
r�rr�r�)r0r�r/r/r1�_delete_cookie�s

zSession._delete_cookiecCs|jr|��|��dS)zXDeletes the session from the persistent storage, and sends
        an expired cookie outN)r|r�ri)r0r/r/r1�delete�szSession.deletecCs"|��d|_|��|��dS)zWInvalidates this session, creates a new session id, returns
        to the is_new stateTN)rirr�r�)r0r/r/r1r��szSession.invalidatec	Cs`|j|jf|jdd�|j��|_t��}|jr8d|jd<|j��d}z�|�	�y>|jd}|dk	rt|j
rt|�|�}|dkr�||d�}d|_Wn(t
tfk
r�||d�}d|_YnX|dks�t|�dkr�||d�}d|_|jdk	r�||d	|jkr�d}n@|j�sd	|k�rd|_n
|d	|_||d	<|�|�|��|_Wd|j��X|�r\|��dS)
z8Loads the data from this session from persistent storageF)ry�digest_filenamesTr��sessionN)rtrsr	rs)rvrIryrw�	namespacerHr|rxZacquire_read_lockrir�r�r��KeyError�	TypeErrorrZrqr�rjr�r�Zrelease_read_lockr�)r0�nowZ	timed_outr�r/r/r1r��sN








zSession.loadcCs�|r|js|jsdSt|d�r,|jj|jkrL|j|jf|jdd�|j��|_|jjdd�zV|rpt	|j
���}nt	|���}|jr�|�
|�}|s�d|jkr�|jd=n
||jd<Wd|j��X|jr�|jr�d|jd<dS)	z�Saves the data for this session to persistent storage

        If accessed_only is True, then only the original data loaded
        at the beginning of the request will be saved, with the updated
        last accessed time.

        Nr�F)ryr�T)rNr�r�)r�r{�hasattrr�rIrvryrw�acquire_write_lock�dictr��itemsr�r��release_write_lockr|rx)r0�
accessed_onlyr�r/r/r1�save�s*


zSession.savecCs|��|�|j�dS)zURevert the session to its original state from its first
        access in the requestN)rirjr�)r0r/r/r1�revertszSession.revertcCs|jdd�dS)z�
            creates a new session id, retains all session data

            Its a good security practice to regnerate the id after a client
            elevates privileges.

        F)r�N)r�)r0r/r/r1�
regenerate_idszSession.regenerate_idcCs|j��dS)a@Locks this session against other processes/threads.  This is
        automatic when load/save is called.

        ***use with caution*** and always with a corresponding 'unlock'
        inside a "finally:" block, as a stray lock typically cannot be
        unlocked without shutting down the whole application.

        N)r�r�)r0r/r/r1�lock"s	zSession.lockcCs|j��dS)a$Unlocks this session against other processes/threads.  This
        is automatic when load/save is called.

        ***use with caution*** and always within a "finally:" block, as
        a stray lock typically cannot be unlocked without shutting down
        the whole application.

        N)r�r�)r0r/r/r1�unlock-s	zSession.unlock)N)T)T)N)F)"r4r5r6r7rrQr~r�r��staticmethodr�r�r�r�r��propertyr�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r/r/r/r1r,ssF+a


	




?
*
c@s�eZdZdZdddddddddddeddd	fd
d�Zdd
�Zee�Zdd�Zee�Zdd�Z	dd�Z
ee
e	�Zdd�Zdd�Z
ee
e�Zd"dd�Zdd�Zdd�Zdd�Zd d!�ZdS)#�
CookieSessiona�Pure cookie-based session

    Options recognized when using cookie-based sessions are slightly
    more restricted than general sessions.

    :param key: The name the cookie should be set to.
    :param timeout: How long session data is considered valid. This is used
                    regardless of the cookie being present or not to determine
                    whether session data is still valid.
    :type timeout: int
    :param save_accessed_time: Whether beaker should save the session's access
                               time (True) or only modification time (False).
                               Defaults to True.
    :param cookie_expires: Expiration date for cookie
    :param cookie_domain: Domain to use for the cookie.
    :param cookie_path: Path to use for the cookie.
    :param data_serializer: If ``"json"`` or ``"pickle"`` should be used
                              to serialize data. Can also be an object with
                              ``loads` and ``dumps`` methods. By default
                              ``"pickle"`` is used.
    :param secure: Whether or not the cookie should only be sent over SSL.
    :param httponly: Whether or not the cookie should only be accessible by
                     the browser not by JavaScript.
    :param encrypt_key: The key to use for the local session encryption, if not
                        provided the session will not be encrypted.
    :param validate_key: The key used to sign the local encrypted session
    :param invalidate_corrupt: How to handle corrupt data when loading. When
                               set to True, then corrupt data will be silently
                               invalidated and a new session created,
                               otherwise invalid data will cause an exception.
    :type invalidate_corrupt: bool
    :param crypto_type: The crypto module to use.
    :param samesite: SameSite value for the cookie -- should be either 'Lax',
                     'Strict', or None.
    zbeaker.session.idNTrEFrrmrnc
Kstj|||d�|��t|�|_|r6|jjs6td��||_||_||_	||_
||_||_|	|_
t|
�|_d|jd<|
|_||_||_||_|�|�y|d}Wntk
r�d}YnX|	dkr�td��|r�|s�td��yt|	|d	�|_Wn&tjk
�rt|	dd	�|_YnXt�|d
<d|_|j|jk�r|j|jjdk	�rd|_y4|j|jj}|tk�rptd��|�|� |��WnLt!k
�r�}z,|j�r�t"�#d
|j$|f�|�%�n�Wdd}~XYnX|j	dk	�rt&�&�}|�'d|�}|||j	k�r|��|�(�|_)|�*�dS)N)rfrgzJNo AES library is installed, can't generate encrypted cookie-only Session.Fr�rrr<z2No validate_key specified for Cookie only Session.z#timeout requires save_accessed_time)rR�_idTzInvalid signaturezjInvalidating corrupt session %s; error was: %s.  Set invalidate_corrupt=False to propagate this exception.rs)+rbrQrirr�Zhas_aesrrxrzrqr{r}r�r�rr�r�r�r�r�r~r�rr+rrrr�r:r�r�r-rjr�r�rr�rIr�rHr�r�r��_create_cookie)r0rxrzrqr�r}rfrgr�r�r�r�r�r�r�r�r��kwargsr�r�r�r�Zlast_accessed_timer/r/r1rQ]sz





"


zCookieSession.__init__cCs|dS)Nrtr/)r0r/r/r1r��szCookieSession.createdcCs|dS)Nr�r/)r0r/r/r1rI�szCookieSession.idcCs||d<dS)Nrcr/)r0r�r/r/r1r��szCookieSession._set_domaincCs|dS)Nrcr/)r0r/r/r1r��szCookieSession._get_domaincCs||d<dS)Nrdr/)r0r�r/r/r1r��szCookieSession._set_pathcCs|dS)Nrdr/)r0r/r/r1r��szCookieSession._get_pathcCs8|r|js|jsdS|r,|��|�|j�|��dS)z5Saves the data for this session to persistent storageN)r�r{rirjr�r�)r0r�r/r/r1r��szCookieSession.savecCs|�dd�dS)z7Delete the 'expires' attribute on this Session, if any.�_expiresN)�pop)r0r/r/r1�expire�szCookieSession.expirecCs2d|krt��|d<d|kr&t�|d<t��|d<|��}t|�dkrNtd��||j|j<d|krl|d}nd}|�|�}|dk	r�||d<|jr�|j|j|jd<|j	r�d|j|jd	<|j
r�|j
|j|jd
<|��|�dd�|j|jd
<|j|jj
dd�}t|t��s|�d�}||jd<d|jd<dS)Nrtr�rsi�z!Cookie value is too long to storer�r�Tr�r�rdrEr�r<)r�r�r�r�)rHr:r�rZrrrrzr�r�r�r�r�r�r�r�rMrKrx)r0r\r�r�r/r/r1r��s8




zCookieSession._create_cookiecCs|��|��dS)z(Delete the cookie, and clear the sessionN)r�ri)r0r/r/r1r��szCookieSession.deletecCs|��t�|d<dS)z*Clear the contents and start a new sessionr�N)rir:)r0r/r/r1r�szCookieSession.invalidate)F)r4r5r6r7rrQr�r�rIr�r�r�r�r�r�r�r�r�r�r�r/r/r/r1r�9s,#R


	%r�c@s�eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zd d!�Zd"d#�Zd$d%�Zd&S)'�
SessionObjecta+Session proxy/lazy creator

    This object proxies access to the actual session object, so that in
    the case that the session hasn't been used before, it will be
    setup. This avoid creating and loading the session from persistent
    storage unless its actually used during the request.

    cKs,||jd<||jd<d|jd<i|jd<dS)N�_params�_environ�_sess�_headers)�__dict__)r0�environ�paramsr/r/r1rQs


zSessionObject.__init__cCs�|jddkr�|jd}|jd}ddi|jd<}|�d�|d<|�d	d�}|dkrp|�d
�dkrjt}q�t}nt|t�s�td|��||f|�|jd<|jdS)z'Lazy initial creation of session objectr�Nr�r�r�r�ZHTTP_COOKIErrZ
session_classruzNot a Session: )r�r�r�r,�
issubclass�AssertionError)r0r�r��reqZsession_clsr/r/r1�_sessions


zSessionObject._sessioncCst|��|�S)N)�getattrr�)r0�attrr/r/r1�__getattr__-szSessionObject.__getattr__cCst|��||�dS)N)�setattrr�)r0r�r�r/r/r1�__setattr__0szSessionObject.__setattr__cCs|���|�dS)N)r��__delattr__)r0r�r/r/r1r�3szSessionObject.__delattr__cCs|��|S)N)r�)r0rzr/r/r1�__getitem__6szSessionObject.__getitem__cCs||��|<dS)N)r�)r0rzr�r/r/r1�__setitem__9szSessionObject.__setitem__cCs|���|�dS)N)r��__delitem__)r0rzr/r/r1r�<szSessionObject.__delitem__cCs|����S)N)r��__repr__)r0r/r/r1r�?szSessionObject.__repr__cCst|�����S)z!Only works for proxying to a dict)�iterr��keys)r0r/r/r1�__iter__BszSessionObject.__iter__cCs||��kS)N)r�)r0rzr/r/r1�__contains__FszSessionObject.__contains__cCs||��kS)N)r�)r0rzr/r/r1r�IszSessionObject.has_keycCs.|jd}tifd|d�|��}|jr*dS|S)z"Loads a session given a session IDr�F)r|rIN)r�r,r�)r0rIr�r�r/r/r1�	get_by_idLs

zSessionObject.get_by_idcCsd|jd<dS)NT�_dirty)r�)r0r/r/r1r�TszSessionObject.savecCsd|jd<|����dS)NTr)r�r�r�)r0r/r/r1r�Ws
zSessionObject.deletecCsp|jd�d�r|����nN|jd�dd�rX|��rF|����ql|��jdd�n|��rl|����dS)a�Persist the session to the storage

        Always saves the whole session if save() or delete() have been called.
        If they haven't:

        - If autosave is set to true, saves the the entire session regardless.
        - If save_accessed_time is set to true or unset, only saves the updated
          access time.
        - If save_accessed_time is set to false, doesn't save anything.

        r��autor�T)r�N)r�r�r�r��dirty)r0r/r/r1�persist[szSessionObject.persistcCs|j�dd�S)z3Returns True if save() or delete() have been calledrF)r�r�)r0r/r/r1rrszSessionObject.dirtycCs|jddk	S)z4Returns whether or not the session has been accessedr�N)r�)r0r/r/r1�accessedvszSessionObject.accessedN)r4r5r6r7rQr�r�r�r�r�r�r�r�r�rr�rr�r�rrrr/r/r/r1r�s&r�)1�_compatrrrrrrrr�rHr
rZ
beaker.cryptorrVr
rXrrrr�beakerrrZbeaker.cacherZbeaker.exceptionsrrZ
beaker.cookierr�r��__all__�objectr.r-r8r:�ImportErrorrJr�r;r+r�rbr,r�r�r/r/r/r1�<module>s>$ 
	 IS

Youez - 2016 - github.com/yon3zu
LinuXploit