The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,854 other subscribers

Author Archive

Filippo Valsorda on Twitter: “whoami.filippo.io , the SSH server that knows who you are … Try it out! $ ssh http://whoami.filippo.io”

Posted by jpluimers on 2021/10/20

[Archive.is] Filippo Valsorda on Twitter: “whoami.filippo.io , the SSH server that knows who you are, got some newly refreshed intel! Try it out! $ ssh whoami.filippo.io

The server itself has some HTML with information too whoami.filippo.io redirecting to [WayBack] ssh whoami.filippo.io (source code is at [WayBack] GitHub – FiloSottile/whoami.filippo.io: A ssh server that knows who you are. $ ssh whoami.filippo.io).

It’s a cool open source server written in Golang, that gets all your public ssh keys (ssh automatically transmits those) and tries to map them back to a GitHub account.

In addition it shows you some potential vulnerabilities of your ssh client.

Note that in October 2020, it was temporarily down, but it will be up again: [Archive.is] Filippo Valsorda 💉💉 on Twitter: “Yeah I’m planning to but I can’t give you an ETA I’m afraid. A few weeks, maybe?… “

Thread comments

Some interesting comments in the thread:

Related: [WayBack] Auditing GitHub users’ SSH key quality

Stop presenting public keys

[WayBack] GitHub – FiloSottile/whoami.filippo.io: A ssh server that knows who you are. $ ssh whoami.filippo.io: How do I stop passing public keys

How do I stop it?

If this behavior is problematic for you, you can tell ssh not to present your public keys to the server by default.

Add these lines at the end of your ~/.ssh/config (after other “Host” directives)

Host *
    PubkeyAuthentication no
    IdentitiesOnly yes

And then specify what keys should be used for each host

Host example.com
    PubkeyAuthentication yes
    IdentityFile ~/.ssh/id_rsa
    # IdentitiesOnly yes # Enable ssh-agent (PKCS11 etc.) keys

If you want you can use different keys so that they can’t be linked together

Host github.com
    PubkeyAuthentication yes
    IdentityFile ~/.ssh/github_id_rsa

–jeroen

Read the rest of this entry »

Posted in *nix, *nix-tools, Communications Development, Development, Go (golang), Internet protocol suite, Power User, Software Development, SSH, ssh/sshd, TCP | Leave a Comment »

The hard part of a crypto specification: make it safe and misuse resistant.

Posted by jpluimers on 2021/10/19

Great quote from a while back:

[WayBack] Filippo Valsorda on Twitter: “Here’s a secret: it’s not that hard to put together a crypto specification. What’s hard is to make it safe and misuse resistant. What needs to be “battle tested” is the security devex, not the narrow happy path, and blaming the developer when it breaks is not battle testing.”

From the same thread:

–jeroen

Read the rest of this entry »

Posted in Development, Power User, Security, Software Development | Leave a Comment »

VMware ESXi has 2 bootbanks; with some luck the second contains your old ESXi version

Posted by jpluimers on 2021/10/19

Just in case I ever need this again:

  • [Wayback] VMware Knowledge Base: Reverting to a previous version of ESXi (1033604)
    1. In the console screen of the ESXi host, press Ctrl+Alt+F2 to see the Direct Console User Interface (DCUI) screen.
    2. Press F12 to view the shutdown options for the ESXi host.
    3. Press F11 to reboot.
    4. When the Hypervisor progress bar starts loading, press Shift+R. You will see the warning:
      Current hypervisor will permanently be replaced
      with build: X.X.X-XXXXXX. Are you sure? [y/n]
    5. Press Y to roll back the build.
    6. Press Enter to boot.
  • [Wayback] Downgrade ESXi 6.5 from update 3 to update 2 – VMware Technology Network VMTN; when out of luck:
    • This is not my case.As I mentioned, I don’t have altbootbank with update 2. This is because after update 3, I also installed the latest patch.So both bootbanks now have update 3.Is there any other option for me. Can I just install update 2 again so it will overwrite everything? Or it is impossible?
    • Backup ESXi configurations and reinstall it without overwriting VMFS.

Via: [Wayback/Archive.is] downgrade esxi 6.5 u3 to u2 – Google Search

–jeroen

Posted in ESXi6, ESXi6.5, ESXi6.7, ESXi7, Power User, Virtualization, VMware, VMware ESXi | Leave a Comment »

EProgrammerNotFound exception in Delphi? – Stack Overflow

Posted by jpluimers on 2021/10/19

From a long while my answer to [WayBack] EProgrammerNotFound exception in Delphi? – Stack Overflow (I added the WayBack links)

It was introduced in Delphi 2009, still present in Delphi 2010, and [WayBack] recently got some [WayBackmore attention on the [WayBackinternet.

I think it is an easter egg, similar to [WayBack] “EBCAK” (Error Between Chair and Keyboard), and the [WayBack] skipping of Delphi version number 13.

[WayBack] EProgrammerNotFound

  • is declared in the Win32 branch of the SysUtils unit, but not used anywhere in the RTL or VCL
  • is not present in Delphi Prism
  • was introduced in Delphi 2009, so not present in VCL.NET
  • has currently (version 3.5) nothing similar in the .NET framework (not sure why, these guys [WayBack] do have humour)

I don’t think EProgrammerNotFound is actually meant to be used at all, but since it is there, people will jokingly use it (similar like putting a stray “const False = True; True = not False;” in someone elses sourcecode).

On green bits and red bits (which I highly associate with the “green wobbly bit”:

–jeroen

Posted in Delphi, Development, Software Development | Leave a Comment »

Would lvmraid have been improved over 2019? (back then: very single threaded, and does not leverage anything of the power of the actual device)

Posted by jpluimers on 2021/10/18

Reminder to self to check out if things have improved over time: [WayBack] Kristian Köhntopp on Twitter: “Trying my lvmraid kata from yesterday in real hardware was very frustrating. Everything is very single threaded, and does not leverage anything of the power of the actual device. … Basically, my linear-to-raid conversion idea died in the crib.” described to 2019 situation:

–jeroen

Posted in Hardware, Power User, RAID | Leave a Comment »

Argeweb takeover history

Posted by jpluimers on 2021/10/18

For my link archive:

–jeroen

Posted in Hosting, Power User | Leave a Comment »

SSDs: favour TLC over QLC when they usage pattern is to have them relatively full

Posted by jpluimers on 2021/10/18

Some interesting observations at [WayBack] Intel brengt 665p-ssd van 1TB met 96-laags qlc-nandgeheugen uit – Computer – Nieuws – Tweakers.

–jeroen

Posted in LifeHacker, Power User, SSD | Leave a Comment »

Be sure to apply (SSD) storage firmware updates before it breaks

Posted by jpluimers on 2021/10/15

Various storage providers have had overflow issues in their storage firmware , so be sure to apply firmware updates.

Example (that includes HPE and Intel failures): [WayBack] Bepaalde HPE-sas-ssd’s gaan kapot na 32.768 uur – Computer – Nieuws – Tweakers.

–jeroen

Posted in Hardware, Power User, SSD | Leave a Comment »

Some Dutch legal on your security camera’s that cover areas outside your own property

Posted by jpluimers on 2021/10/15

Some Dutch legal on your security camera’s that cover areas outside your own property: [WayBack] Politie pakt jongens op dankzij beelden slimme deurbel – Beeld en geluid – Nieuws – Tweakers.

Most important one (from the Dutch office that monitors GDPR compliance) in [WayBack] Cameratoezicht in en rond woningen | Autoriteit Persoonsgegevens:

In en rond woningen kunnen camera’s opgehangen worden om eigendommen te beveiligen en bewoners te beschermen. Zowel organisaties, zoals woningbouwverenigingen, als particuliere bewoners kunnen besluiten camera’s te plaatsen. Dit is niet verboden, maar er zijn wel voorwaarden aan verbonden.

Cameratoezicht door personen valt in principe niet onder de Algemene verordening gegevensbescherming (AVG). De Autoriteit Persoonsgegevens houdt hier dus ook geen toezicht op.

Wie een camera ophangt, moet ervoor zorgen dat de camera zo min mogelijk gericht is op de openbare weg of op eigendommen van anderen.

Is een camera wel (deels) gericht op een (deel) van de openbare weg? Of filmt iemand bijvoorbeeld de tuin van de buurman? Dan is de AVG wél van toepassing en houdt de Autoriteit Persoonsgegevens dus ook toezicht.

–jeroen

Posted in LifeHacker, Power User | Leave a Comment »

DICTATOR Adjunct 2500 mechanische deursluiter inbouw

Posted by jpluimers on 2021/10/15

Had to replace the door closing coil spring as the chain broke; found it at [WayBack] DICTATOR – mechanische deursluiters voor het zelfsluitend maken van deuren. Inbouw of opbouw op de deur:

Adjunct 2500 inbouw kettingdeursluiter
Adjunct 2500 & 2550

Adjunct 2500 / 2550 ketting inbouwdeursluiters

Adjunct 2500 ketting inbouwdeursluiter

De Adjunct 2500 en de Adjunct 2550 zijn mechanisch werkende ketting-inbouwdeursluiters. Deze sluiten, praktisch onzichtbaar, uw deuren. De deursluiter bestaat uit een in de deur gestoken buis met veer, trekstang en ketting. De constructie wordt d.m.v. een op de buis geschroefd bevestigingsplaatje bevestigd. De sluitkracht wordt overgebracht door de ketting, die over een gehard stalen prop loopt en ingehaakt wordt in de sleutelgatvormige opening van een kozijnplaatje. Voor zwaardere deuren is de Adjunct 2550 met een diameter van 22 leverbaar, met een dubbele veersterkte t.o.v. de Adjunct 2500

  Belangrijkste voordelen Adjunct 2500 / 2550 ketting inbouwdeursluiters

  •     Nagenoeg onzichtbaar door montage in de deur.
  •     Mechanisch werkend, dus onderhoudsvrij.
  •     Toepasbaar voor alle binnendeuren, zowel stompe als opdek.
  •     In combinatie met een DICTATOR deuropvanger een goed en prijsgunstig
        alternatief voor een deurdranger.

Read the rest of this entry »

Posted in DIY, LifeHacker, Power User | Leave a Comment »