#https

20 posts · Last used 8d

Back to Timeline
Axel Gutmann @virbonus@sueden.social · Aug 06, 2026
Replying to @ct_Magazin@social.heise.de
RE: https://mastodon.social/@randahl/117039063891274700 @ct_Magazin@social.heise.de #https://mastodon.social/@randahl/117039063891274700
Quoting
Randahl Fink @randahl@mastodon.social
I grew up in a world, where people could look like themselves. Now we live in a data driven world, where the click-through rate of every facial expression has been measured, and even successful youtubers go with the shock face for those few percent extra views. I feel, we are losing what it means to be real, natural human beings, when everything is decided by commercial value statistics.
+2
Open quoted post
0
0
0
ꙮ 𝄃𝄁𝄂𝄀𝄀𝄁𝄃🇫🇯🇱🇨🇱🇧 @liilliil@mastodon.online · Aug 06, 2026
А я ещё когда говорил, что все их #https сертификаты сосали, сосут и будут сосать «Не, бля, бязапаснасть, а ты лох» — теперь сосите вместе с ними, ебланы #понабралиМудаков
0
1
0
cfp_time :verified: @cfp_time@infosec.exchange · Aug 03, 2026
📢🔔 Just 1 more week to submit your talk at Security BSides Oslo cc @https@infosec.exchange:infosec.exchange@bsidesoslo! https://cfptime.org/cfps/3463/ #cfp #infosec #https:infosec.exchange#bsidesoslo
0
0
0
Verfassungklage@troet.cafe @Verfassungklage@troet.cafe · Jul 31, 2026
#Homeserver - #FritzBox_WireGuard - #HTTPS - #DynDNS Einrichtung eines Homeserver-Netzwerks mit dem Dienst Nextcloud, welcher über Fritzbox mit Wireguard-VPN aus dem Internet erreichbar ist. https://gnulinux.ch/homeserver-fritzbox-wireguard-https-dyndns
1
0
2
cfp_time :verified: @cfp_time@infosec.exchange · Jul 27, 2026
📢🔔 Just 2 more weeks to submit your talk at Security BSides Oslo cc @https@infosec.exchange:infosec.exchange@bsidesoslo! https://cfptime.org/cfps/3463/ #cfp #infosec #https:infosec.exchange#bsidesoslo
0
0
0
cfp_time :verified: @cfp_time@infosec.exchange · Jul 22, 2026
📢🔔 Just 1 more day to submit your talk at TRISS (Three Rivers Information Security Symposium.. cc @https@infosec.exchange:x.comThreeRiversISec! https://cfptime.org/cfps/3469/ #cfp #infosec #https:x.comThreeRiversISec
0
0
0
SatyrSack @SatyrSack@quokk.au · Jul 17, 2026
Replying to @staircase@programming.dev
I had found myself reinstalling and reconfiguring a lot of the same things over and over while distro hopping, so I came up with a bash script with some of the most common configuration changes and such. As an example, here is my Fedora post=install script: script #!/usr/bin/env bash # remove all permission restrictions from current directory #sudo chmod -R a+rwX . sudo hostnamectl set-hostname [redacted] # prompt for ssh password to use later if [[ $1 == "" ]]; then read -p "Enter ssh password: " ssh_pass else ssh_pass=$1 fi # default dnf prompts to 'y' sudo sh -c "echo 'defaultyes=True' >> /etc/dnf/dnf.conf" # install packages that are needed to add repos and other packages sudo dnf up -y && sudo dnf in curl flatpak wget -y #add repos sudo dnf copr enable lilay/topgrade -y sudo dnf copr enable aflyhorse/libjpeg -y sudo dnf config-manager addrepo --from-repofile=https://repository.mullvad.net/rpm/stable/mullvad.repo sudo dnf in https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y sudo dnf in https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -y sudo sh -c 'curl -fsSL https://repo.librewolf.net/librewolf.repo | pkexec tee /etc/yum.repos.d/librewolf.repo' sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo echo -e "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg\nmetadata_expire=1h" | sudo tee -a /etc/yum.repos.d/vscodium.repo #install packages sudo dnf in augeas-devel btop cairo-devel cairo-gobject-devel cargo cmake codium dbus-devel expat-devel gifsicle gimp git kde-connect kdenlive libavcodec-freeworld librewolf libxkbcommon-devel lightdm-gtk-greeter-settings mpv mullvad-vpn ninja-build openssh-server openssl openssl-devel pipx python3-dbus python3-devel python3-pip rpmbuild syncthing thunderbird topgrade vlc sshpass -y sudo dnf in $(curl -s https://raw.githubusercontent.com/teervo/bitwig-fedora/refs/heads/main/bitwig-rpm.sh | bash -s 4.4.10) -y sudo dnf swap ffmpeg-free ffmpeg --allowerasing -y export PATH="$HOME/.cargo/bin:$PATH" && echo $'export PATH= \"$HOME/.cargo/bin:$PATH \"' >> ~/.bashrc cargo install gifski cargo-updateflatpak install com.github.iwalton3.jellyfin-media-player -y #pipx install numlockw pip install pandas odfpy #create ssh key, copy to servers ssh-keygen -q -t rsa -N '' <<< $'\ny' >/dev/null 2>&1 hosts=("10.0.0.10" "10.0.0.11") for host in "${hosts[@]}"; do ssh-keyscan -H $host >> ~/.ssh/known_hosts && sshpass -p "$ssh_pass" ssh-copy-id -o StrictHostKeyChecking=no [redacted]@$host && ssh -q [redacted]@$host exit done #enable/start ssh server sudo systemctl enable sshd sudo systemctl start sshd #add external drive to fstab to automount directory_secondary_drive=$HOME/nvme uuid=[redacted] sudo blkid sudo cp /etc/fstab /etc/fstab.bak sudo sh -c "echo 'UUID=$uuid $directory_secondary_drive btrfs rw,auto,user,exec 0 0' >> /etc/fstab" sudo mount -a #copy over custom config files directory_software=$directory_secondary_drive/sync/software cp -r $directory_software/setup/configs/* $HOME/.local/share/ #install fonts cp $directory_software/fonts/* $HOME/.fonts fc-cache -vf #set git credentials git config --global user.name "[redacted]" && git config --global user.email "[redacted]@yourdomain.com" #add aliases to bashrc echo $'alias pipup=\'pip list -o | cut -f1 -d\'\\\'\' \'\\\'\' | tr " " " " | awk \'\\\'\'{if(NR>=3)print}\'\\\'\' | cut -d\'\\\'\' \'\\\'\' -f1 | xargs -n1 pip install -U; pip install -U cyberdrop-dl-patched\'' >> ~/.bashrc echo $'alias up=\"topgrade -y && echo \'\\nChecking pip\\n\' && pipup\"' >> ~/.bashrc echo $'alias e=\"exit\"' >> ~/.bashrc #https://support.mozilla.org/en-US/kb/compact-mode-workaround-firefox #print ssh key echo $'\nPublic SSH key:' cat $HOME/.ssh/*.pub Note that I used [redacted] here in places for anonymity reasons. This could give you a decent starting point to do something similar.
0
0
0
cfp_time :verified: @cfp_time@infosec.exchange · Jul 16, 2026
📢🔔 Just 1 more week to submit your talk at TRISS (Three Rivers Information Security Symposium.. cc @https@infosec.exchange:x.comThreeRiversISec! https://cfptime.org/cfps/3469/ #cfp #infosec #https:x.comThreeRiversISec
0
0
0
Vida Latina :mastodonworld: @vida_latina@mastodon.world · Jul 15, 2026
0
0
0
cfp_time :verified: @cfp_time@infosec.exchange · Jul 14, 2026
📢🔔 Just 1 more day to submit your talk at CyberHack Conference cc @https@infosec.exchange:sessionize.comcyberhack-conference! https://cfptime.org/cfps/3484/ #cfp #infosec #https:sessionize.comcyberhack-conference
0
0
0
cfp_time :verified: @cfp_time@infosec.exchange · Jul 10, 2026
📢🔔 Just 1 more month to submit your talk at Security BSides Oslo cc @https@infosec.exchange:infosec.exchange@bsidesoslo! https://cfptime.org/cfps/3463/ #cfp #infosec #https:infosec.exchange#bsidesoslo
0
0
0
cfp_time :verified: @cfp_time@infosec.exchange · Jul 09, 2026
📢🔔 Just 2 more weeks to submit your talk at TRISS (Three Rivers Information Security Symposium.. cc @https@infosec.exchange:x.comThreeRiversISec! https://cfptime.org/cfps/3469/ #cfp #infosec #https:x.comThreeRiversISec
0
0
0
cfp_time :verified: @cfp_time@infosec.exchange · Jul 09, 2026
📢🔔 Just 1 more day to submit your talk at Call for Papers Nullcon Berlin 2026 | Submit Resea.. cc @https@infosec.exchange:x.comnullcon! https://cfptime.org/cfps/3468/ #cfp #infosec #https:x.comnullcon
0
0
0
cfp_time :verified: @cfp_time@infosec.exchange · Jul 08, 2026
📢🔔 Just 1 more week to submit your talk at CyberHack Conference cc @https@infosec.exchange:sessionize.comcyberhack-conference! https://cfptime.org/cfps/3484/ #cfp #infosec #https:sessionize.comcyberhack-conference
0
0
0
C. @cazabon@mindly.social · Jul 03, 2026
Replying to @djb@mastodon.cr.yp.to
@djb@mastodon.cr.yp.to They're also getting really testy about us "regular Joes" showing up and voting against publication of the deliberately-weak solo PQ recommendation. You can practically feel their frustration - "We stuffed this list to pass this vote, and they're stuffing it against us!". The blatant hypocrisy of the "not standards-track" thing bugged me too when it came through the list. Anyone who follows me and cares about cryptography or their privacy: read djb's short blurb here: https://nsa.2026.action.cr.yp.to/ There's action you can take to try to prevent the NSA's attempt to get the world to standardize on deliberately weakened cryptography in TLS - i.e. the thing that protects every important web connection on the planet. They have form for doing this in the past, and are trying again. There are other links in the above page for more information. #TLS #HTTP #HTTPS #cryptography #privacy
5
0
5
𝕂𝚞𝚋𝚒𝚔ℙ𝚒𝚡𝚎𝚕™ @kubikpixel@chaos.social · Feb 09, 2024
Replying to @kubikpixel@chaos.social
🧵 …hier noch eine Liste von aktiven und öffentlich nutzbaren #SearXNG Instanzen über #HTTPS und/oder #Tor. Die Liste zeigt nicht nur den #online Zustand der #Suchmaschinen an, sondern auch deren Geschwindigkeit und Nuzzeit. 🔎 https://searx.space
11
1
7
cfp_time :verified: @cfp_time@infosec.exchange · Jun 30, 2026
📢🔔 Just 1 more day to submit your talk at BSides Greenville cc @https@infosec.exchange:www.linkedin.comcompanybsidesgvlposts! https://cfptime.org/cfps/3465/ #cfp #infosec #https:www.linkedin.comcompanybsidesgvlposts
0
0
0
Ivan Enderlin 🦀 @hywan@floss.social · Jun 09, 2026
Let's Encrypt bans certificate usage in any US sanctioned territory, https://news.ycombinator.com/item?id=48453275 Here we are. Let’s Encrypt is not trustable anymore. Any alternatives? Feeling sad. #LetsEncrypt #tls #ssl #https
113
14
149