<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>ITrig</title>
    <link>http://www.itrig.de/</link>
    <description>Plattform für Open Source - Linux - IT Sicherheit</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.6-beta1 - http://www.s9y.org/</generator>
    
    <image>
    <url>rsslogo.png</url>
    <title>RSS: ITrig - Plattform für Open Source - Linux - IT Sicherheit</title>
    <link>http://www.itrig.de/</link>
    <width></width>
    <height></height>
</image>

<item>
    <title>SSH - Zugangsberechtigungen via Schlüssel einschränken</title>
    <link>http://www.itrig.de/index.php?/archives/2450-SSH-Zugangsberechtigungen-via-Schluessel-einschraenken.html</link>
    
    <comments>http://www.itrig.de/index.php?/archives/2450-SSH-Zugangsberechtigungen-via-Schluessel-einschraenken.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2450</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.itrig.de/rss.php?version=2.0&amp;type=comments&amp;cid=2450</wfw:commentRss>
    

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Bekannterma&amp;szlig;en sind SSH-Verbindungen weitestgehend das Standardverfahren, um Serververbindungen sicher aufzubauen.&lt;br /&gt;
Normalerweise kommt in Bezug auf Authentifizierung eine Kombination aus Nutzernamen und Passwort zum Einsatz. Es gibt aber auch Varianten mit Zertifikat oder Schl&amp;uuml;ssel.&lt;br /&gt;
Letzteres sollte nicht nur Standard, sondern heute auch Thema sein. &amp;Uuml;blicherweise erh&amp;auml;ltst du via SSH Vollzugriff (oke vielleicht kein root), es besteht allerdings die M&amp;ouml;glichkeit diesen &lt;span class=&quot;mw-page-title-main&quot;&gt;per &lt;em&gt;authorized keys&lt;/em&gt; &lt;/span&gt;zu regulieren, so kannst du in einem SSH Schl&amp;uuml;ssel etwa eine IP-Beschr&amp;auml;nkung hinterlegen, um einen Zugriff weiter einzuschr&amp;auml;nken.&lt;/p&gt;

&lt;h2&gt;SSH AuthorizedKeysFile Format&lt;/h2&gt;

&lt;p&gt;In einem Standardsetup findest du vorhandene Schl&amp;uuml;ssel unter &lt;em&gt;~/.ssh/authorized_keys&lt;/em&gt; und genau hier m&amp;ouml;chte ich heute einen genaueren Blick darauf werfen.&lt;br /&gt;
Dort liegen die &amp;ouml;ffentlichen SSH-Schl&amp;uuml;ssel, die einen bestimmten Aufbau haben, dazu gleich mehr. Auch wird zwischen &lt;em&gt;Version 1&lt;/em&gt; und &lt;em&gt;Version 2&lt;/em&gt; unterschieden, wobei zwei der Standard sein sollte.&lt;br /&gt;
&amp;Auml;ltere Semester kennen eventuell noch&amp;#160;&lt;em&gt; ~/.ssh/authorized_keys2&lt;/em&gt;,&amp;#160; was urspr&amp;uuml;nglich f&amp;uuml;r den zweiten Protokolltyp vorgesehen war, allerdings seit 2001 deprecated ist und heute maximal noch von b&amp;ouml;swilligen Akteuren missbraucht wird.&lt;br /&gt;
Zur&amp;uuml;ck zu den Schl&amp;uuml;sseln, folgende Aufteilung besitzen diese laut Norm:&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;&amp;Ouml;ffentliche Schl&amp;uuml;ssel des Protokolls 1 bestehen aus den folgenden durch Leerzeichen getrennten Feldern: &lt;em&gt;Optionen, Bits, Exponent, Modulus, Kommentar&lt;/em&gt;.&lt;/li&gt;
    &lt;li&gt;&amp;Ouml;ffentliche Schl&amp;uuml;ssel des Protokolls 2 bestehen aus: &lt;em&gt;Optionen, Keytype, base64-kodierter Schl&amp;uuml;ssel, Kommentar&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;Das Optionsfeld ist optional. Sein Vorhandensein wird dadurch bestimmt, ob die Zeile mit einer Zahl beginnt oder nicht (das Optionsfeld beginnt nie mit einer Zahl).&lt;/li&gt;
    &lt;li&gt;Die Optionen (falls vorhanden) bestehen aus durch Kommata getrennten Optionsangaben.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Im Detail erm&amp;ouml;glichen sie, verschiedene Werte mitzugeben und anderen eine IP-Einschr&amp;auml;nkung.&lt;/p&gt;

&lt;h2&gt;SSH - Zugangsberechtigungen einschr&amp;auml;nken&lt;/h2&gt;

&lt;p&gt;Hier ein erstes Beispiel:&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;from=&quot;192.168.1.?,*.example.com&quot; ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDQu9QfY+g0XRVbRTaMPLRN2PVmrRCpaDRaxTHPqggn3 user@example.com&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Zur Erkl&amp;auml;rung: Du kannst in den Optionen Wildcards setzen. Das hei&amp;szlig;t, im Beispiel oben h&amp;auml;tte 192.168.1.1-9 Zugriff, sowie Subdomains von example.com.&lt;/p&gt;

&lt;p&gt;Eine weitere M&amp;ouml;glichkeit w&amp;auml;re, die Option &lt;em&gt;command&lt;/em&gt; zu verwenden, um direkte Befehle zu hinterlegen:&lt;br type=&quot;_moz&quot; /&gt;
&amp;#160;&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;command=&quot;bash /opt/startworkflow&quot; ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDQu9QfY+g0XRVbRTaMPLRN2PVmrRCpaDRaxTHPqggn3 user@example.com

command=&quot;/opt/mehrere_befehle.sh&quot; ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDQu9QfY+g0XRVbRTaMPLRN2PVmrRCpaDRaxTHPqggn3 user@example.com&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Der Nutzer hat hier nur das Recht, das vorgegebene Kommando auszuf&amp;uuml;hren, nicht mehr und nicht weniger&lt;/p&gt;

&lt;p&gt;Kontrollieren kannst du solche Kommandos mit der Variable &lt;em&gt;$SSH_ORIGINAL_COMMAND&lt;/em&gt;. Diese enth&amp;auml;lt die urspr&amp;uuml;ngliche Befehlszeile&lt;br /&gt;
sobald ein erzwungener Befehl ausgef&amp;uuml;hrt wird.&lt;br /&gt;
Wenn du mehrere Befehle erlauben willst, kommst du nicht drumherum, ein Script zu schreiben, was diese Beschr&amp;auml;nkungen mehr oder weniger aushebelt.&lt;/p&gt;

&lt;p&gt;Ein weiteres Beispiel zeigt die Verwendungen der Kommandos f&amp;uuml;r SSH Tunneling bzw. Port Forwarding:&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;restrict,port-forwarding,permitopen=&quot;localhost:8765&quot; ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDQu9QfY+g0XRVbRTaMPLRN2PVmrRCpaDRaxTHPqggn3 user@example.com&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Hier wird explizit erlaubt, eine Verbindung auf Port 8765 herzustellen und alles andere bitte bleiben zu lassen. Auch echter Shell-Zugang (&lt;em&gt;no-pty&lt;/em&gt; ist in &lt;em&gt;restrict&lt;/em&gt; enthalten) wird unterbunden.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160; restrict&lt;br /&gt;
Enable all restrictions, i.e. disable port, agent and X11 forwarding, as well as disabling PTY allocation and execution of ~/.ssh/rc.&amp;#160; If any future restriction capabilities are added to authorized_keys files they will be included in this set.&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Du hast nun einen kleinen Einblick in die vielf&amp;auml;ltigen Konfigurationsm&amp;ouml;glichkeiten von SSH-Schl&amp;uuml;sseln erhalten. Gerade IP-Beschr&amp;auml;nkungen oder Limitierung auf Befehle kommen im Alltag vor und sind in diesem Sinne keine neue Methode.&lt;br /&gt;
SSH Tunneling ist eigentlich schon wieder ein anderes Kapitel.&lt;br /&gt;
Einen &amp;Uuml;berblick der SSH Befehle findest du bei den &lt;a href=&quot;https://manpages.ubuntu.com/manpages/bionic/en/man8/sshd.8.html#authorized_keys%20file%20format&quot; target=&quot;_blank&quot;&gt;Ubuntu Manpages&lt;/a&gt;. Viel Spa&amp;szlig;.&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Thu, 26 Dec 2024 20:48:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2450-guid.html</guid>
    <category>anleitung</category>
<category>authorized_keys</category>
<category>beispiele</category>
<category>berechtigungen</category>
<category>ip beschränkung</category>
<category>kommando</category>
<category>sicherheit</category>
<category>ssh schlüssel</category>
<category>ssh tunneling</category>
<category>ssh verbindungen einschränken</category>
<category>tutorial</category>

</item>
<item>
    <title>[Lösung] Bildschirm flackert mit Ubuntu</title>
    <link>http://www.itrig.de/index.php?/archives/2449-Loesung-Bildschirm-flackert-mit-Ubuntu.html</link>
            <category>Debian Ubuntu</category>
            <category>OpenSource</category>
            <category>Tipps</category>
            <category>Tools</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2449-Loesung-Bildschirm-flackert-mit-Ubuntu.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2449</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.itrig.de/rss.php?version=2.0&amp;type=comments&amp;cid=2449</wfw:commentRss>
    

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Seit einiger Zeit haben bei mir Bildschirme von Ubuntu 24.04 LTS Systemen einen komischen Effekt. Sie flackern gelegentlich.&lt;br /&gt;
Zun&amp;auml;chst hatte ich den Verdacht, dass Grafiktreiber, Interferenzen oder gar Schadsoftware daf&amp;uuml;r verantwortlich sind. Beides konnte sich nicht best&amp;auml;tigen, also muss das Problem ein anderes sein.&lt;/p&gt;

&lt;p&gt;Die L&amp;ouml;sung war nicht so einfach zu finden, aber zumindest die Ursache. Es ist der Kernel. Die Kernel Config wurde aktualisiert, siehe &lt;a href=&quot;https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/noble/commit/?id=77e530c1a864c601b96622db03bc1f38e51155f1&quot; target=&quot;_blank&quot;&gt;UBUNTU: [Config] enable Intel DMA remapping by default&lt;/a&gt;.&lt;br /&gt;
Dabei wurde &lt;em&gt;CONFIG_INTEL_IOMMU_DEFAULT_ON&lt;/em&gt; gesetzt. Wie du direkt siehst, betrifft der Flackerfehler wohl nur Intel Systeme und nur &amp;auml;ltere.&lt;/p&gt;

&lt;p&gt;IOMMU steht f&amp;uuml;r Input-Output Memory Management Unit und soll f&amp;uuml;r zus&amp;auml;tzliche Sicherheit bei Speicherzugriffen f&amp;uuml;hren oder eben zu flackern, wie du sicher bemerkt hast, wenn du diesen Artikel liest.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3203 --&gt;&lt;img alt=&quot;flickering-ubuntu&quot; class=&quot;serendipity_image_center&quot; height=&quot;300&quot; loading=&quot;lazy&quot;  srcset=&quot;&quot; src=&quot;http://www.itrig.de/uploads/flickering-ubuntu.png&quot; title=&quot;flickering-ubuntu&quot; width=&quot;300&quot; /&gt;&lt;/p&gt;

&lt;h3&gt;L&amp;ouml;sung - Ubuntu flackernden Bildschirm abschalten&lt;/h3&gt;

&lt;p&gt;Doch was ist die L&amp;ouml;sung f&amp;uuml;r das Problem. Ganz einfach, schalte die Funktion einfach wieder ab und du hast wieder klare Sicht. Via &lt;strong&gt;&lt;em&gt;CMDLINE&lt;/em&gt;&lt;/strong&gt; kannst du das direkt umsetzen, nach einem Neustart sollte alles wieder korrekt funktionieren.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;#grub editieren
sudo nano /etc/default/grub

#intel_iommu=igfx_off hinzufügen
GRUB_CMDLINE_LINUX_DEFAULT=&quot;quiet splash intel_iommu=igfx_off&quot;&lt;/code&gt;&lt;/pre&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;sudo update-grub

#reboot&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Mit diesem Befehl schaltest du IOMMU f&amp;uuml;r die Intel Grafikkarte&amp;#160;(iGPU) ab und die Effekte geh&amp;ouml;ren der Vergangenheit an.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3204 --&gt;&lt;img alt=&quot;ubuntu-flickering-cmdline&quot; class=&quot;serendipity_image_center&quot; height=&quot;277&quot; loading=&quot;lazy&quot;  srcset=&quot;http://www.itrig.de/uploads/ubuntu-flickering-cmdline.400W.serendipityThumb.png 600w,http://www.itrig.de/uploads/ubuntu-flickering-cmdline.png 646w&quot; src=&quot;http://www.itrig.de/uploads/ubuntu-flickering-cmdline.png&quot; title=&quot;ubuntu-flickering-cmdline&quot; width=&quot;646&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Wann Canonical mit einem offiziellen Fix f&amp;uuml;r dieses Problem daherkommt, ist offen.&lt;br /&gt;
Du solltest mit dieser L&amp;ouml;sung auf jeden Fall wieder normal arbeiten k&amp;ouml;nnen.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Fri, 04 Oct 2024 17:17:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2449-guid.html</guid>
    <category>alte kernel entfernen</category>
<category>beheben</category>
<category>bildschirflackern</category>
<category>bildschirm flackert</category>
<category>debian ubuntu</category>
<category>effekte</category>
<category>flackern</category>
<category>flickering</category>
<category>flimmern</category>
<category>intel</category>
<category>iommu</category>
<category>lösen</category>
<category>lösung</category>
<category>lts</category>
<category>monitor</category>
<category>opensource</category>
<category>screen</category>
<category>tipps</category>
<category>tools</category>
<category>ubuntu</category>
<category>ubuntu 24.04</category>

</item>
<item>
    <title>Was ist neu in Postfix 3.9</title>
    <link>http://www.itrig.de/index.php?/archives/2448-Was-ist-neu-in-Postfix-3.9.html</link>
            <category>Debian Ubuntu</category>
            <category>OpenSource</category>
            <category>Tipps</category>
            <category>Tools</category>
            <category>Web</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2448-Was-ist-neu-in-Postfix-3.9.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2448</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.itrig.de/rss.php?version=2.0&amp;type=comments&amp;cid=2448</wfw:commentRss>
    

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Anfang M&amp;auml;rz wurde eine neue &lt;strong&gt;Postfix Version 3.9&lt;/strong&gt; ver&amp;ouml;ffentlicht. Nach fast einem Jahr Entwicklungszeit l&amp;ouml;st diese Version gleichzeitig den alten stabilen Zweig 3.5 ab, welcher aus dem Jahr 2020 stammt.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:2156 --&gt;&lt;img alt=&quot;Postfix&quot; class=&quot;serendipity_image_center&quot; height=&quot;211&quot; loading=&quot;lazy&quot;  srcset=&quot;&quot; src=&quot;http://www.itrig.de/uploads/postfix.jpg&quot; title=&quot;Postfix&quot; width=&quot;300&quot; /&gt;&lt;/p&gt;

&lt;h2&gt;Abschaltungen&lt;/h2&gt;

&lt;p&gt;Mit dieser neuen Major Version wurden alte Z&amp;ouml;pfe abgeschnitten und alte, wirklich alte, MySQL Versionen &amp;lt; 4.0. MySQL werden nicht mehr unterst&amp;uuml;tzt.&lt;/p&gt;

&lt;p&gt;Auch Features wie &amp;quot;&lt;em&gt;permit_naked_ip_address&lt;/em&gt;&amp;quot;, &amp;quot;&lt;em&gt;check_relay_domains&lt;/em&gt;&amp;quot; und &amp;quot;&lt;em&gt;reject_maps_rbl&lt;/em&gt;&amp;quot; wurden entfernt. Die Funktionen &amp;quot;&lt;em&gt;&lt;a href=&quot;https://www.postfix.org/postconf.5.html#disable_dns_lookups&quot;&gt;disable_dns_lookups&lt;/a&gt;&lt;/em&gt;&amp;quot; und &amp;quot;&lt;em&gt;&lt;a href=&quot;https://www.postfix.org/postconf.5.html#permit_mx_backup&quot;&gt;permit_mx_backup&lt;/a&gt;&lt;/em&gt;&amp;quot; wurden als &amp;uuml;berholt markiert und werden entfernt.&lt;/p&gt;

&lt;h2&gt;&amp;Auml;nderungen&lt;/h2&gt;

&lt;p&gt;Daneben wurden die angek&amp;uuml;ndigten Sicherheitsfeatures implementiert, um unter anderem gegen SMTP Smuggling vorzugehen.&lt;br /&gt;
So m&amp;uuml;ssen SMTP Clients nun &lt;em&gt;&amp;lt;CR&amp;gt;&amp;lt;LF&amp;gt;.&amp;lt;CR&amp;gt;&amp;lt;LF&amp;gt;&lt;/em&gt; senden, um das Ende eines Datenstroms zu signalisieren.&lt;br /&gt;
Die Funktion &lt;a href=&quot;https://www.postfix.org/postconf.5.html#smtpd_forbid_unauth_pipelining&quot;&gt;&amp;quot;&lt;em&gt;smtpd_forbid_unauth_pipelining&lt;/em&gt;&amp;quot;&lt;/a&gt; trennt ab sofort SMTP-Clients, die gegen RFC 2920 (oder 5321) Befehlspipelining-Beschr&amp;auml;nkungen versto&amp;szlig;en.&lt;br /&gt;
Zus&amp;auml;tzlich gab es Formatierungs&amp;auml;nderungen im Mailheader. Postfix verwendet jetzt zweistellige Tagesformate. Hei&amp;szlig;t, einstelligen Nummern wird eine Null vorgestellt.&lt;/p&gt;

&lt;h2&gt;Neuerungen&lt;/h2&gt;

&lt;p&gt;Nat&amp;uuml;rlich gab es auch einige Neuerungen in Postfix 3.9, die dich sicher interessieren werden.&lt;/p&gt;

&lt;ol&gt;
    &lt;li&gt;&lt;strong&gt;MongoDB&lt;/strong&gt;: Postfix spricht MongoDB, was es dir erlaubt, Daten wie &lt;em&gt;aliases&lt;/em&gt; oder &lt;em&gt;canonical&lt;/em&gt; dort abzulegen&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;ID Weiterleitung: &lt;/strong&gt;IDs k&amp;ouml;nnen nun via &lt;em&gt;ENVID (Envelope ID)&lt;/em&gt; weitergeleitet werden&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;MySQL and PostgreSQL Verbesserungen: &lt;/strong&gt;Solltest du MySQL oder PSQL einsetzen, werden die Parameter &amp;quot;&lt;em&gt;idle_interval&lt;/em&gt;&amp;quot; und &amp;quot;&lt;em&gt;retry_interval&lt;/em&gt;&amp;quot; ab sofort unterst&amp;uuml;tzt. Das erleichtert dir das Verbindungsmanagement&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Raw Public Key Support:&lt;/strong&gt; Erlaubt dir die Verwendung eines selbst signierten Zertifikats anstatt eines x509.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;OpenSSL Konfiguration:&lt;/strong&gt; Postfix unterst&amp;uuml;tzt jetzt eigene OpenSSL Konfigurationsdateien &amp;quot;&lt;em&gt;&lt;a href=&quot;https://www.postfix.org/postconf.5.html#tls_config_file&quot;&gt;tls_config_file&lt;/a&gt;&lt;/em&gt;&amp;quot; und &amp;quot;&lt;em&gt;&lt;a href=&quot;https://www.postfix.org/postconf.5.html#tls_config_name&quot;&gt;tls_config_name&lt;/a&gt;&lt;/em&gt;&amp;quot;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;Security&lt;/h2&gt;

&lt;p&gt;Auf Seiten der Sicherheit gab es ebenfalls Neuerungen.&lt;br /&gt;
Das weiter oben bereits erw&amp;auml;hnte &amp;quot;&lt;em&gt;&lt;a href=&quot;https://www.postfix.org/postconf.5.html#smtpd_forbid_unauth_pipelining&quot;&gt;smtpd_forbid_unauth_pipelining&lt;/a&gt; = yes&lt;/em&gt;&amp;quot; gegen Blind Angriffe (SSRF Angriffe) und das ebenfalls genannte Signaling zum Ende des Datenstroms (SMTP Smuggling) z&amp;auml;hlen hier mit rein. Letzteres hat mit &amp;quot;&lt;em&gt;&lt;a href=&quot;https://www.postfix.org/postconf.5.html#smtpd_forbid_bare_newline&quot;&gt;smtpd_forbid_bare_newline&lt;/a&gt; = normalize&lt;/em&gt;&amp;quot; eine weitere Sicherheitsfunktion erhalten. Gleiches gilt f&amp;uuml;r das neue &amp;quot;&lt;em&gt;&lt;a href=&quot;https://www.postfix.org/postconf.5.html#cleanup_replace_stray_cr_lf&quot;&gt;cleanup_replace_stray_cr_lf&lt;/a&gt; = yes&lt;/em&gt;&amp;quot;&lt;br /&gt;
Als Ma&amp;szlig;nahme gegen Amplification Angriffe wurden die Abfragen des DNS Clients auf 100 reduziert, gewisserma&amp;szlig;en ein Rate Limiter am oberen Ende.&lt;/p&gt;

&lt;p&gt;Vollst&amp;auml;ndige &lt;a href=&quot;https://www.postfix.org/announcements/postfix-3.9.0.html&quot;&gt;Release Notes&lt;/a&gt;&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 24 Mar 2024 10:29:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2448-guid.html</guid>
    <category>änderungen</category>
<category>debian ubuntu</category>
<category>mongodb</category>
<category>mta</category>
<category>neuerungen</category>
<category>opensource</category>
<category>postfix</category>
<category>postfix 3.9</category>
<category>raw public key</category>
<category>release</category>
<category>smtp smuggling</category>
<category>tipps</category>
<category>tools</category>
<category>web</category>

</item>
<item>
    <title>Was ist Ubuntu Pro und wie schalte ich es ab?</title>
    <link>http://www.itrig.de/index.php?/archives/2447-Was-ist-Ubuntu-Pro-und-wie-schalte-ich-es-ab.html</link>
            <category>Debian Ubuntu</category>
            <category>OpenSource</category>
            <category>Tipps</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2447-Was-ist-Ubuntu-Pro-und-wie-schalte-ich-es-ab.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2447</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://www.itrig.de/rss.php?version=2.0&amp;type=comments&amp;cid=2447</wfw:commentRss>
    

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Ubuntu Pro ist eine Updateerweiterung f&amp;uuml;r bestimmte Pakete der bekannten Distribution.&lt;br /&gt;
Ubuntu LTS soll so 10 Jahre Abdeckung f&amp;uuml;r &amp;uuml;ber 25.000 Pakete erhalten. Zus&amp;auml;tzlich erh&amp;auml;ltst du Kernel Livepatching, Telefonsupport und Pakete f&amp;uuml;rs Hardening (NIST-certified FIPS crypto-modules, USG hardening mit CIS and DISA-STIG Profilen und Common Criteria EAL2).&lt;/p&gt;

&lt;p&gt;Leider wird f&amp;uuml;r dieses kostenpflichtige Produkt Werbung gemacht, auf dem Terminal und im Ubuntu Update Manager.&lt;br /&gt;
Sollte dich das st&amp;ouml;ren, kannst du diese Meldungen mit wenigen Befehlen abschalten.&lt;br /&gt;
Alternativ kannst du dich auch einfach f&amp;uuml;r &lt;a href=&quot;https://ubuntu.com/pro/subscribe&quot; target=&quot;_blank&quot; title=&quot;https://ubuntu.com/pro/subscribe&quot;&gt;Ubuntu Pro&lt;/a&gt; anmelden, denn der Zugang ist f&amp;uuml;r Privatanwender f&amp;uuml;r bis zu f&amp;uuml;nf Installationen umsonst.&lt;/p&gt;

&lt;h2&gt;Ubuntu Pro Nachrichten abschalten&lt;/h2&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;sudo pro config set apt_news=false &lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Das Abschalten der APT News reicht nicht ganz aus, um dir die Werbeeinblendung zu ersparen.&lt;br /&gt;
Du musst zus&amp;auml;tzlich eine Datei editieren und deren Inhalt auskommentieren&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nano /etc/apt/apt.conf.d/20apt-esm-hook.conf&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;!-- s9ymdb:3201 --&gt;&lt;img alt=&quot;ubuntu-pro-werbung-abschalten&quot; class=&quot;serendipity_image_center&quot; height=&quot;183&quot; loading=&quot;lazy&quot;  srcset=&quot;http://www.itrig.de/uploads/ubuntu-pro-werbung-abschalten.400W.serendipityThumb.png 600w,http://www.itrig.de/uploads/ubuntu-pro-werbung-abschalten.png 676w&quot; src=&quot;http://www.itrig.de/uploads/ubuntu-pro-werbung-abschalten.png&quot; title=&quot;ubuntu-pro-werbung-abschalten&quot; width=&quot;676&quot; /&gt;&lt;/p&gt;

&lt;h2&gt;Ubuntu Advantage deaktivieren oder deinstallieren&lt;/h2&gt;

&lt;p&gt;Optional kannst du das &lt;em&gt;Ubuntu Advantage Paket&lt;/em&gt; entfernen, bzw. die &lt;em&gt;Expanded SecurityMaintenance (ESM)&lt;/em&gt; abschalten, wenn du magst.&lt;br /&gt;
Ubuntu Advantage war der Vorg&amp;auml;nger von Ubuntu Pro&lt;br /&gt;
Dieses beinhaltet wie die Pro-Variante Kernel Livepatching, Unterst&amp;uuml;tzung f&amp;uuml;r Landscape oder Zugriff auf eine Wissensdatenbank. Alles Dinge, die f&amp;uuml;r Privatanwender nur bedingt interessant sind.&lt;/p&gt;

&lt;pre&gt;
&lt;code&gt;sudo systemctl disable ubuntu-advantage
#oder
sudo apt remove ubuntu-advantage-tools
# esm hook deaktivieren
sudo mv /etc/apt/apt.conf.d/20apt-esm-hook.conf /etc/apt/apt.conf.d/20apt-esm-hook.conf.disabled&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;Unterschied Ubuntu Advantage und Ubuntu Pro&lt;/h2&gt;

&lt;p&gt;Solltest du nun maximal verwirrt sein, was zu welchem Supportmodell geh&amp;ouml;rt und wie es unterst&amp;uuml;tzt wird, hier ein Vergleich von &lt;a href=&quot;https://endoflife.date/ubuntu#fnref:1:1&quot; target=&quot;_blank&quot; title=&quot;https://endoflife.date/ubuntu#fnref:1:1&quot;&gt;endoflifedate&lt;/a&gt;. Ubuntu Pro (Infra-Only) steht in der Tabelle f&amp;uuml;r das alte Ubuntu Advantage.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3202 --&gt;&lt;img alt=&quot;ubuntu-lts-vs-ubuntu-pro&quot; class=&quot;serendipity_image_center&quot; height=&quot;363&quot; loading=&quot;lazy&quot;  srcset=&quot;http://www.itrig.de/uploads/ubuntu-lts-vs-ubuntu-pro.400W.serendipityThumb.png 600w,http://www.itrig.de/uploads/ubuntu-lts-vs-ubuntu-pro.png 754w&quot; src=&quot;http://www.itrig.de/uploads/ubuntu-lts-vs-ubuntu-pro.png&quot; title=&quot;ubuntu-lts-vs-ubuntu-pro&quot; width=&quot;754&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Mon, 26 Feb 2024 10:19:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2447-guid.html</guid>
    <category>abschalten</category>
<category>deaktivieren</category>
<category>debian ubuntu</category>
<category>entfernen</category>
<category>opensource</category>
<category>tipps</category>
<category>ubuntu pro</category>
<category>ubuntu werbenachrichten</category>
<category>ubuntu werbung</category>
<category>unterschied ubuntu advantage und ubuntu pro</category>

</item>
<item>
    <title>Firefox - Cookie-Dialog-Blocker aktivieren</title>
    <link>http://www.itrig.de/index.php?/archives/2446-Firefox-Cookie-Dialog-Blocker-aktivieren.html</link>
            <category>Debian Ubuntu</category>
            <category>OpenSource</category>
            <category>Programme</category>
            <category>Sicherheit</category>
            <category>Tipps</category>
            <category>Tools</category>
            <category>Web</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2446-Firefox-Cookie-Dialog-Blocker-aktivieren.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2446</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.itrig.de/rss.php?version=2.0&amp;type=comments&amp;cid=2446</wfw:commentRss>
    

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;h3&gt;Firefox – Cookie-Dialog-Blocker&lt;/h3&gt;

&lt;p&gt;Vor kurzem ist der neue Firefox 120 erschienen, er bringt eine nützliche Cookiedialog Blockfunktion mit.&lt;br /&gt;
Du kennst nervige Pop-ups zur Genüge, diese haben in den vergangenen Jahren das Internet zu einem Klicknet gemacht.&lt;/p&gt;

&lt;p&gt;Praktischerweise bringt der neue Firefox eine Funktion mit, um diese automatisch abzulehnen. Heißt, sie werden nicht einfach ausgeblendet, sondern sie werden beantwortet.&lt;/p&gt;

&lt;p&gt;Leider ist diese Funktion bisher nur deutschen Nutzer und dem privaten Modus vorbehalten. Das kannst du allerdings einfach über &lt;em&gt;&lt;strong&gt;about:config&lt;/strong&gt;&lt;/em&gt; ändern.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3198 --&gt;&lt;img alt=&quot;firefox-cookie-banner-dialog-aktivieren&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/firefox-cookie-banner-dialog-aktivieren.800W.serendipityThumb.png 1200w,http://www.itrig.de/uploads/firefox-cookie-banner-dialog-aktivieren.400W.serendipityThumb.png 600w&quot; src=&quot;http://www.itrig.de/uploads/firefox-cookie-banner-dialog-aktivieren.png&quot; style=&quot;width:924px&quot; title=&quot;firefox-cookie-banner-dialog-aktivieren&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Du musst lediglich nach den Variablen &lt;em&gt;&lt;strong&gt;cookiebanners.service.mode&lt;/strong&gt;&lt;/em&gt; suchen und die Werte auf &lt;em&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;/em&gt; setzen.&lt;/p&gt;

&lt;p&gt;Sollten Cookie-Banner weiterhin nicht verschwinden, kannst du auch den Wert &lt;em&gt;&lt;strong&gt;2&lt;/strong&gt;&lt;/em&gt; setzen. Dieser sorgt dafür, dass Cookie Dialoge, die nicht abgelehnt werden können, automatisch akzeptiert werden.&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;0 Cookie-Banner Blocker deaktiviert&lt;/li&gt;
    &lt;li&gt;1 Cookie-Banner Blocker lehnt ab, sofern möglich&lt;/li&gt;
    &lt;li&gt;2 Cookie-Banner Blocker lehnt ab, sofern möglich und akzeptiert den Rest&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Kontrollieren kannst du die Funktion in den Privacy Einstellungen &lt;em&gt;&lt;strong&gt;about:preferences#privacy.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Natürlich kannst du die neue Surffreude ebenfalls auf Webseiten mit Cookie-Banner testen, so etwas wie chip.de oder dergleichen. Hier hat bei mir das Ablehnen nicht funktioniert, sondern nur Wert 2 mit Ablehnen, wenn möglich, und den Rest akzeptieren.&lt;/p&gt;

&lt;h3&gt;Fingerabdruck ade&lt;/h3&gt;

&lt;p&gt;Eine weitere praktische Funktion, um den Fingerabdruck beim Surfen zu reduzieren, bietet der neue Fingerprinting-Schutz in der Canvas API, welcher allerdings auch nur im privaten Modus aktiv ist.&lt;/p&gt;

&lt;h3&gt;Links ohne Tracking kopieren&lt;/h3&gt;

&lt;p&gt;Eine ebenfalls hervorragende neue Funktion ist das Kopieren eines Links über das Kontextmenü ohne Trackinginformationen.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3199 --&gt;&lt;img alt=&quot;firefox-link-ohne-tracking&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot; src=&quot;http://www.itrig.de/uploads/firefox-link-ohne-tracking.png&quot; style=&quot;width:305px&quot; title=&quot;firefox-link-ohne-tracking&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Alle weiteren Neuerungen von Firefox 120 findest du bei &lt;a href=&quot;https://www.mozilla.org/en-US/firefox/120.0/releasenotes/&quot; target=&quot;_blank&quot; title=&quot;https://www.mozilla.org/en-US/firefox/120.0/releasenotes/&quot;&gt;Mozilla&lt;/a&gt;.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Wed, 22 Nov 2023 13:21:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2446-guid.html</guid>
    <category>120</category>
<category>aktivieren</category>
<category>anonymer surfen</category>
<category>blockieren</category>
<category>canvas fingerabdruck</category>
<category>cookie banner</category>
<category>cookie banner dialog</category>
<category>datensicherheit</category>
<category>debian ubuntu</category>
<category>einstellungen</category>
<category>fingerprintingschutz</category>
<category>firefox</category>
<category>neuerungen</category>
<category>opensource</category>
<category>programme</category>
<category>sicherheit</category>
<category>tipps</category>
<category>tools</category>
<category>web</category>

</item>

</channel>
</rss>
