<?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 - Hacking</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 - Hacking - Plattform für Open Source - Linux - IT Sicherheit</title>
    <link>http://www.itrig.de/</link>
    <width></width>
    <height></height>
</image>

<item>
    <title>truffleHog3 – Passwörter und Zugangsdaten in Git, Github, Gitlab oder AWS finden und entfernen</title>
    <link>http://www.itrig.de/index.php?/archives/2436-truffleHog3-Passwoerter-und-Zugangsdaten-in-Git,-Github,-Gitlab-oder-AWS-finden-und-entfernen.html</link>
            <category>Debian Ubuntu</category>
            <category>Entwicklung</category>
            <category>Hacking</category>
            <category>OpenSource</category>
            <category>Pentesting</category>
            <category>Tools</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2436-truffleHog3-Passwoerter-und-Zugangsdaten-in-Git,-Github,-Gitlab-oder-AWS-finden-und-entfernen.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2436</wfw:comment>

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

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Bereits im April dieses Jahres wurde Version 3 des Repository-Security-Tools Trufflehog veröffentlicht. Zeit, einen eigenen Artikel über das bekannte Kali Tool zu verfassen.&lt;/p&gt;

&lt;h1&gt;Was ist Trufflehog&lt;/h1&gt;

&lt;p&gt;Leaked credentials oder secret keys sollten nicht in Github Repositorys zu finden sein, dennoch passiert dies öfters als gedacht. Genau hier setzt das Tool &lt;strong&gt;truffleHog3&lt;/strong&gt; an, es scannt Repositorys und mehr auf Geheimnisse wie Zugangsdaten, API Keys usw.&lt;/p&gt;

&lt;p&gt;Das Security-Tool durchläuft dabei die gesamte Commit-Historie jedes Branches, prüft jedes diff von jedem commit und sucht nach Geheimnissen.&lt;/p&gt;

&lt;p&gt;Möglich wird dies unter anderem durch die Verwendung von regulären Ausdrücken und Entropie.&lt;/p&gt;

&lt;p&gt;Mit der Version 3 unterstützt truffleHog inzwischen mehr als 700 verschiedene Key Types von AWS, Azure, Confluent oder Facebook. Eine Übersicht der Detektoren ist &lt;a href=&quot;https://github.com/trufflesecurity/trufflehog/tree/main/pkg/detectors&quot; target=&quot;_blank&quot; title=&quot;https://github.com/trufflesecurity/trufflehog/tree/main/pkg/detectors&quot;&gt;hier&lt;/a&gt; zu finden.&lt;/p&gt;

&lt;p&gt;Folgende Code Quellen werden momentan unterstützt:&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;git&lt;/li&gt;
    &lt;li&gt;github&lt;/li&gt;
    &lt;li&gt;gitlab&lt;/li&gt;
    &lt;li&gt;S3&lt;/li&gt;
    &lt;li&gt;filesystem&lt;/li&gt;
    &lt;li&gt;syslog&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Installation&lt;/h3&gt;

&lt;p&gt;Die Trufflehog Installation erfordert eine funktionierende &lt;a href=&quot;https://itrig.de/index.php?/archives/2377-Installation-einer-aktuellen-Go-Version-auf-Ubuntu.html&quot; target=&quot;_blank&quot; title=&quot;https://itrig.de/index.php?/archives/2377-Installation-einer-aktuellen-Go-Version-auf-Ubuntu.html&quot;&gt;GO Installation&lt;/a&gt;. Alternativ kann auch auf Python Pip zurückgegriffen werden, allerdings wird via Pip momentan keine aktuelle Version angeboten. Für einen Test bietet sich die Docker Variante an.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;#Aktuellste Version
git clone https://github.com/trufflesecurity/trufflehog.git
cd trufflehog
go install oder go build

#Via Python Pip (allerdings steht hier nur Version 3.0.x zur Verfügung)
pip3 install trufflehog3

#Die aktuellste Version via Docker Paket laufen lassen

docker run -it -v &quot;$PWD:/pwd&quot; trufflesecurity/trufflehog:latest github --org=trufflesecurity&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Anwendungsbeispiele&lt;/h3&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;#Hilfe
trufflehog --help

#github scan mit Optionen
trufflehog github --repo=https://github.com/trufflesecurity/trufflehog

trufflehog github --repo=https://github.com/trufflesecurity/trufflehog --json --only-verified

#AWS scan
trufflehog s3 --bucket=&amp;lt;bucket name&amp;gt; --only-verified

#Dateisystem
trufflehog filesystem --directory=/home/guenny/ansible/repository&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Da die aktuellste Version momentan nur via Source/Docker zur Verfügung steht, können Gitlab, S3 und Co nur darüber gescannt werden&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;  git [&amp;lt;flags&amp;gt;] &amp;lt;uri&amp;gt;
    Find credentials in git repositories.

  github [&amp;lt;flags&amp;gt;]
    Find credentials in GitHub repositories.

  gitlab --token=TOKEN [&amp;lt;flags&amp;gt;]
    Find credentials in GitLab repositories.

  filesystem --directory=DIRECTORY
    Find credentials in a filesystem.

  s3 [&amp;lt;flags&amp;gt;]
    Find credentials in S3 buckets.

  syslog [&amp;lt;flags&amp;gt;]
    Scan syslog
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;!-- s9ymdb:3186 --&gt;&lt;img alt=&quot;trufflehog&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/trufflehog.800W.serendipityThumb.png 1200w,http://www.itrig.de/uploads/trufflehog.400W.serendipityThumb.png 600w&quot; src=&quot;http://www.itrig.de/uploads/trufflehog.png&quot; style=&quot;width:884px&quot; title=&quot;trufflehog&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;hr /&gt;&lt;/p&gt;

&lt;h2&gt;Passwörter und andere Geheimnisse aus Git-Repositories entfernen&lt;/h2&gt;

&lt;h3&gt;Was tun, wenn ein Passwort gefunden wurde?&lt;/h3&gt;

&lt;p&gt;Git Filter Branch bietet eine Möglichkeit, um dieses Problem zu beheben.&lt;/p&gt;

&lt;p&gt;Beispielsweise:&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;git filter-branch --prune-empty --index-filter &quot;git rm --cached -f --ignore-unmatch löschdatei&quot; -- --all&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Git Filter Branch ist ein sehr mächtiges Tool, daher verweist Github selbst auf den &lt;a href=&quot;https://rtyley.github.io/bfg-repo-cleaner/&quot; target=&quot;_blank&quot; title=&quot;https://rtyley.github.io/bfg-repo-cleaner/&quot;&gt;BFG Repo Cleaner&lt;/a&gt; und &lt;a href=&quot;https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository&quot; target=&quot;_blank&quot; title=&quot;https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository&quot;&gt;git filter-Repo&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Mit ersterem lassen sich relativ einfach sensitive Dateien löschen oder ersetzen.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;bfg --delete-files id_{dsa,rsa}  my-repo.git
bfg --replace-text passwords.txt  my-repo.git
git push --force&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Wenn ein Passwort im letzten Commit vorhanden ist, würde übrigens auch amend ausreichen:&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;git commit --amend&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;Fazit&lt;/h1&gt;

&lt;p&gt;Vergessene Zugangsdaten in Repositorys schaffen unnötige Sicherheitslücken. Diese lassen sich mit TruffleHog einfach aufspüren. Das Tool unterstützt inzwischen weit mehr als nur Github. So lässt sich der gesamte &lt;span class=&quot;ILfuVd&quot; lang=&quot;de&quot;&gt;&lt;span class=&quot;hgKElc&quot;&gt;&lt;span&gt;&lt;span jscontroller=&quot;BicQqd&quot; jsname=&quot;XtloMb&quot;&gt;Software Development Life Cycle/SDLC bei Bedarf überwachen. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;ILfuVd&quot; lang=&quot;de&quot;&gt;&lt;span class=&quot;hgKElc&quot;&gt;&lt;span&gt;&lt;span jscontroller=&quot;BicQqd&quot; jsname=&quot;XtloMb&quot;&gt;Mit &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;https://docs.trufflesecurity.com/docs/getting-started/&quot; target=&quot;_blank&quot; title=&quot;https://docs.trufflesecurity.com/docs/getting-started/&quot;&gt;TruffleHog Enterprise&lt;/a&gt; bietet der Hersteller inzwischen eine GUI in der Cloud an, allerdings lässt er sich diese auch bezahlen. Für eine automatisierte Überwachung der eigenen Repositorys lassen sich alle Aufgaben via Kommandozeile erledigen.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:2757 --&gt;&lt;a href=&quot;https://github.com/trufflesecurity/trufflehog&quot; target=&quot;_blank&quot; title=&quot;https://github.com/trufflesecurity/trufflehog&quot;&gt;&lt;img alt=&quot;Download&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot; src=&quot;http://www.itrig.de/uploads/button.png&quot; style=&quot;width:161px&quot; title=&quot;button.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;hr /&gt;
&lt;hr /&gt;&lt;/p&gt;

&lt;h3&gt;Ähnliche Artikel&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;https://itrig.de/index.php?/archives/2421-Security-Tools-Trivy-Docker-Container-auf-Sicherheitsluecken-durchsuchen.html&quot;&gt;Security Tools: Trivy – Docker Container auf Sicherheitslücken durchsuchen&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://itrig.de/index.php?/archives/2426-Nuclei-schneller-Schwachstellen-Scanner-mit-praktischen-Vorlagen.html&quot;&gt;Nuclei - schneller Schwachstellen Scanner mit praktischen Vorlagen&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://itrig.de/index.php?/archives/2415-Security-GVM-21.04-mit-Docker-in-15-Minuten-zum-OpenVAS-Schwachstellen-Scanner.html&quot;&gt;Security: GVM 21.04 - mit Docker in 15 Minuten zum OpenVAS Schwachstellen Scanner&lt;/a&gt;&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 27 Nov 2022 11:09:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2436-guid.html</guid>
    <category>aws</category>
<category>credentials</category>
<category>debian ubuntu</category>
<category>entwicklung</category>
<category>github</category>
<category>github absichern</category>
<category>hacking</category>
<category>leaked</category>
<category>leaked credentials</category>
<category>opensource</category>
<category>passwörter finden</category>
<category>pentesting forensik</category>
<category>scan repository</category>
<category>sdlc</category>
<category>secret scanner</category>
<category>secrets</category>
<category>security tool</category>
<category>security-scanner</category>
<category>security-tool</category>
<category>sicherheitsscanner</category>
<category>tools</category>
<category>trufflehog</category>
<category>trufflehog3</category>
<category>zugangsdaten finden</category>

</item>
<item>
    <title>IIS Crypto 3.3 - Protokolle und Cipher Suites unter Windows verwalten</title>
    <link>http://www.itrig.de/index.php?/archives/2435-IIS-Crypto-3.3-Protokolle-und-Cipher-Suites-unter-Windows-verwalten.html</link>
            <category>Hacking</category>
            <category>Netzwerk</category>
            <category>Sicherheit</category>
            <category>Tipps</category>
            <category>Tools</category>
            <category>Web</category>
            <category>Windows</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2435-IIS-Crypto-3.3-Protokolle-und-Cipher-Suites-unter-Windows-verwalten.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2435</wfw:comment>

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

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Um Cipher Suites auf Windows Servern zur verwalten, muss in die Registry &lt;em&gt;(&lt;code&gt;HKEY&lt;em&gt;LOCAL&lt;/em&gt;MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL&lt;/code&gt;)&lt;/em&gt; eingegriffen werden. Nartac Software möchte diesen Eingriff am offenen Herzen vereinfachen und bietet seit Jahren das Tool IIS Crypto an.&lt;/p&gt;

&lt;h1&gt;IIS Crypto 3.3&lt;/h1&gt;

&lt;p&gt;IIS Crypto ermöglicht die einfache Verwaltung von Server-Protokollen, Chipers, Hashes und Schlüsselaustauschalgorithmen unter einer Oberfläche.&lt;/p&gt;

&lt;p&gt;Ich habe dieses Tool früher oft verwendet, um Windows Server zu härten. Es werden die Versionen 2008, 2012, 2016, 2019 und 2022 unterstützt. Am besten hat mir die Möglichkeit gefallen, Cipher Suites neu anzuordnen.&lt;/p&gt;

&lt;p&gt;Neben Windows Server 2022 wurde in der aktuellen Version die Unterstützung für TLS 1.3 implementiert.&lt;/p&gt;

&lt;p&gt;Vorhandene Vorlagen wurden angepasst. So werden im Strict Template nun CBC Ciphers Suites unter Windows 2016 und höher entfernt.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3183 --&gt;&lt;img alt=&quot;iss-crypto&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/iss-crypto.800W.serendipityThumb.png 1200w,http://www.itrig.de/uploads/iss-crypto.400W.serendipityThumb.png 600w&quot; src=&quot;http://www.itrig.de/uploads/iss-crypto.png&quot; style=&quot;width:800px&quot; title=&quot;iss-crypto&quot; /&gt;&lt;/p&gt;

&lt;h2&gt;Fazit&lt;/h2&gt;

&lt;p&gt;Wenn man bedenkt, wie lange TLS 1.3 bereits im Einsatz ist, haben sich die Entwickler hinter IIS Crypto sehr (sehr) viel Zeit gelassen.&lt;/p&gt;

&lt;p&gt;Unabhängig davon bietet das Tool mit seinen Best Practices (siehe Screenshot) unerfahrenen Nutzern eine einfache Möglichkeit, Windows Server zu härten und besser abzusichern.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:2757 --&gt;&lt;a href=&quot;https://www.nartac.com/Products/IISCrypto/Download&quot; target=&quot;_blank&quot; title=&quot;https://www.nartac.com/Products/IISCrypto/Download&quot;&gt;&lt;img alt=&quot;Download&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot; src=&quot;http://www.itrig.de/uploads/button.png&quot; style=&quot;width:161px&quot; title=&quot;Download&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Mon, 07 Nov 2022 10:00:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2435-guid.html</guid>
    <category>2022</category>
<category>absichern</category>
<category>best practices</category>
<category>cbc</category>
<category>cipher suites</category>
<category>cipher suites anpassen</category>
<category>diffie hellmann</category>
<category>hacking</category>
<category>hashes</category>
<category>iis crypto</category>
<category>netzwerk</category>
<category>sicherheit</category>
<category>tipps</category>
<category>tls 1.3</category>
<category>tools</category>
<category>web</category>
<category>windows</category>
<category>windows server</category>
<category>windows server härten</category>

</item>
<item>
    <title>Shellclear -  History automatisch auf sensible Inhalte untersuchen</title>
    <link>http://www.itrig.de/index.php?/archives/2434-Shellclear-History-automatisch-auf-sensible-Inhalte-untersuchen.html</link>
            <category>Debian Ubuntu</category>
            <category>Hacking</category>
            <category>OpenSource</category>
            <category>Sicherheit</category>
            <category>Sonstiges</category>
            <category>Spielerei</category>
            <category>Tipps</category>
            <category>Tools</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2434-Shellclear-History-automatisch-auf-sensible-Inhalte-untersuchen.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2434</wfw:comment>

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

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Das kleine Tool &lt;strong&gt;shellclear&lt;/strong&gt; automatisiert das Überprüfen der Shell History auf sensible Inhalte wie Passwörter oder Zugangstoken.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3181 --&gt;&lt;img alt=&quot;shellclear&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/shellclear.png 421w&quot; src=&quot;http://www.itrig.de/uploads/shellclear.png&quot; style=&quot;width:421px&quot; title=&quot;shellclear&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Unterstützt werden Shells wie Bash, Zsh, PowerShell und Fish. Das Tool greift auf ein Pattern-File zurück, welches beliebig erweitert werden kann.&lt;/p&gt;

&lt;p&gt;Beim Start der Shell werden die Inhalte der History automatisch über dieses YAML-Pattern-File auf Passwörter und Token geprüft.&lt;/p&gt;

&lt;p&gt;Sind sensible Inhalte vorhanden, werden diese gelistet und können gelöscht werden.&lt;/p&gt;

&lt;p&gt;Momentan wird auf AWS Access Keys, Github Tokens, Gitlab Tokens, Slack, Cloudflare, Twitter, Facebook und vieles mehr getestet.&lt;/p&gt;

&lt;h1&gt;Installation&lt;/h1&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;curl -sS https://raw.githubusercontent.com/rusty-ferris-club/shellclear/main/install/install.sh | bash&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;Einbinden in die Shell&lt;/h2&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nano ~/.bashrc
eval $(shellclear --init-shell)

bzw. 

nano ~/.zshrc
eval $(shellclear --init-shell)&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Powershell&lt;/h3&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;$PROFILE

Invoke-Expression (&amp;amp;shellclear --init-shell)&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Fish&lt;/h3&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nano ~/.config/fish/config.fish

shellclear --init-shell | source&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;&lt;!-- s9ymdb:3180 --&gt;&lt;img alt=&quot;shellclear-findings&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/shellclear-findings.400W.serendipityThumb.png 600w,http://www.itrig.de/uploads/shellclear-findings.png 602w&quot; src=&quot;http://www.itrig.de/uploads/shellclear-findings.png&quot; style=&quot;width:602px&quot; title=&quot;shellclear-findings&quot; /&gt;&lt;/h2&gt;

&lt;h2&gt;Verwendung&lt;/h2&gt;

&lt;p&gt;Durch das Einbinden in beispielsweise Zsh oder Bash prüft shellclear bei jedem Start automatisch auf sensible Inhalte in der History. Dieser Vorgang kann zusätzlich manuell gestartet und konfiguriert werden. Auch das Banner &quot;&lt;em&gt;your shell is clean from sensitive data&lt;/em&gt;&quot; lässt sich ausblenden.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;#sensible Inhalte suchen
shellclear find

#sensible Inhalte als Tabelle ausgeben
shellclear find --format table

#sensible Inhalte bereinigen
shellclear clear

#banner ausblenden
shellclear --no-banner

#eigene Config festlegen
shellclear config

#history verstecken
shellclear stash
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;Fazit&lt;/h2&gt;

&lt;p&gt;Kleiner Helfer für den Alltag, der tut, was er soll. Dank des YAML Formats ist das Tool beliebig erweiterbar. Abgesehen davon sind die größten Cloud-Firmen bereits integriert und das Tool erfüllt im Hintergrund seinen Zweck.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sat, 29 Oct 2022 10:31:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2434-guid.html</guid>
    <category>bash</category>
<category>bereinigen</category>
<category>debian ubuntu</category>
<category>fish</category>
<category>hacking</category>
<category>history</category>
<category>opensource</category>
<category>passwörter</category>
<category>sensbile inhalte</category>
<category>shellclear</category>
<category>sicherheit</category>
<category>sonstiges</category>
<category>spielerei</category>
<category>tipps</category>
<category>token</category>
<category>tools</category>
<category>zsh</category>

</item>
<item>
    <title>Security Distributionen: NST 36, Parrot 5.1 und Kali 2022.3</title>
    <link>http://www.itrig.de/index.php?/archives/2432-Security-Distributionen-NST-36,-Parrot-5.1-und-Kali-2022.3.html</link>
            <category>Hacking</category>
            <category>OpenSource</category>
            <category>Pentesting</category>
            <category>Sicherheit</category>
            <category>Tools</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2432-Security-Distributionen-NST-36,-Parrot-5.1-und-Kali-2022.3.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2432</wfw:comment>

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

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;Nach einigen Releases sollte die Security Distributionen Liste mal wieder auf einen aktuellen Stand gebracht werden.&lt;/p&gt;

&lt;h1&gt;NST 36&lt;/h1&gt;

&lt;p&gt;Das &lt;strong&gt;Network Security Toolkit &lt;/strong&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;hat ein Service Release erhalten. Das Toolkit basiert auf Fedora 36 mit kernel-5.18.10-200.fc36.x86_64.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:2879 --&gt;&lt;!-- s9ymdb:2879 --&gt;&lt;img alt=&quot;NST&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot;  src=&quot;http://www.itrig.de/uploads/NST-Logo.png&quot; style=&quot;width:300px&quot; title=&quot;NST&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;In der neuen Version wurden hauptsächlich Verbesserungen am Webbased User Interface vorgenommen. OpenVAS läuft nun als Podman Container. Der &lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;NST WUI ARP Scan&lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt; besitzt eine RTT Spalte und die Netzwerkkarte kann jetzt direkt im Widget ausgewählt werden.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Im Großen und Ganzen handelt es sich hier um ein Service Release.&lt;/p&gt;

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

&lt;p&gt;&lt;!-- s9ymdb:2757 --&gt;&lt;a href=&quot;https://www.networksecuritytoolkit.org/nst/index.html&quot; target=&quot;_blank&quot; title=&quot;https://www.networksecuritytoolkit.org/nst/index.html&quot;&gt;&lt;img alt=&quot;Download&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot;   src=&quot;http://www.itrig.de/uploads/button.png&quot; title=&quot;Download&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;hr /&gt;&lt;/p&gt;

&lt;h1&gt;Parrot 5.1&lt;/h1&gt;

&lt;p&gt;Nach 6 Monaten hat Parrot Security seine erstes Servicerelease mit dem Kernel 5.18 veröffentlicht.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3179 --&gt;&lt;img alt=&quot;Parrot_Logo&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot; src=&quot;http://www.itrig.de/uploads/Parrot_Logo.png&quot; style=&quot;width:180px&quot; title=&quot;Parrot_Logo&quot; /&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;Eines der bekannten Parrot Tools Anon&lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;S&lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;urf, welches Traffic durch das Tor Netzwerk schleust, hat ein Update auf Version 4 erhalten. &lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;Die neue Oberfläche unterstützt jetzt Debian Systeme, die &lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;das alte resolvconf setup nicht unterstützen.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Die IoT Version wurde ebenfalls überarbeitet und hat endlich Wifi Unterstützung für Raspberry Pi 400 erhalten. Weitere IoT Änderungen sind enthalten. Als Schmankerl gibt es den MATE Desktop für alle ARM Nutzer.&lt;/p&gt;

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

&lt;p&gt;&lt;!-- s9ymdb:2757 --&gt;&lt;a href=&quot;https://parrotsec.org/&quot; target=&quot;_blank&quot; title=&quot;https://parrotsec.org/&quot;&gt;&lt;img alt=&quot;Download&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot;   src=&quot;http://www.itrig.de/uploads/button.png&quot; title=&quot;Download&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;hr /&gt;&lt;/p&gt;

&lt;h1&gt;Kali Linux 2022.3&lt;/h1&gt;

&lt;p&gt;Der Platzhirsch soll in diesem Update natürlich nicht fehlen, auch wenn die Version bereits im August veröffentlicht wurde.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3151 --&gt;&lt;img alt=&quot;Kali-dragon&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot; src=&quot;http://www.itrig.de/uploads/Kali-dragon.png&quot; style=&quot;width:200px&quot; title=&quot;Kali-dragon&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;Die wichtigsten Neuerungen sind hier eher in der Peripherie zu sehen, denn Kali hat nun einen Discord Server &lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;(https://discord.kali.org)&lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;, was vielen den Einstieg erleichtern dürfte. &lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;Ebenfalls interessant für neue PentesterInnen dürfte das Labor Paket &lt;strong&gt;&lt;em&gt;kali-linux-labs&lt;/em&gt;&lt;/strong&gt; sein. Dort sind &lt;/span&gt;&lt;em&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;&lt;a href=&quot;https://www.kali.org/tools/dvwa/&quot;&gt;DVWA&lt;/a&gt; - Damn Vulnerable Web Application&lt;/span&gt;&lt;/em&gt;&lt;span style=&quot;font-weight:normal&quot;&gt; und &lt;em&gt;&lt;a href=&quot;https://www.kali.org/tools/juice-shop/&quot;&gt;Juice Shop&lt;/a&gt; - OWASP Juice Shop&lt;/em&gt; zum Üben enthalten. &lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;Happy Hacking.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Auch die mobile Kali-Variante NetHunter hat ein größeres Update erhalten und kommt der vollen Android 12 Unterstützung immer näher.&lt;/p&gt;

&lt;p&gt;Schlussendlich fehlt noch das übliche Tools-Update:&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;&lt;a href=&quot;https://www.kali.org/tools/bruteshark/&quot;&gt;BruteShark&lt;/a&gt; – &lt;/span&gt;&lt;span style=&quot;font-weight:normal&quot;&gt;Kleines aber feines Network Forensic Analysis Tool (NFAT) mit GUI&lt;/span&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://www.kali.org/tools/defectdojo/&quot;&gt;DefectDojo&lt;/a&gt; – Von diesem Tool liest man in letzter Zeit immer öfters, damit lassen sich Schwachstellen verwalten und an Systeme wie Jira oder Slack pushen&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://www.kali.org/tools/phpsploit/&quot;&gt;phpsploit&lt;/a&gt; – Klassisches C2 Stealth post-exploitation remote control framework&lt;/li&gt;
    &lt;li&gt;&lt;a name=&quot;ssti-server-side-template-injection&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://www.kali.org/tools/shellfire/&quot;&gt;shellfire&lt;/a&gt; - Exploiting Shell für Local File Inclusion (LFI), Remote File Intrution (RFI), SSTI (Server Side Template Injection) und weitere command injection vulnerabilities&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://www.kali.org/tools/sprayingtoolkit/&quot;&gt;SprayingToolkit&lt;/a&gt; – Python Password spraying attacks für Lync/S4B, OWA and O365&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;&lt;!-- s9ymdb:2757 --&gt;&lt;a href=&quot;https://www.kali.org/&quot; target=&quot;_blank&quot; title=&quot;https://www.kali.org/&quot;&gt;&lt;img alt=&quot;Download&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;&quot;   src=&quot;http://www.itrig.de/uploads/button.png&quot; title=&quot;Download&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;hr /&gt;&lt;/p&gt;

&lt;h1&gt;&lt;a href=&quot;https://itrig.de/index.php?/pages/secdists.html&quot; target=&quot;_blank&quot; title=&quot;https://itrig.de/index.php?/pages/secdists.html&quot;&gt;Übersicht 10/22&lt;/a&gt;&lt;/h1&gt;

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

    <pubDate>Mon, 10 Oct 2022 18:14:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2432-guid.html</guid>
    <category>2022</category>
<category>defect-dojo</category>
<category>hacking</category>
<category>kali 2022.3</category>
<category>neuerungen</category>
<category>nst 36</category>
<category>opensource</category>
<category>parrot 5.1</category>
<category>pentesting</category>
<category>pentesting forensik</category>
<category>security distributionen</category>
<category>sicherheit</category>
<category>tools</category>

</item>
<item>
    <title>Nuclei - schneller Schwachstellen Scanner mit praktischen Vorlagen</title>
    <link>http://www.itrig.de/index.php?/archives/2426-Nuclei-schneller-Schwachstellen-Scanner-mit-praktischen-Vorlagen.html</link>
            <category>Debian Ubuntu</category>
            <category>Hacking</category>
            <category>OpenSource</category>
            <category>Pentesting</category>
            <category>Post Privacy</category>
            <category>Programme</category>
            <category>Sicherheit</category>
            <category>Sonstiges</category>
            <category>Tools</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2426-Nuclei-schneller-Schwachstellen-Scanner-mit-praktischen-Vorlagen.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2426</wfw:comment>

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

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;In der Vergangenheit wurden auf ITrig öfters Security Scanner erwähnt, z.B. &lt;a href=&quot;https://itrig.de/index.php?/archives/2415-Security-GVM-21.04-mit-Docker-in-15-Minuten-zum-OpenVAS-Schwachstellen-Scanner.html&quot; target=&quot;_blank&quot; title=&quot;https://itrig.de/index.php?/archives/2415-Security-GVM-21.04-mit-Docker-in-15-Minuten-zum-OpenVAS-Schwachstellen-Scanner.html&quot;&gt;OpenVAS&lt;/a&gt; oder &lt;a href=&quot;https://itrig.de/index.php?/archives/2421-Security-Tools-Trivy-Docker-Container-auf-Sicherheitsluecken-durchsuchen.html&quot; target=&quot;_blank&quot; title=&quot;https://itrig.de/index.php?/archives/2421-Security-Tools-Trivy-Docker-Container-auf-Sicherheitsluecken-durchsuchen.html&quot;&gt;Trivy&lt;/a&gt;. Diese Security Scanner sind natürlich nicht die einzigen im Internet. Ein weiterer Kandidat auf Go Basis ist Nuclei. Der vorlagenbasierte Schwachstellen-Scanner ist inzwischen Teil des Kali-Universums (2022.1) und bekommt daher heute einen gesonderten Artikel spendiert.&lt;/p&gt;

&lt;h1&gt;Nuclei&lt;/h1&gt;

&lt;p&gt;Das Open-Source-Tool scannt verschiedene Protokolle (TCP, SSH, DNS, HTTP/S, SSL, Websocket, Whois usw.) auf Schwachstellen und mehr. Dazu werden &lt;a href=&quot;https://github.com/projectdiscovery/nuclei-templates&quot; target=&quot;_blank&quot; title=&quot;https://github.com/projectdiscovery/nuclei-templates&quot;&gt;YAML-Vorlagen&lt;/a&gt; verwendet. Diese Templates werden zum größten Teil von der Community beigesteuert, können aber auch selbst für die eigenen Bedürfnisse geschrieben werden. So kann für die vor wenigen Tagen veröffentlichte Confluence Lücke CVE-2022-26134 bereits ein Scan Template gefunden werden.&lt;/p&gt;

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

&lt;p&gt;&lt;!-- s9ymdb:3152 --&gt;&lt;img alt=&quot;nuclei-flow&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/nuclei-flow.jpg 2060w,http://www.itrig.de/uploads/nuclei-flow.1200W.serendipityThumb.jpg 1600w,http://www.itrig.de/uploads/nuclei-flow.800W.serendipityThumb.jpg 1200w,http://www.itrig.de/uploads/nuclei-flow.400W.serendipityThumb.jpg 600w&quot; src=&quot;http://www.itrig.de/uploads/nuclei-flow.jpg&quot; style=&quot;width:600px&quot; title=&quot;nuclei-flow&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Neben Nuclei bietet ProjectDiscovery noch weitere gute Programme für das Security-Umfeld. Beispielsweise &lt;a href=&quot;https://github.com/projectdiscovery/subfinder&quot; target=&quot;_blank&quot; title=&quot;https://github.com/projectdiscovery/subfinder&quot;&gt;subfinder&lt;/a&gt;, ein Subdomain Discovery Tool.&lt;/p&gt;

&lt;p&gt;Bevor tiefer in Nuclei eingetaucht werden kann, muss der Scanner installiert werden.&lt;/p&gt;

&lt;h2&gt;Installation Nuclei unter Debian/Ubuntu&lt;/h2&gt;

&lt;p&gt;Da das Tool auf der Programmiersprache Go basiert, muss diese zunächst installiert werden.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;curl -OL https://go.dev/dl/go1.18.3.linux-amd64.tar.gz
sudo tar -C /usr/local -xvf go1.18.3.linux-amd64.tar.gz
sudo nano ~/.profile
    export PATH=$PATH:/usr/local/go/bin
source ~/.profile&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Alternativ&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;sudo apt install golang-1.16&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Nun kann die neueste Nuclei Version gebaut werden.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/projectdiscovery/nuclei.git
cd nuclei/v2/cmd/nuclei
go build
sudo mv nuclei /usr/local/bin/
nuclei -version&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Nach der Installation sollte die Datenbank aktualisiert werden, damit Templates zur Verfügung stehen.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -ut&lt;/code&gt;&lt;/pre&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;?  nuclei git:(master) nuclei -ut

                     __     _
   ____  __  _______/ /__  (_)
  / __ \/ / / / ___/ / _ \/ /
 / / / / /_/ / /__/ /  __/ /
/_/ /_/\__,_/\___/_/\___/_/   2.7.2

        projectdiscovery.io

[WRN] Use with caution. You are responsible for your actions.
[WRN] Developers assume no liability and are not responsible for any misuse or damage.
[INF] nuclei-templates are not installed, installing...
[INF] Successfully downloaded nuclei-templates (v9.0.6) to /home/user/nuclei-templates. GoodLuck!

ls -l ~/nuclei-templates/&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Nachdem die Template-Datenbank aktualisiert wurde, können einzelne Vorlagen direkt in den Scanbefehl eingebunden werden.&lt;/p&gt;

&lt;p&gt;Im Folgenden möchte ich einen kleinen Teil der möglichen Befehle mithilfe von Templates aufzeigen:&lt;/p&gt;

&lt;p&gt;Einfacher API Scan&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -u $URL -t ~/nuclei-templates/exposures/apis/&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;WordPress Scan&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -u $URL -t ~/nuclei-templates/vulnerabilities/wordpress/&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;CVE Scan&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -u $URL ~/nuclei-templates/cves/2022/CVE-2022-XXXX.yaml&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Token Spray&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -u $URL ~/nuclei-templates/token-spray/ -var token=XXX_TOKEN_XXX&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Listen&lt;/h3&gt;

&lt;p&gt;Der Scanner kann mit Listen umgehen, was beim Scannen mehrerer URLs durchaus helfen kann.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -u $URL -list http_urls.txt&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Filter&lt;/h3&gt;

&lt;p&gt;Nuclei unterstützt Filter, wie tags, severity, author&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -u $URL -tags cve&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Workflows&lt;/h3&gt;

&lt;p&gt;Nuclei kann Workflows abbilden, d.h. es könnten z.B. Templates in einem Workflow gebündelt werden. Hier ein Beispiel:&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;id: workflow-example
info:
  name: Test Workflow Template
  author: pdteam

workflows:
  - template: technologies/tech-detect.yaml
    matchers:
      - name: wordpress
        subtemplates:
          - template: cves/CVE-2019-6715.yaml
          - template: cves/CVE-2019-9978.yaml&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Auf solche Workflows können wiederum auch Filter angesetzt werden&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -u $URL -w workflows/workflow-example.yaml -severity critical,high -list http_urls.txt&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Rate Limits&lt;/h3&gt;

&lt;p&gt;Um die Anzahl der gleichzeitigen Zugriffe zu regulieren, können Rate Limits gesetzt werden.&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;rate-limit &amp;#160;&amp;#160; &amp;#160;Control the total number of request to send per seconds&lt;/li&gt;
    &lt;li&gt;bulk-size &amp;#160;&amp;#160; &amp;#160;Control the number of hosts to process in parallel for each template&lt;/li&gt;
    &lt;li&gt;c &amp;#160;&amp;#160; &amp;#160;Control the number of templates to process in parallel&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Custom Header&lt;/h3&gt;

&lt;p&gt;Es kann notwendig sein, einen eigenen Header zu setzen. Gerade bei BugBounty Programmen oder um euch als Pentester erkennen zu geben. Dazu kann die&lt;em&gt; &quot;/home/user/.config/nuclei/config.yaml&quot;&lt;/em&gt; angepasst werden:&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;    # Headers to include with each request.
header:
  - &#039;X-BugBounty-Hacker: h1/geekboy&#039;
  - &#039;User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) / nuclei&#039;&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Wer dies ad hoc via CLI erledigen möchte, der muss nur &quot;Header&quot; in der Befehlskette verwenden.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;nuclei -header &#039;User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) / nuclei&#039; -list urls.txt -tags cves&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Hier endet auch schon der Schnelleinstieg in Nuclei. Ich hoffe, ihr habt einen schnellen Einblick bekommen, was mit dem Scanner möglich ist und warum die vorhandenen Vorlagen und Einstellmöglichkeiten Nuclei momentan zu einem sehr beliebten Tool machen.&lt;/p&gt;

&lt;p&gt;Weitere Tipps findet ihr direkt auf &lt;a href=&quot;https://github.com/projectdiscovery/nuclei/&quot; target=&quot;_blank&quot; title=&quot;https://github.com/projectdiscovery/nuclei/&quot;&gt;Github&lt;/a&gt; oder beim &lt;a href=&quot;https://nuclei.projectdiscovery.io/templating-guide/&quot; target=&quot;_blank&quot; title=&quot;https://nuclei.projectdiscovery.io/templating-guide/&quot;&gt;Template Guide&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Viel Erfolg beim Testen der eigenen Webseite, Apps, Sockets.&lt;/p&gt;

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

    <pubDate>Sat, 11 Jun 2022 10:54:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2426-guid.html</guid>
    <category>10 dinge die nach der installation gemacht werden</category>
<category>alternative</category>
<category>bugbounty</category>
<category>debian ubuntu</category>
<category>forensik</category>
<category>hacking</category>
<category>it security</category>
<category>linux</category>
<category>monitoring</category>
<category>nuclei</category>
<category>online tools</category>
<category>opensource</category>
<category>openvas</category>
<category>penetration</category>
<category>pentest</category>
<category>pentesting</category>
<category>pentesting forensik</category>
<category>post privacy</category>
<category>programme</category>
<category>rate limit</category>
<category>schwachstellen scanner</category>
<category>security scanner</category>
<category>sicherheit</category>
<category>sonstiges</category>
<category>templates</category>
<category>tools</category>
<category>ubuntu</category>
<category>vorlagen</category>

</item>

</channel>
</rss>
