If you have encrypted your website, API, Telnet server, or other service with TLS (SSL), good for you!
Now, do you know when those certificates will expire? If they expire without renewal, your service could become unavailable without warning.
In the past, to find expiration dates for digital certificates on IBM i, you’d either have to look in the Digital Certificate Manager (DCM), call the Retrieve Certificate Information (QYCURTVCI, QycuRetrieveCertificateInfo) API, or keep extremely good notes!
CERTIFICATE_INFO, an IBM i service recently delivered by IBM, solves all this. This SQL table function, documented here, returns a result table that contains information about server or Certificate Authority (CA) certificates, including their expiration date.
Here’s how to use CERTIFICATE_INFO to find expiring certificates.
Read more →
Code for IBM i Fridays: A Free Seiden Community Event
/in VS Code for i /by Alan SeidenDecember 2024 Update
You’ll find up-to-date information on Code for i Fridays—such as the next meeting date and highlights of past meetings—on this page.
The Code for i extension to Visual Studio Code (VS Code) has become ever more popular and powerful. It’s also free and open source.
Seiden Group has been hosting online gatherings to share, learn, solve problems, and contribute improvements to Code for i. Hosted by Alan Seiden, the meetings often include guests such as Liam Allan, the originator of Code for i.
Read more →
Which PHP Versions Get Critical Security Updates?
/0 Comments/in PHP /by Alan SeidenEach version of PHP (7.4, 8.0, 8.1, 8.2, 8.3, etc.) has three years of support before it is considered end of life. For two years, it gets bug fixes and all security fixes. In the third year, it gets only critical security fixes. After that, nothing!
Read more →
How to Protect Secure Websites & APIs from Certificates Expiring
/1 Comment/in API & Web Security /by Alan SeidenNow, do you know when those certificates will expire? If they expire without renewal, your service could become unavailable without warning.
In the past, to find expiration dates for digital certificates on IBM i, you’d either have to look in the Digital Certificate Manager (DCM), call the Retrieve Certificate Information (QYCURTVCI, QycuRetrieveCertificateInfo) API, or keep extremely good notes!
CERTIFICATE_INFO, an IBM i service recently delivered by IBM, solves all this. This SQL table function, documented here, returns a result table that contains information about server or Certificate Authority (CA) certificates, including their expiration date.
Here’s how to use CERTIFICATE_INFO to find expiring certificates.
Read more →
Node.js v20 and Other Updated Packages Require New IBM i Repositories
/0 Comments/in Open Source /by Alan SeidenA notable example is Node.js v20. When we hear users say, “I don’t see Node.js v20 listed in available packages, and yum returns ‘No package nodejs20 available‘,” the reason invariably is that the new repositories,
ibmi-baseandibmi-release, have not been installed.Read more →
What IBM i Users Should Check when Learning of an Open Source Security Vulnerability
/0 Comments/in Open Source /by Alan Seidenlibwebp, which is used by PHP’s image-handlinggdextension.My first step was to find a reputable source for details. According to this trusted article about the vulnerability, the issue affected only
libwebpversions 1.3.1 and earlier. I checked our own system and found we had a patched version from IBM, so we were safe. The client was, too.Here is the procedure you can use for checking the version of this or any other open source package on IBM i. Read more →
APCu Extension Added to Seiden PHP+
/0 Comments/in PHP /by Alan SeidenThe APC User Cache (APCu) extension is an “in-memory key-value store for PHP” that evolved from the old APC extension (minus the opcode caching). We added APCu at the request of a Linux PHP user who migrated their PHP application to the IBM i to simplify their architecture.
Read more →
Finding Security Fixes for Apache on IBM i
/0 Comments/in Apache, APIs & Web Services /by Alan SeidenIBM Support’s PCI Compliance web page is a resource we use to help our clients protect their systems.
Even if your organization does not process, store, or transmit credit card information, applying the PTFs recommended for PCI compliance constitutes a general best practice for IBM i web and API security.
Read more →
Our Favorite ibm_db2 Settings for PHP
/0 Comments/in PHP /by Alan SeidenTo help ourselves as well as others, we updated the PHP.net manual to describe each
ibm_db2.i5_*setting. This blog post links to that manual page and highlights a few of our favorite ibm_db2 settings.Read more →
Read-only Mode in VS Code for IBM i
/6 Comments/in VS Code for i /by Alan SeidenRead more →
URL Rewriting with Apache Web Server
/0 Comments/in Apache /by Alan SeidenThis article offers a small taste of what URL Rewriting can do.
Read more →