Archive for Mai, 2025

Red Hat Certified System Administrator (RHCSA) – die DNS Konfiguration anpassen #74

Montag, Mai 12th, 2025

President Donald J. Trump – is ready to accept a luxury Boeing 747-8 jumbo jet as a gift from the ruling family of Qatar during his trip to the Middle East this coming week and U.S. officials say it could be converted into a potential presidential aircraft

Montag, Mai 12th, 2025

Proxmox Virtual Environment (VE) 8.3.0 – highly available storage with Ceph

Montag, Mai 12th, 2025

SAP CEO Christian Klein – cuts diversity programmes to comply with Trump administration

Montag, Mai 12th, 2025

1958 Coupe des Alpes – a legendary 2.400 mile motor race across the stunning mountains of southern France and northern Italy

Sonntag, Mai 11th, 2025

Harley-Davidson Fat Boy Gray Ghost 2025 – Limitiert auf nur 1.990 Stück ist sie eine Hommage an das Original und ein Symbol seines bleibenden Erbes

Sonntag, Mai 11th, 2025

Microsoft Windows 11 – ein Microsoft Konto nachträglich in lokales Benutzerkonto ändern

Sonntag, Mai 11th, 2025

… just do IT nothing is impossible

Sonntag, Mai 11th, 2025

Klinik IT eG (KIG) – überraschen denn das Projekt „Mein-Krankenhaus.Bayern“ wurde rasch neu ausgeschrieben und ein neuer Dienstleister für das interoperable Patientenportal für über 100 Krankenhäuser wurde bereits gefunden

Sonntag, Mai 11th, 2025

Thomas Müller – sein emotionaler Abschied von der Allianz Arena

Sonntag, Mai 11th, 2025

Wireshark command ‚editcap‘ – easy sanitization and anonymization of PCAP files removing or replacing sensitive data

Samstag, Mai 10th, 2025

Wireshark Packet Captures – can contain sensitive data like IP addresses login credentials and private network details don’t push sensitive data to public AI LLMs

Samstag, Mai 10th, 2025

ChatGPT-o1 – how to analyze Wireshark Packet Captures with AI

Samstag, Mai 10th, 2025

Ludwig-Erhard-Gipfel Tegernsee Summit 07.-09.2025 ‚Deutschland nach der Wahl kommt nun das neue Wirtschaftswunder‘ – Impulsvortrag von der Bundesministerin für Wirtschaft und Energie Katherina Reiche (CDU)

Samstag, Mai 10th, 2025

FRITZ!Box Packet Sniffer – Netzwerk Traffic direkt mit der FRITZ!Box aufzeichnen und mit Wireshark online auswerten

Samstag, Mai 10th, 2025

fritz_logo.png   Dazu muss man einfach nur die Adresse http://fritz.box/html/capture.html in einem Browser öffnen – einloggen und den Mitschnitt auf der gewünschten Netzwerkschnittstelle starten … oder eben online mittels dem u.a. Linux Script plus Wireshark

root@js-FUTRO-S740:~# apt-get install wireshark

js@js-FUTRO-S740:~$ vi FritzBoxPacketSniffer
#!/bin/bash
set -x
# This is the address of the router
FRITZIP=http://IP@
# This is the WAN interface
IFACE=“2-0″
# Lan Interface
#IFACE=“1-lan“
# If you use password-only authentication use ‚dslf-config‘ as username.
FRITZUSER=<user>
FRITZPWD=<password>
SIDFILE=“/tmp/fritz.sid“
if [ -z „$FRITZPWD“ ] || [ -z „$FRITZUSER“ ] ; then echo „Username/Password empty. Usage: $0 <username> <password>“ ; exit 1; fi
echo „Trying to login into $FRITZIP as user $FRITZUSER“
if [ ! -f $SIDFILE ]; then
touch $SIDFILE
fi
SID=$(cat $SIDFILE)
# Request challenge token from Fritz!Box
CHALLENGE=$(curl -k -s $FRITZIP/login_sid.lua | grep -o „<Challenge>[a-z0-9]\{8\}“ | cut -d‘>‘ -f 2)
# Very proprieatry way of AVM: Create a authentication token by hashing challenge token with password
HASH=$(perl -MPOSIX -e ‚
use Digest::MD5 „md5_hex“;
my $ch_Pw = „$ARGV[0]-$ARGV[1]“;
$ch_Pw =~ s/(.)/$1 . chr(0)/eg;
my $md5 = lc(md5_hex($ch_Pw));
print $md5;
‚ — „$CHALLENGE“ „$FRITZPWD“)
curl -k -s „$FRITZIP/login_sid.lua“ -d „response=$CHALLENGE-$HASH“ -d ‚username=’${FRITZUSER} | grep -o „<SID>[a-z0-9]\{16\}“ | cut -d‘>‘ -f 2 > $SIDFILE
SID=$(cat $SIDFILE)
# Check for successfull authentification
if [[ $SID =~ ^0+$ ]] ; then echo „Login failed. Did you create & use explicit Fritz!Box users?“ ; exit 1 ; fi
echo „Capturing traffic on Fritz!Box interface $IFACE …“ 1>&2
# How to use wireshark
wireshark -k -i <(wget –no-check-certificate -qO- $FRITZIP/cgi-bin/capture_notimeout?ifaceorminor=$IFACE\&snaplen=\&capture=Start\&sid=$SID)