Search for: disable ipv6

AVM FritzBox 7590 DNS over TLS how to setup – updates slow down FRITZ!Box 4040 release date 2016 too slow for DHCP – which boxes still receive security and firmware updates? (not EoL) – right to repair (spare parts)
22 Mar 2024

update: 2024-04 changed 7590 (latest FritzOS) against 7390 (older FritzOS) there are no such DHCP problems per default FBs have [-] no protection against: https://www.prosec-networks.com/en/blog/dhcp-starvation-attack/, which of course is not easy but imho uncool because if user lose trust in […]

the hardcore security challenge any app store faces
05 Aug 2023

No matter if docker repository called “hub”, Google’s App Store “PlayStore” or Apple’s App Store they are ALL facing the same security problems: https://www.bleepingcomputer.com/news/security/google-explains-how-android-malware-slips-onto-google-play-store/ plus: https://www.bleepingcomputer.com/news/security/thousands-of-android-apks-use-compression-trick-to-thwart-analysis/ what if… a malicious actor uploads an App or docker container that is totaly […]

howto postgres
25 May 2020

postgres borrows concepts from mysql (now mariadb) postgres and mariadb are borth great databases, thanks all involved. (how to setup postgres 12 on centos 8 (very very latest)) let’s dive into hit: how to postgres: hostnamectl; # tested on Virtualization: […]

gnu-linux – setup postgres 12 on CentOS 8 – terminal bash – debugging postgresql connection problems
16 Jan 2020

here are the packages: https://download.postgresql.org/pub/repos/yum/ # updated: 2021-01 # the guide below is probably outdated # the official current howto https://www.postgresql.org/download/linux/redhat/ # tries to install postgres13 like this: # Install the repository RPM: dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm # Disable the […]

19 Dec 2017

tested on: hostnamectl Static hostname: DebianLaptop Icon name: computer-laptop Chassis: laptop Operating System: Debian GNU/Linux 8 (jessie) Kernel: Linux 3.16.0-4-686-pae Architecture: x86 i assume you have your laptop/pc LAN connected to a switch/router and your default network card is eth0. […]

Wifi Accesspoint that connects to another Wifi Accesspoint (Client-Bridge) – TP-Link can do that – WLAN AdHoc Client Bridge with tp-link tl-wr841nd v11 – use wifi router as wifi usb adapter – Multiple Operation Modes – Wireless Client Mode – Bridge Mode – Bridge with AP Mode – Repeater (Range Extender) Mode
09 Nov 2017

Wifi Modes of an Access point: DLink has painted a nice overview over the possible different modes of an Accesspoint: cybersec: from great wifi modes that allow bridging two wifi networks, it would be GREAT if vendors test their products […]

09 Jun 2017

in general programs = processes = tasks = job less is more (security) run as little software as you absolutely need – uninstall/disable all services you don’t need. less software = less lines of mistaken code = less security flaws. […]

08 Jun 2017

passwd -l maria; # disables account maria passwd: password expiry information changed. grep maria /etc/shadow maria:!$6$w9DaelrP$/tJiXC2PU0B.XOupP0sFTySis5VfkMwv0DnoFy3.d.nC8gXJU.DSbU0Uryyex40P67keCFoQuxEjZ8RD9kDGU0:17325:0:99999:7::: passwd -u maria; # enable account maria passwd: password expiry information changed. /etc/passwd grep /bin/bash /etc/passwd; # output all interactive user accounts that use […]