Archive for Januar, 2021

President Donald J. Trump – has the authority to launch nuclear weapons with the ‚Nuclear football‘

Montag, Januar 18th, 2021

The ‚Nuclear football‘ – to be used by the President of the United States to authorize a nuclear attack while away from fixed command centers such as the White House Situation Room it functions as a mobile hub in the strategic defense system of the United States

BR quer mit Christoph Süß – unsichere Assistenzsysteme

Montag, Januar 18th, 2021

Schwachstellenscanner im Vergleich – #4 Rapid7 Nexpose

Sonntag, Januar 17th, 2021

Schwachstellenscanner im Vergleich – #3 BeyondTrust Retina CS

Sonntag, Januar 17th, 2021

Schwachstellenscanner im Vergleich – #2 Tenable Nessus

Sonntag, Januar 17th, 2021

Schwachstellenscanner im Vergleich – #1 Greenbone GSM CE

Sonntag, Januar 17th, 2021

Tesla Gigafactory Berlin-Brandenburg – 4K Drone Shots 13. December 2020

Sonntag, Januar 17th, 2021

Greenbone Operating System 20.08 (GOS 20.08) – wichtige Verbesserungen

Sonntag, Januar 17th, 2021

Helgoland – die Nordseeinsel frei von Covid-19

Sonntag, Januar 17th, 2021

gematik GmbH – ePA für Apotheker

Sonntag, Januar 17th, 2021

Ethical Hacking – Sicherheitsmängel beheben und Cyberkriminalität vorbeugen

Sonntag, Januar 17th, 2021

Ethical Hacking – hat in den letzten Jahren angesichts einer rasant zunehmenden Cyberkriminalität stetig an Bedeutung gewonnen. Immer mehr Unternehmen Organisationen und Institutionen suchen ausgewiesene Experten für Cybersecurity die das eigene Sicherheitskonzept unvoreingenommen auf die Probe stellen und dabei möglichst praxisnah wie echte Hacker agieren

Prof. Dr. Edmund Weitz – was hat der Primzahlsatz mit der Kolmogorow Komplexität zu tun

Sonntag, Januar 17th, 2021

France Col de la Met – online webcam

Sonntag, Januar 17th, 2021

Dakar 2021 – take a look back at the best landscapes from the last two weeks

Samstag, Januar 16th, 2021

Raspberry Pi – building a Vulnerability Scanner OpenVAS (Greenbone) 20.8.0 with Kali Linux 2020.4

Samstag, Januar 16th, 2021
# apt-get update -y
# apt-get full-upgrade -y
# apt-get autoremove
# hostnamectl set-hostname rpi-iot-jsho-openvas-01
# apt-get update -y
# apt-get install ssh
# systemctl enable ssh
# service ssh start
# apt-get update -y
# apt-get install xrdp
# systemctl enable xrdp
# service xrdp start
# apt-get install gvm
the setup & update command …
# gvm-setup

[+] Done
[*] Please note the password for the admin user
[*] User created with password ’08a6c148-7084-4b9d-a03d-da1364fe1bf0′.
# gvm-check-setup
It seems like your GVM-20.8.0 installation is OK
# gvmd –version
Greenbone Vulnerability Manager 20.08.0
Manager DB revision 233
Copyright (C) 2010-2020 Greenbone Networks GmbH
License: AGPL-3.0-or-later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law
# vi /lib/systemd/system/greenbone-security-assistant.service
[Unit]
Description=Greenbone Security Assistant (gsad)
Documentation=man:gsad(8) https://www.greenbone.net
After=network.target
Wants=gvmd.service
[Service]
Type=forking
User=_gvm
Group=_gvm
ExecStart=/usr/sbin/gsad –listen=0.0.0.0 –port=9392
Restart=always
TimeoutStopSec=10
[Install]
WantedBy=multi-user.target
Alias=gsad.service
# gvm-start
# ss -nalt
State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
LISTEN 0 128 0.0.0.0:9392 0.0.0.0:*
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
LISTEN 0 128 127.0.0.1:5432 0.0.0.0:*
LISTEN 0 128 [::]:22 [::]:*
LISTEN 0 2 [::1]:3350 [::]:*
LISTEN 0 128 [::1]:5432 [::]:*
LISTEN 0 2 *:3389 *:*
# runuser -u _gvm — gvmd –user=admin –new-password=<password>
https://<IP@>:9392
# gvm-stop