March 3, 2018
It is becoming common knowledge that you should use two-factor authentication
whenever possible. Some services allow the use of TOTP apps on your smartphone,
some only want so send you SMS codes .. and others use proprietary tokens.
...April 6, 2017
I used KeePassX to generate a new, 24 character password with all character types enabled. This was supposed to replace the default ADMIN/ADMIN
combination for IPMI on my ESXi box. So I opened the appropriate page through a browser, navigated to Configuration > Users
and modified the ADMIN user.
It happily accepted the new password with no warning whatsoever and I logged out to test it .. oh well .. it didn’t work.
...January 14, 2017
package.json
#
For a while now I’ve been using Visual Studio Code for a few JavaScript / TypeScript projects. Most of these projects come with a package.json
file, which documents various aspects of the project. A tiny example of such a file:
{
"name": "foo",
"version": "1.2.3",
"description": "A packaged foo fooer for fooing foos",
"main": "foo.js"
}
npm version
#
There’s that interesting property version
. In conjunction with the npm version
command it allows for very easy version bumping with automatic tagging. There are three useful keywords for that command to bump semver-compliant versions: major
, minor
and patch
. You can also set a specific version directly but refer to the documentation on npm for details. Observe:
...March 24, 2016
I dug a little further after my last post and stumbled upon this excellent blog post. It turns out that using the libpam-oath module for two-factor authentication is a lot easier than the challenge-response module and it works rather fabulously.
I will document the steps I took here. Again, all credit goes to the author of that blog post above - I mainly followed his explanations and links.
...March 23, 2016
First off: this does not work as I wanted it to work .. it has some interesting implications though.
The idea
#
I am using a YubiKey NEO for various things. It holds my PGP keys in its secure element and has the YubiKey slots configured to use HMAC-SHA1 challenge response and static password. You can for example unlock your KeePass(X) database using OATH-HOTP or the challenge-response mechanism.
...