k3d create --publish 8080:8080 --name testcls1 --workers 3
https://felixwiedmann.de/k3d-manage-k3s-clusters/
---
k3d create --publish 8080:8080 --name testcls1 --workers 3
https://felixwiedmann.de/k3d-manage-k3s-clusters/
---
version: "3.1" | |
services: | |
spark-master: | |
image: bde2020/spark-master:2.4.0-hadoop2.7 | |
container_name: spark-master | |
ports: | |
- "8080:8080" | |
- "7077:7077" | |
environment: | |
- INIT_DAEMON_STEP=setup_spark |
// PoC code to demonstrate clipboard monitoring in Windows | |
// using an event-based listener. | |
#include <stdio.h> | |
#include <Windows.h> | |
#define CLASS_NAME L"MY_CLASS" | |
#define WINDOW_NAME L"MY_WINDOW" | |
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { | |
HANDLE hClipData = NULL; |
awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' cert-name.pem |
The ssh way | |
Assuming that you have ssh on your ubuntu box. | |
Minikube user: docker password: tcuser | |
First run kubectl proxy & to expose the dashboard on http://localhost:8001 | |
Then expose the dashboard using ssh's port forwarding, executing: | |
ssh -R 30000:127.0.0.1:8001 [email protected] |
System version | Expected number of burnt fuses (retail) | Expected number of burnt fuses (non-retail) | |
---|---|---|---|
1.0.0 | 1 | 0 | |
2.0.0-2.3.0 | 2 | 0 | |
3.0.0 | 3 | 1 | |
3.0.1-3.0.2 | 4 | 1 | |
4.0.0-4.1.0 | 5 | 1 | |
5.0.0-5.1.0 | 6 | 1 | |
6.0.0-6.1.0 | 7 | 1 | |
6.2.0 | 8 | 1 | |
7.0.0-8.0.1 | 9 | 1 |
#!/bin/bash | |
MINIKUBE_IP=$(minikube ip) | |
MINIKUBE_KEY_LOCATION=${HOME}/.minikube/machines/minikube/id_rsa | |
STARTING_PORT=8080 | |
CURRENT_PORT=${STARTING_PORT} | |
for servicename in $*; do | |
HIGH_PORT=$(kubectl get svc ${servicename} -o custom-columns=':spec.ports[*].nodePort' | tail -n1) | |
if echo $HIGH_PORT | grep -q ,; then |
// | |
// Ref = src | |
// https://www.blackhat.com/docs/eu-17/materials/eu-17-Liberman-Lost-In-Transaction-Process-Doppelganging.pdf | |
// | |
// Credits: | |
// Vyacheslav Rusakov @swwwolf | |
// Tom Bonner @thomas_bonner | |
// | |
#include <Windows.h> |