5 min Logic App

https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-overview#key-terms Azure Logic Apps is a cloud-based platform for creating and running automated workflows that integrate your apps, data, services, and systems. With this platform, you can quickly develop highly scalable integration solutions for your enterprise and business-to-business (B2B) scenarios. Key terms A logic app is the Azure resource you create when you want to […]

TODO Build a Hash Table in Python With TDD Real Python

Build a Hash Table in Python With TDD Real Python https://realpython.com/python-hash-table/ Classic data structure Indexing database tables Caching computed values Implementing sets O(1) Python own hash table dict O(n) or O(1), you might say…. https://stackoverflow.com/questions/9214353/hash-table-runtime-complexity-insert-search-and-delete

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 […]

5 Min DocuWiki

dokuwiki [DokuWiki] DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn’t require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator’s favorite. Built in access controls and authentication connectors make DokuWiki especially useful in […]

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 […]

5 min Azure AD service accounts

Remember 5 min Security Management Identity Azure System assigned management identity User assigned management identity Now Lets look at: Governing Azure AD service accounts There are three types of service accounts in Azure Active Directory (Azure AD): managed identities service principals user accounts employed as service accounts. As you create these service accounts for automated […]

Rabbitmq bidirectional shovel (GET/PUT) from VM1. VM2 server using SSL (VM1 SSL, client)

https://stackoverflow.com/questions/50045150/how-to-configure-rabbitmq-bidirectional-shovel-and-avoid-infinite-loop To simulate the scenario: VM1 setup:Deny inbound AMQP 5672 (NON-SSL) added to FWVM1 initiate connection over AMQP to VM1 (advanced.config file) (uses outbound 5672 to VM2) With two shovel in the advanced config VM2 setup:Allow inbound AMQP 5672 (NON-SSL) added to FWJust listener with empty advanced config Result:We can send data to VM2 from […]

5 min Azure Storage Explorer Queues (access key) Python SDK

What is Azure Queue Storage? Introduction to Azure Queue Storage – Azure Storage | Microsoft Docs Azure Queue Storage is a service for storing large numbers of messages. You access messages from anywhere in the world via authenticated calls using HTTP or HTTPS. A queue message can be up to 64 KB in size. A […]

5 min Azure Storage Explorer blob (Anonymous and SAS) web

Azure Storage Explorer – behandling av skylagring | Microsoft Azure Upload, download, and manage data with Azure Storage Explorer Connect Azure Storage Explorer to a storage account * Storage Explorer is available on Windows, macOS, and Linux * It’s easy to connect to and manage multiple storage accounts. * The interface lets you connect to […]