5 min Networking and Security Python Networking and Security

RFC-6125 TLS, MTLS

Representation and Verification of Domain-Based Application ServiceIdentity within Internet Public Key Infrastructure Using X.509 (PKIX)Certificates in the Context of Transport Layer Security (TLS) Likewise, during TLSnegotiation, the server presents its notion of the service’s identityin the form of a public-key certificate that was issued by acertification authority (CA) in the context of the Internet PublicKey […]

RFC-6125 TLS, MTLS Read Post »

Python Networking and Security

SSL Self signed OpenSSL (and online cryptography with key)

https – How to create self signed SSL certificate for test purposes? – Stack Overflow You can do this via openssl: Install openssl package (if you are using Windows, download binaries here). Generate private key: openssl genrsa 2048 > private.pem Generate the self signed certificate: openssl req -x509 -days 1000 -new -key private.pem -out public.pem If needed, create

,

SSL Self signed OpenSSL (and online cryptography with key) Read Post »

5 min Azure Python Networking and Security

5 min Security Management Identity Azure

Scenario:Before: VM1 code, config, user cred/connection to SQL1New: Azure keyvault for storing, but VM1 needs access to key vault, hm…better way? No keys? Kan we have zero secrets in the code?Azure Managed Identity System assigned management identity User assigned management identity System assigned management identity (1 to 1) VM1(source)->Identity->System assigned->enable SQL1 (target)-> IAM->Add role assignment->

5 min Security Management Identity Azure Read Post »

Python Python Networking and Security

Python for Cyber Security additional resources to learn

The Cyber Defenders Program: https://medium.com/cyberdefenders/search?q=python So the plan is to do the second and third resource first and then move to the next. The first one is a course so…. Second, skip the most of the basic, repeat some from automating the boring stuff: https://automatetheboringstuff.com/ Chapter 5 – Dictionaries and Structuring Data = checkChapter 10

Python for Cyber Security additional resources to learn Read Post »

Scroll to Top