-
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:
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: | |
# https://github.com/Excodibur/ioBroker.schwoerer-ventcube/blob/master/src/lib/schwoerer/parameters.ts | |
# https://github.com/fgoettel/wgt/blob/main/wgt/lueftungsanlage.py | |
# 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 # | |
################## | |
modbus: |
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
substitutions: | |
name: esphome-ledaluc2 | |
friendly_name: ESPHome LEDA LUC2 | |
esphome: | |
name: ${name} | |
friendly_name: ${friendly_name} | |
min_version: 2023.6.0 # Use a stable ESPHome version for compatibility | |
name_add_mac_suffix: false # Prevent adding MAC suffix to the device name | |
project: |
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 |
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; |
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:
- 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]
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') |