Created
November 4, 2022 10:20
-
-
Save adrianlzt/d940483d4450caa8f371ae6ea1234815 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim:fenc=utf-8 | |
# | |
# Distributed under terms of the MIT license. | |
""" | |
Extracting the value of an ssh key of AWX. | |
In the database, extract the encrypted value of the ssh key and its id. | |
credential_type_id=2 is the ssh key type. | |
select id,inputs->'ssh_key_data' as ssh_key from main_credential where name = 'NAME_OF_THE_KEY' and credential_type_id=2; | |
Use those values to set id and encrypted_value. | |
Set also the secret_key value from the SECRET key file. | |
""" | |
import base64 | |
import hashlib | |
from cryptography.fernet import Fernet, InvalidToken | |
from cryptography.hazmat.backends import default_backend | |
from django.utils.encoding import smart_str, smart_bytes | |
class Fernet256(Fernet): | |
'''Not techincally Fernet, but uses the base of the Fernet spec and uses AES-256-CBC | |
instead of AES-128-CBC. All other functionality remain identical. | |
''' | |
def __init__(self, key, backend=None): | |
if backend is None: | |
backend = default_backend() | |
key = base64.urlsafe_b64decode(key) | |
if len(key) != 64: | |
raise ValueError( | |
"Fernet key must be 64 url-safe base64-encoded bytes." | |
) | |
self._signing_key = key[:32] | |
self._encryption_key = key[32:] | |
self._backend = backend | |
def decrypt_value(encryption_key, value): | |
raw_data = value[len('$encrypted$'):] | |
# If the encrypted string contains a UTF8 marker, discard it | |
utf8 = raw_data.startswith('UTF8$') | |
if utf8: | |
raw_data = raw_data[len('UTF8$'):] | |
algo, b64data = raw_data.split('$', 1) | |
if algo != 'AESCBC': | |
raise ValueError('unsupported algorithm: %s' % algo) | |
encrypted = base64.b64decode(b64data) | |
f = Fernet256(encryption_key) | |
value = f.decrypt(encrypted) | |
return smart_str(value) | |
def get_encryption_key(field_name, pk=None, secret_key=None): | |
''' | |
Generate key for encrypted password based on field name, | |
``settings.SECRET_KEY``, and instance pk (if available). | |
:param pk: (optional) the primary key of the model object; | |
can be omitted in situations where you're encrypting a setting | |
that is not database-persistent (like a read-only setting) | |
''' | |
h = hashlib.sha512() | |
h.update(smart_bytes(secret_key)) | |
if pk is not None: | |
h.update(smart_bytes(str(pk))) | |
h.update(smart_bytes(field_name)) | |
return base64.urlsafe_b64encode(h.digest()) | |
secret_key = "_VALUE_FROM_/var/lib/awx/etc/awx/SECRET_KEY" | |
id = "_VALUE_FROM_THE_ID_DATABASE" | |
# should start with $encrypted$UTF8$AESCBC$ | |
encrypted_value = "_VALUE_FROM_THE_DATABASE" | |
field_name = "ssh_key_data" | |
key = get_encryption_key( | |
field_name, | |
id, | |
secret_key=secret_key | |
) | |
decrypted_value = decrypt_value(key, encrypted_value) | |
print(decrypted_value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[source]] | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
name = "pypi" | |
[packages] | |
cryptography = "==2.8" | |
django = "==2.2.11" | |
[dev-packages] | |
[requires] | |
python_version = "3.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_meta": { | |
"hash": { | |
"sha256": "d443eaf101083eda1985683f41a7c0f0ef4c715542f22e8f9b48323fe955c0b8" | |
}, | |
"pipfile-spec": 6, | |
"requires": { | |
"python_version": "3.8" | |
}, | |
"sources": [ | |
{ | |
"name": "pypi", | |
"url": "https://pypi.org/simple", | |
"verify_ssl": true | |
} | |
] | |
}, | |
"default": { | |
"cffi": { | |
"hashes": [ | |
"sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5", | |
"sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef", | |
"sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104", | |
"sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426", | |
"sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405", | |
"sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375", | |
"sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a", | |
"sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e", | |
"sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc", | |
"sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf", | |
"sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185", | |
"sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497", | |
"sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3", | |
"sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35", | |
"sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c", | |
"sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83", | |
"sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21", | |
"sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca", | |
"sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984", | |
"sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac", | |
"sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd", | |
"sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee", | |
"sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a", | |
"sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2", | |
"sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192", | |
"sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7", | |
"sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585", | |
"sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f", | |
"sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e", | |
"sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27", | |
"sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b", | |
"sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e", | |
"sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e", | |
"sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d", | |
"sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c", | |
"sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415", | |
"sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82", | |
"sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02", | |
"sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314", | |
"sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325", | |
"sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c", | |
"sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3", | |
"sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914", | |
"sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045", | |
"sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d", | |
"sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9", | |
"sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5", | |
"sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2", | |
"sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c", | |
"sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3", | |
"sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2", | |
"sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8", | |
"sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d", | |
"sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d", | |
"sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9", | |
"sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162", | |
"sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76", | |
"sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4", | |
"sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e", | |
"sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9", | |
"sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6", | |
"sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b", | |
"sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01", | |
"sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0" | |
], | |
"version": "==1.15.1" | |
}, | |
"cryptography": { | |
"hashes": [ | |
"sha256:02079a6addc7b5140ba0825f542c0869ff4df9a69c360e339ecead5baefa843c", | |
"sha256:1df22371fbf2004c6f64e927668734070a8953362cd8370ddd336774d6743595", | |
"sha256:369d2346db5934345787451504853ad9d342d7f721ae82d098083e1f49a582ad", | |
"sha256:3cda1f0ed8747339bbdf71b9f38ca74c7b592f24f65cdb3ab3765e4b02871651", | |
"sha256:44ff04138935882fef7c686878e1c8fd80a723161ad6a98da31e14b7553170c2", | |
"sha256:4b1030728872c59687badcca1e225a9103440e467c17d6d1730ab3d2d64bfeff", | |
"sha256:58363dbd966afb4f89b3b11dfb8ff200058fbc3b947507675c19ceb46104b48d", | |
"sha256:6ec280fb24d27e3d97aa731e16207d58bd8ae94ef6eab97249a2afe4ba643d42", | |
"sha256:7270a6c29199adc1297776937a05b59720e8a782531f1f122f2eb8467f9aab4d", | |
"sha256:73fd30c57fa2d0a1d7a49c561c40c2f79c7d6c374cc7750e9ac7c99176f6428e", | |
"sha256:7f09806ed4fbea8f51585231ba742b58cbcfbfe823ea197d8c89a5e433c7e912", | |
"sha256:90df0cc93e1f8d2fba8365fb59a858f51a11a394d64dbf3ef844f783844cc793", | |
"sha256:971221ed40f058f5662a604bd1ae6e4521d84e6cad0b7b170564cc34169c8f13", | |
"sha256:a518c153a2b5ed6b8cc03f7ae79d5ffad7315ad4569b2d5333a13c38d64bd8d7", | |
"sha256:b0de590a8b0979649ebeef8bb9f54394d3a41f66c5584fff4220901739b6b2f0", | |
"sha256:b43f53f29816ba1db8525f006fa6f49292e9b029554b3eb56a189a70f2a40879", | |
"sha256:d31402aad60ed889c7e57934a03477b572a03af7794fa8fb1780f21ea8f6551f", | |
"sha256:de96157ec73458a7f14e3d26f17f8128c959084931e8997b9e655a39c8fde9f9", | |
"sha256:df6b4dca2e11865e6cfbfb708e800efb18370f5a46fd601d3755bc7f85b3a8a2", | |
"sha256:ecadccc7ba52193963c0475ac9f6fa28ac01e01349a2ca48509667ef41ffd2cf", | |
"sha256:fb81c17e0ebe3358486cd8cc3ad78adbae58af12fc2bf2bc0bb84e8090fa5ce8" | |
], | |
"index": "pypi", | |
"version": "==2.8" | |
}, | |
"django": { | |
"hashes": [ | |
"sha256:65e2387e6bde531d3bb803244a2b74e0253550a9612c64a60c8c5be267b30f50", | |
"sha256:b51c9c548d5c3b3ccbb133d0bebc992e8ec3f14899bce8936e6fdda6b23a1881" | |
], | |
"index": "pypi", | |
"version": "==2.2.11" | |
}, | |
"pycparser": { | |
"hashes": [ | |
"sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", | |
"sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" | |
], | |
"version": "==2.21" | |
}, | |
"pytz": { | |
"hashes": [ | |
"sha256:222439474e9c98fced559f1709d89e6c9cbf8d79c794ff3eb9f8800064291427", | |
"sha256:e89512406b793ca39f5971bc999cc538ce125c0e51c27941bef4568b460095e2" | |
], | |
"version": "==2022.6" | |
}, | |
"six": { | |
"hashes": [ | |
"sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", | |
"sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" | |
], | |
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", | |
"version": "==1.16.0" | |
}, | |
"sqlparse": { | |
"hashes": [ | |
"sha256:0323c0ec29cd52bceabc1b4d9d579e311f3e4961b98d174201d5622a23b85e34", | |
"sha256:69ca804846bb114d2ec380e4360a8a340db83f0ccf3afceeb1404df028f57268" | |
], | |
"markers": "python_version >= '3.5'", | |
"version": "==0.4.3" | |
} | |
}, | |
"develop": {} | |
} |
If we want to use "uv" as the package manager:
uv pip install asgiref==3.8.1 cffi==1.16.0 cryptography==2.8 django==5.0.6 pycparser==2.22 pytz==2024.1 six==1.16.0 sqlparse==0.5.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To decrypt vault passwords.
The SQL query is like:
And, in the awx_secrets.py file you need to change field_name to: