Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)
- If you want to add a link, comment or send it to me
- Feel free to report any mistake directly below in the comment or in DM on Twitter @SwitHak
- Royce Williams list sorted by vendors responses Royce List
- Very detailed list NCSC-NL
- The list maintained by U.S. Cybersecurity and Infrastructure Security Agency: CISA List
| version: "3" | |
| services: | |
| app: | |
| image: 'jc21/nginx-proxy-manager:latest' | |
| restart: unless-stopped | |
| ports: | |
| - '80:80' | |
| - '443:443' | |
| - '81:81' | |
| environment: |
To update the BIOS/UEFI firmware requires HP-specific files in the EFI System Partition, also referred to as ESP.
On a Linux system, the ESP is typically mounted on /boot/efi or /efi. Whithin you should also find a EFI directory, e.g. /boot/efi/EFI or /efi/EFI. This article assumes that the ESP is mounted on /efi and that the /efi/EFI directory exists. You can replace that with the mount point your system uses.
The HP-specific files are located in /efi/EFI/HP or /efi/EFI/Hewlet-Packard. These files typically come preinstalled in HP Windows PCs. If you have these files you could skip Install HP-specific files.
| /** | |
| * gcc -o pty-demo pty-demo.c | |
| * pty-demo bash | |
| */ | |
| #define _XOPEN_SOURCE 600 /* Single UNIX Specification, Version 3 */ | |
| #include <fcntl.h> | |
| #include <errno.h> | |
| #include <stdio.h> /* for convenience */ |
| .model SMALL | |
| .386 | |
| .STACK 100H | |
| .DATA | |
| TEMP DW ? | |
| NUMB REAL4 ? | |
| STRING DB 1024 DUP(0) | |
| WHOLE DD ? | |
| FRACT DD ? |
| using System; | |
| using System.Drawing; | |
| using System.Runtime.InteropServices; | |
| using System.Windows.Forms; | |
| using Raylib_cs; | |
| using Color = Raylib_cs.Color; | |
| namespace Rayforms | |
| { | |
| public class RayForm : Form |
This cheatsheet helps to set up your Proxmox Virtual Environment (PVE) host after fresh installation. Designed and tested on PVE version 6.x.
I do not prepend sudo command to any of commands listed here, but keep in mind that nearly all commands requires su privileges, so use sudo if your account happen to not have root access.
The simplest way to edit config file is to use vim.tiny editor, for example to edit vzdump.conf file use this command:
| Assume IIS is installed. My machine already had IIs 8.5. | |
| Install Python | |
| ============== | |
| 1. Download web installer (Python 3.6.3). | |
| 2. Run as Administrator. | |
| 3. Select custom installation for all users. | |
| 4. Choose install directory such that there are no white spaces in the path. Not sure if it needs to be done. Just being cautious. | |
| 5. Check the box for "Add Python 3.6 to PATH". |
| // app.manifest which declares this application Monitor DPI aware is required. | |
| using System; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| using System.Windows.Forms; | |
| public partial class MainForm : Form | |
| { | |
| public MainForm() | |
| { |