-
Enable feature in PowerShell:
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
-
Download Kali AppX File: https://aka.ms/wsl-kali-linux-new
Invoke-WebRequest -Uri https://aka.ms/wsl-kali-linux-new -OutFile Kali.appx -UseBasicParsing
-
Open PowerShell as Admin and Run:
Add-AppxPackage .\Kali.appx
-
Run
kali
. Createuser:user
. -
Set default user:
kali config --default-user root
-
Keep system up to date:
View modbus_wgt.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Helpful information: | |
# 1. https://github.com/Excodibur/ioBroker.schwoerer-ventcube/blob/master/src/lib/schwoerer/parameters.ts | |
# 2. https://github.com/fgoettel/wgt/blob/main/wgt/lueftungsanlage.py | |
# 3. https://codepen.io/Philipp-Bender-the-typescripter/pen/bGzBmXp | |
# 4. https://knx-user-forum.de/forum/öffentlicher-bereich/knx-eib-forum/diy-do-it-yourself/1822296-modbus-schwörer-heizung?p=1906252#post1906252 | |
################## | |
# MODBUS SENSORS # | |
################## |
View lotto-bw-script.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sum = 0.0; | |
anzahlGewinne = 0; | |
anzahlSpielscheine = 0; | |
sumEurojackpot = 0.0; | |
sumLotto = 0.0; | |
sumGewinne = 0.0; | |
kostenEurojackpotScheine = 0.0; | |
anzahlEurojackpotScheine = 0; | |
kostenLOTTOScheine = 0.0; | |
anzahlLOTTOScheine = 0; |
View install-kali-subsystem.md
View keybase.md
Keybase proof
I hereby claim:
- I am javanxd on github.
- I am javanxd (https://keybase.io/javanxd) on keybase.
- I have a public key ASDuPY3vMDs7F587CLlBVO2MiWI1vdarXCgbA-7l6SCCXAo
To claim this, I am signing this object:
View shrink-macos.md
Shrink Raspbian images with MacOS
- Use ApplePi-Baker v2 to create
backup.img
- Start Docker Daemon
- Run
in same folder asdocker run --rm --privileged=true -v `pwd`:/workdir turee/pishrink-docker pishrink backup.img
backup.img
[1]
View 7z_bruteforce.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# python 7z_bruteforce.py rockyou.txt test.7z | |
import concurrent.futures | |
import os | |
import subprocess | |
import sys | |
FNULL = open(os.devnull, 'w') |
View esp32_bme680_access_point.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <WiFi.h> | |
#include <Wire.h> | |
#include <SPI.h> | |
#include <Adafruit_Sensor.h> | |
#include "Adafruit_BME680.h" | |
// Only needed for software SPI | |
//#define BME_SCK 13 | |
//#define BME_MISO 12 | |
//#define BME_MOSI 11 |