General

  • Target

    https://gofile.io/d/aoSliB

  • Sample

    240222-nkhlasgh56

Score
10/10

Malware Config

Extracted

Path

C:\Windows\Temp\dbase\Lib\site-packages\Crypto\Cipher\__pycache__\_mode_siv.cpython-311.pyc

Ransom Note
� �����/�e!8����������������������s������d�Z�dgZddlmZmZ�ddlmZmZ�ddlm Z �ddl m Z m Z �ddl mZ�ddlmZ�dd lmZ��G�d ��de������������Zd ��Zd S�) z- Synthetic Initialization Vector (SIV) mode. �SivMode�����)�hexlify� unhexlify)�bord� _copy_bytes)� is_buffer)� long_to_bytes� bytes_to_long)�_S2V)�BLAKE2s)�get_random_bytesc�������������������sX�����e�Zd�ZdZd��Zd��Zd��Zd��Zd��Zd��Z d��Z d ��Z d ��Z dd �Z dd �Zd S�)r���a���Synthetic Initialization Vector (SIV). This is an Authenticated Encryption with Associated Data (`AEAD`_) mode. It provides both confidentiality and authenticity. The header of the message may be left in the clear, if needed, and it will still be subject to authentication. The decryption step tells the receiver if the message comes from a source that really knowns the secret key. Additionally, decryption detects if any part of the message - including the header - has been modified or corrupted. Unlike other AEAD modes such as CCM, EAX or GCM, accidental reuse of a nonce is not catastrophic for the confidentiality of the message. The only effect is that an attacker can tell when the same plaintext (and same associated data) is protected with the same key. The length of the MAC is fixed to the block size of the underlying cipher. The key size is twice the length of the key of the underlying cipher. This mode is only available for AES ciphers. +--------------------+---------------+-------------------+ | Cipher | SIV MAC size | SIV key length | | | (bytes) | (bytes) | +====================+===============+===================+ | AES-128 | 16 | 32 | +--------------------+---------------+-------------------+ | AES-192 | 16 | 48 | +--------------------+---------------+-------------------+ | AES-256 | 16 | 64 | +--------------------+---------------+-------------------+ See `RFC5297`_ and the `original paper`__. .. _RFC5297: https://tools.ietf.org/html/rfc5297 .. _AEAD: http://blog.cryptographyengineering.com/2012/05/how-to-choose-authenticated-encryption.html .. __: http://www.cs.ucdavis.edu/~rogaway/papers/keywrap.pdf :undocumented: __init__ c�����������������s0����|j���������|�_��������� �||�_��������||�_��������t����������|������������dvrt ����������dt����������|������������z���������������|�Wt ����������|������������st ����������d�������������t����������|������������dk����rt ����������d�������������t����������d�d�|������������|�_�������� �t����������|������������dz��}d�|�_ ��������t����������|d�|����������||�j���������������������|�_ ��������||d�����������|�_ ���������|j ��������|d�|����������|j��������fi�|���g�d�|�_��������d�S�) N)� ����0����@���zIncorrect key length (%d bytes)z?When provided, the nonce must be bytes, bytearray or memoryviewr���z*When provided, the nonce must be non-empty����)� ciphermod� cipher_params��update�encrypt�decrypt�digest�verify)� block_size�_factory�_cipher_params�len� ValueErrorr���� TypeErrorr����nonce�_mac_tagr ����_kdf�_subkey_cipher�new�MODE_ECB�_next)�self�factory�keyr����kwargs� subkey_sizes��� �fC:\Users\Admin\Downloads\usdt-flash\usdt-flash\Data\dbase\Lib\site-packages\Crypto\Cipher\_mode_siv.py�__init__zSivMode.__init__[���sD�����!�,���@��� �$��� �s�8�8�<� '�� K��>��S���I�J�J� J� �� ��U�#�#�� c�� a�b�b�b��5�z�z�Q��� O� �!M�N�N�N�$�T�4��7�7�D�J� ���#�h�h�!�m� ��� ���\�k�\�*�#*�'+�':�<��<��<�� ��"�+�,�,�/���� �� �C� �� �%�w�'7�B�B�6�B�B�B�*��*��*�� � � �����c�����������������s������t����������|������������}|dz��}�|�j��������j��������|�j��������|�j��������j��������f|dd�|�j����������S�)z*Create a new CTR cipher from V in SIV model �������������r-���)� initial_valuer���)r ���r���r#���r"����MODE_CTRr���)r&����v�v_int�qs��� r+����_create_ctr_cipherzSivMode._create_ctr_cipher����sb��������a� � �� �6� 6�� �t�}� ��'��M�*�+��#$�� +��+� ��)� +��+�� +r-���c�����������������sx�����d|�j���������vrt����������d�������������g�d�|�_���������|�j�����������������������������|������������S�)a���Protect one associated data component For SIV, the associated data is a sequence (*vector*) of non-empty byte strings (*components*). This method consumes the next component. It must be called once for each of the components that constitue the associated data. Note that the components have clear boundaries, so that: >>> cipher.update(b"builtin") >>> cipher.update(b"securely") is not equivalent to: >>> cipher.update(b"built") >>> cipher.update(b"insecurely") If there is no associated data, this method must not be called. :Parameters: component : bytes/bytearray/memoryview The next associated data component. r���z<update() can only be called immediately after initializationr���)r%���r���r!���r���)r&���� components��� r+���r���zSivMode.update����sZ������4� �4�:� %�� E���D��E��E�� E�*��*��*�� ���y�*�*� �*�*�*r-���c�����������������s �����t����������d�������������)z� For SIV, encryption and MAC authentication must take place at the same point. This method shall not be used. Use `encrypt_and_digest` instead. zEencrypt() not allowed for SIV mode. Use encrypt_and_digest() instead.�r���)r&���� plaintexts��� r+���r���zSivMode.encrypt��������������=��>��>�� >r-���c�����������������s �����t����������d�������������)z� For SIV, decryption and verification must take place at the same point. This method shall not be used. Use `decrypt_and_verify` instead. zEdecrypt() not allowed for SIV mode. Use decrypt_and_verify() instead.r5���)r&���� ciphertexts��� r+���r���zSivMode.decrypt����r7���r-���c�����������������s������d|�j���������vrt����������d�������������dg|�_���������|�j���������|�j�������������������������������������������|�_��������|�j��������S�)z�Compute the *binary* MAC tag. The caller invokes this function at the very end. This method returns the MAC that shall be sent to the receiver, together with the ciphertext. :Return: the MAC, as a byte string. r���zAdigest() cannot be called when decrypting or validating a message)r%���r���r ���r!����derive�r&���s��� r+���r���zSivMode.digest����sZ������� �4�:� %�� 8���7��8��8�� 8��Z�� � �=�� /� �I�.�.�.�.�D�M��}�r-���c�����������������sd�����d����������������������d��|������������������������������������D���������������������������S�)z�Compute the *printable* MAC tag. This method is like `digest`. :Return: the MAC, as a hexadecimal string. ��c�����������������s2�����g�|�]}d�t����������|������������z����S�)z%02x)r���)�.0�xs��� r+���� <listcomp>z%SivMode.hexdigest.<locals>.<listcomp>����s#������@�@�@�Q���a���(�@�@�@r-���)�joinr���r:���s��� r+���� hexdigestzSivMode.hexdigest����s/��������A�A�@�@�$�-�-�-�-�@�@�@�A�A�Ar-���c�����������������s�����d|�j���������vrt����������d�������������dg|�_���������|�j���������|�j�������������������������������������������|�_��������t ����������d������������}t ����������j��������d||�j���������������������}t ����������j��������d||�������������}|�����������������������������������|�����������������������������������k����rt����������d�������������dS�)a(��Validate the *binary* MAC tag. The caller invokes this function at the very end. This method checks if the decrypted message is indeed valid (that is, if the key is correct) and it has not been tampered with while in transit. :Parameters: received_mac_tag : bytes/bytearray/memoryview This is the *binary* MAC, as received from the sender. :Raises ValueError: if the MAC does not match. The message has been tampered with or the key is incorrect. r���z3verify() cannot be called when encrypting a messageN���������)� digest_bitsr(����datazMAC check failed) r%���r���r ���r!���r9���r ���r ���r#���r���r���)r&����received_mac_tag�secret�mac1�mac2s��� r+���r���zSivMode.verify����s�������"� �4�:� %�� :���9��:��:�� :��Z�� � �=�� /� �I�.�.�.�.�D�M�!�"�%�%���{�s��T�]�K�K�K���{�s��=M�N�N�N�� �=�=�=�=�D�M�M�M�M� )�� 1��/�0�0� 0� 1�� 1r-���c�����������������sJ�����|�����������������������t����������|�������������������������dS�)aW��Validate the *printable* MAC tag. This method is like `verify`. :Parameters: hex_mac_tag : string This is the *printable* MAC, as received from the sender. :Raises ValueError: if the MAC does not match. The message has been tampered with or the key is incorrect. N)r���r���)r&���� hex_mac_tags��� r+���� hexverifyzSivMode.hexverify��s&������� �+�+�I�k�*�*�+�+�+�+�+r-���Nc�����������������s�����d|�j���������vrt����������d�������������dg|�_���������t����������|�d������������r|�j�����������������������������|�j���������������������|�j�����������������������������|�������������|�j�������������������������������������������|�_��������|����������������������|�j��������������������}|� ��������������������||�������������|�j��������fS�)a\��Perform encrypt() and digest() in one step. :Parameters: plaintext : bytes/bytearray/memoryview The piece of data to encrypt. :Keywords: output : bytearray/memoryview The location where the ciphertext must be written to. If ``None``, the ciphertext is returned. :Return: a tuple with two items: - the ciphertext, as ``bytes`` - the MAC tag, as ``bytes`` The first item becomes ``None`` when the ``output`` parameter specified a location for the result. r���z@encrypt() can only be called after initialization or an update()r���r�����output) r%���r����hasattrr!���r���r���r9���r ���r3���r���)r&���r6���rL����ciphers��� r+����encrypt_and_digestzSivMode.encrypt_and_digest��s�������(� �D�J� &�� >���=��>��>�� >���Z�� �� �4�� !� !�� )� �I� (� (�T�Z� (� (� (� � �#�#��#�#�#�� �*�*�*�*�� ��7�7���7�7���7�7�i��7�7�7���F�Fr-���c�����������������sv����d|�j���������vrt����������d�������������dg|�_���������|����������������������|������������|�_��������|�j�����������������������������||�������������}t ����������|�d������������r|�j�����������������������������|�j���������������������|�j�����������������������������|�|n|�������������|�� ��������������������|�������������|S�)aP��Perform decryption and verification in one step. A cipher object is stateful: once you have decrypted a message you cannot decrypt (or encrypt) another message with the same object. You cannot reuse an object for encrypting or decrypting other data with the same key. This function does not remove any padding from the plaintext. :Parameters: ciphertext : bytes/bytearray/memoryview The piece of data to decrypt. It can be of any length. mac_tag : bytes/bytearray/memoryview This is the *binary* MAC, as received from the sender. :Keywords: output : bytearray/memoryview The location where the plaintext must be written to. If ``None``, the plaintext is returned. :Return: the plaintext as ``bytes`` or ``None`` when the ``output`` parameter specified a location for the result. :Raises ValueError: if the MAC does not match. The message has been tampered with or the key is incorrect. r���z@decrypt() can only be called after initialization or an update()r���rK���r���) r%���r���r3����_cipherr���rM���r!���r���r���r���)r&���r8����mac_tagrL���r6���s��� r+����decrypt_and_verifyzSivMode.decrypt_and_verify6��s�������:� �D�J� &�� D���C��D��D�� D��Z�� ���7�7�w�7�7�� ��L�C�C��F�C�C�C� � �4�� !� !�� )� �I� (� (�T�Z� (� (� (� � �A�A�f�@���&�A�A�A� ���G�����r-���)N)�__name__� __module__� __qualname__�__doc__r,���r3���r���r���r���r���r@���r���rJ���rO���rR�����r-���r+���r���r���1���s���������������'��'�R$*��$*��$*�L +�� +�� +�!+��!+��!+�F >�� >�� >� >�� >�� >������&B��B��B�1��1��1�B ,�� ,�� ,��48��"G��"G��"G�H�>B��,��,��,��,��,r-���c�������������� ���s������ �|����������������������d������������}n1#�t����������$�r$}t����������dt����������|������������z����������������d}~ww�xY�w|����������������������dd������������}t ����������|�|||������������S�)a-��Create a new block cipher, configured in Synthetic Initializaton Vector (SIV) mode. :Parameters: factory : object A symmetric cipher module from `Crypto.Cipher` (like `Crypto.Cipher.AES`). :Keywords: key : bytes/bytearray/memoryview The secret key to use in the symmetric cipher. It must be 32, 48 or 64 bytes long. If AES is the chosen cipher, the variants *AES-128*, *AES-192* and or *AES-256* will be used internally. nonce : bytes/bytearray/memoryview For deterministic encryption, it is not present. Otherwise, it is a value that must never be reused for encrypting message under this key. There are no restrictions on its length, but it is recommended to use at least 16 bytes. r(���zMissing parameter: Nr���)�pop�KeyErrorr����strr���)r'���r)���r(����er���s��� r+����_create_siv_cipherr\���e��s�������88���������� ��8��8��8��-
URLs

https://tools.ietf.org/html/rfc5297

http://blog.cryptographyengineering.com/2012/05/how-to-choose-authenticated-encryption.html

http://www.cs.ucdavis.edu/~rogaway/papers/keywrap.pdf

Targets

    • Target

      https://gofile.io/d/aoSliB

    Score
    10/10
    • Looks up external IP address via web service

      Uses a legitimate IP lookup service to find the infected system's external IP.

MITRE ATT&CK Enterprise v15

Tasks