<?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 - Pentesting</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 - Pentesting - 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>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>Kali Linux mit Desktop unter Windows über WSL2 installieren</title>
    <link>http://www.itrig.de/index.php?/archives/2429-Kali-Linux-mit-Desktop-unter-Windows-ueber-WSL2-installieren.html</link>
            <category>Pentesting</category>
            <category>Programme</category>
            <category>Sicherheit</category>
            <category>Tools</category>
            <category>Windows</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2429-Kali-Linux-mit-Desktop-unter-Windows-ueber-WSL2-installieren.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2429</wfw:comment>

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

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;p&gt;WSL2, besser bekannt als Windows Subsystem Linux erlaubt es verschiedene Linux Distributionen unter Windows zu installieren. Normalerweise werden diese Installationen über die Kommandozeile bedient. Seit einiger Zeit unterstützt Kali Linux Win-KeX, was es erlaubt auf dem System wie auf einem Desktop zu arbeiten.&lt;br /&gt;
Win-Kex tut dies, indem es einen VNCServer mit der Xfce-Desktop-Umgebung innerhalb der Kali Linux WSL-Instanz startet. Danach startet ein TigerVNC-Windows-Client und übergibt automatisch die Befehle zur Verbindung mit dem VNC-Server.&lt;br /&gt;
Soweit so schön, bei der Installation gibt es dennoch einige Fallstricke.&lt;/p&gt;

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

&lt;p&gt;Zunächst wird eine WSL2 Installation unter Windows benötigt.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
wsl --set-default-version 2&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;Installation und Update von Kali Linux via WSL&lt;/h1&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;wsl –-install -d kali-linux&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Nach der Vergabe des Benutzernamens und eines Passworts sollte das System stehen.&lt;/p&gt;

&lt;p&gt;Nun tauchen allerdings die ersten Probleme auf. Denn eine &lt;em&gt;apt update&lt;/em&gt; zeigt zunächst einen Keyring Fehler an, dieser kann einfach nachinstalliert werden.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;wget --no-check-certificate -O kali-archive-keyring_2022.1_all.deb https://http.kali.org/pool/main/k/kali-archive-keyring/kali-archive-keyring_2022.1_all.deb

dpkg -i  kali-archive-keyring_2022.1_all.deb

sudo apt update&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Beim kommenden Upgrade Vorgang (&lt;em&gt;sudo apt upgrade&lt;/em&gt;) treten die nächsten Probleme auf.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;Setting up libc6:amd64  ...
Checking for services that may need to be restarted...
Checking init scripts...
Nothing to restart.
sleep: cannot read realtime clock: Invalid argument
dpkg: error processing package libc6:amd64 (--configure):
 installed libc6:amd64 package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 libc6:amd64
E: Sub-process /usr/bin/dpkg returned an error code (1)&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Dieses Problem führt dazu, dass der Upgrade-Vorgang abbricht und ein &lt;em&gt;sudo&lt;/em&gt; mit dem zuvor eingerichteten User ab sofort scheitert.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;Sorry, try again.
Sorry, try again.
sudo: 3 incorrect password attempts&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Die Lösung für dieses Problem ist ein manuelles Installieren von &lt;em&gt;libcrypt1.&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;apt -y download libcrypt1
dpkg-deb -x libcrypt1_1%3a4.4.28-2_amd64.deb .
cp -av lib/x86_64-linux-gnu/* /lib/x86_64-linux-gnu/
apt -y --fix-broken install
apt upgrade&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Nun sollte das System aktuell sein und stabil laufen. Im letzten Schritt wird jetzt Win-Kex installiert.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3175 --&gt;&lt;img alt=&quot;kali&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/kali_-_TigerVNC.400W.serendipityThumb.png 600w,http://www.itrig.de/uploads/kali_-_TigerVNC.png 600w&quot; src=&quot;http://www.itrig.de/uploads/kali_-_TigerVNC.png&quot; style=&quot;width:600px&quot; title=&quot;kali&quot; /&gt;&lt;/p&gt;

&lt;h1&gt;Win-Kex installieren&lt;/h1&gt;

&lt;p&gt;Dieser Schritt ist denkbar einfach.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;sudo apt install -y kali-win-kex&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Jetzt kann Win-Kex gestartet werden, achtet darauf, dass es mit sudo Rechten gestartet wird.&lt;/p&gt;

&lt;pre&gt;
&lt;code class=&quot;language-bash&quot;&gt;sudo kex --win

#Session wiederaufnehmen

sudo kex --win --start-client&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Die wichtigste Taste dürfte &lt;em&gt;F8&lt;/em&gt; sein. Damit kann das Kontextmenü nach dem Start geladen werden, um zum Beispiel zwischen Vollbild und Fenstermodus zu wechseln.&lt;br /&gt;
Sollte es zu Verbindungsproblemen beim Start und Verbinden des VNC Servers kommen, kontrolliert eure Firewall Einstellungen.&lt;/p&gt;

&lt;p&gt;Seit Kali 2022.2 wird Kin-Kex unterstützt, welches das Ausführen von Anwendungen mit &lt;em&gt;sudo&lt;/em&gt; Rechten erlaubt.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3176 --&gt;&lt;img alt=&quot;vnc&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/winkexsession.400W.serendipityThumb.png 600w,http://www.itrig.de/uploads/winkexsession.png 700w&quot; src=&quot;http://www.itrig.de/uploads/winkexsession.png&quot; style=&quot;width:700px&quot; title=&quot;vnc&quot; /&gt;&lt;/p&gt;

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

&lt;p&gt;&lt;br /&gt;
Es ist möglich, Kali unter Windows mit WSL2 zu installieren. Der Weg dahin ist aber weiterhin etwas steinig und wird Windows Nutzern sicher nicht leicht von der Hand gehen. Da bietet sich wohl weiterhin ein VirtualBox Image an, denn damit ist die Installation um einiges flüssiger.&lt;/p&gt;

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

    <pubDate>Sun, 14 Aug 2022 21:12:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2429-guid.html</guid>
    <category>anleitung</category>
<category>apt upgrade</category>
<category>error</category>
<category>fehler</category>
<category>installation</category>
<category>kali linux</category>
<category>libc6</category>
<category>libcrypt1</category>
<category>lösung</category>
<category>pentesting forensik</category>
<category>programme</category>
<category>sicherheit</category>
<category>sudo: 3 incorrect password attempts</category>
<category>tools</category>
<category>vncserver</category>
<category>win-kex</category>
<category>windows</category>
<category>windows 11</category>
<category>wsl2</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>
<item>
    <title>ParrotOS 5.0 LTS und Kali Linux 2022.1 veröffentlicht</title>
    <link>http://www.itrig.de/index.php?/archives/2425-ParrotOS-5.0-LTS-und-Kali-Linux-2022.1-veroeffentlicht.html</link>
            <category>Debian Ubuntu</category>
            <category>Entwicklung</category>
            <category>Hacking</category>
            <category>Netzwerk</category>
            <category>OpenSource</category>
            <category>Pentesting</category>
            <category>Post Privacy</category>
            <category>Programme</category>
            <category>Sicherheit</category>
            <category>Tools</category>
    
    <comments>http://www.itrig.de/index.php?/archives/2425-ParrotOS-5.0-LTS-und-Kali-Linux-2022.1-veroeffentlicht.html#comments</comments>
    <wfw:comment>http://www.itrig.de/wfwcomment.php?cid=2425</wfw:comment>

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

    <author>nospam@example.com (Guenny)</author>
    <content:encoded>
    &lt;h1&gt;Parrot 5.0&lt;/h1&gt;

&lt;p&gt;Nach über einem Jahr wurde &lt;a href=&quot;https://www.parrotsec.org/download/&quot; target=&quot;_blank&quot; title=&quot;https://www.parrotsec.org/download/&quot;&gt;Parrot 5.0 als LTS Version&lt;/a&gt; veröffentlicht.&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:3150 --&gt;&lt;img alt=&quot;parrot-5&quot; class=&quot;serendipity_image_center&quot;  srcset=&quot;http://www.itrig.de/uploads/parrot-5.400W.serendipityThumb.png 600w,http://www.itrig.de/uploads/parrot-5.png 600w&quot; src=&quot;http://www.itrig.de/uploads/parrot-5.png&quot; style=&quot;width:600px&quot; title=&quot;parrot-5&quot; /&gt;Die bekannten Editionen wurden weitgehend (bis auf die MATE Arbeitsumgebung) beibehalten. Es gibt weiterhin eine Home Edition und eine Security Edition.&lt;/p&gt;

&lt;p&gt;Mit Parrot Architekt wurde die ARM Edition wiederbelebt, dabei handelt es sich um eine minimale Variante, die nicht viel mehr als einen Installer mitbringt. Sie eignet sich nach Angaben der Entwickler für WSL Portierungen oder Server Varianten.&lt;/p&gt;

&lt;h2&gt;Hack the Box&lt;/h2&gt;

&lt;p&gt;Vor einiger Zeit hatte Parrot die &lt;a href=&quot;https://itrig.de/index.php?/archives/2393-Kali-Linux-2020.2,-BackBox-7-veroeffentlicht-und-Parrot-OS-goes-Hack-The-Box.html&quot; target=&quot;_blank&quot; title=&quot;https://itrig.de/index.php?/archives/2393-Kali-Linux-2020.2,-BackBox-7-veroeffentlicht-und-Parrot-OS-goes-Hack-The-Box.html&quot;&gt;Zusammenarbeit mit Hack The Box&lt;/a&gt; bekannt gegeben. Daraus ist PwnBox entstanden, welches via Hack The Box direkt im Browser verwendet werden kann. Details zur Verwendung finden sich &lt;a href=&quot;https://help.hackthebox.com/en/articles/5185608-introduction-to-pwnbox&quot; target=&quot;_blank&quot; title=&quot;https://help.hackthebox.com/en/articles/5185608-introduction-to-pwnbox&quot;&gt;hier&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Die PwnBox erinnert an die virtuellen Browsersysteme von &lt;a href=&quot;https://tryhackme.com/&quot; target=&quot;_blank&quot; title=&quot;https://tryhackme.com/&quot;&gt;Try Hack Me&lt;/a&gt;, wobei THM ein etwas anderes Modell verfolgt.&lt;/p&gt;

&lt;p&gt;Mit Release 5.0 kann diese PwnBox Edition ebenfalls heruntergeladen werden.&lt;/p&gt;

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

&lt;p&gt;Anders als frühere Versionen basiert Parrot nun auf Debian 11 Stable. Zusätzlich wurde ein Rolling Release Modell für Security Updates eingeführt.&lt;/p&gt;

&lt;p&gt;Der neue Kernel basiert auf Version 5.6&lt;/p&gt;

&lt;h2&gt;Tools&lt;/h2&gt;

&lt;p&gt;Wie bei jedem Update wurde auch das Toolset erweitert.&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;
    &lt;p&gt;Das &lt;strong&gt;Pocsuite3&lt;/strong&gt; Security Framework des Knownsrc 404 Teams wurde aufgenommen. Bei Pocsuite handelt es sich um ein freies Tool zum Aufspüren von Sicherheitslücken&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;Mit &lt;strong&gt;findmyhash 2.0&lt;/strong&gt; wurde die neueste Version des Hash Crackers integriert&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;Das neue Tool &lt;strong&gt;Dirsearch&lt;/strong&gt; ist ein klassischer Path Scanner&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;&lt;strong&gt;Python3-pcodedmp&lt;/strong&gt; ist neu dabei, ein VBA P-Code disassembler&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;&lt;strong&gt;Mimipenguin&lt;/strong&gt; erlaubt das dumpen von Login Daten des aktuellen Linux Nutzer&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;MS Office Freunde erhalten mit den &lt;strong&gt;oletools&lt;/strong&gt; das richtige Werkzeug, um Dokumente zu untersuchen.&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;Windows Nutzer können mit &lt;strong&gt;Pyinstxtractor&lt;/strong&gt; den Inhalt von PyInstaller exe Dateien extrahieren.&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;Für die Fuzzer wurde &lt;strong&gt;Ffuf&lt;/strong&gt; aufgenommen&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;&lt;strong&gt;Ivy&lt;/strong&gt; ist ein Payload Creation Tool für VBA&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;&lt;strong&gt;Jwtxploiter&lt;/strong&gt; testet JSON Web Tokes gegen die CVE Datenbank&lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;

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

&lt;h1&gt;Kali Linux 2022.1&lt;/h1&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;Auch der Branchenprimus liefert regelmäßig aktualisierte Distribution aus. Das aktuelle &lt;a href=&quot;https://www.kali.org/get-kali/&quot; target=&quot;_blank&quot; title=&quot;https://www.kali.org/get-kali/&quot;&gt;Jahresrelease 2022.1&lt;/a&gt; von Mitte Februar wurde optisch aufgepeppt und bringt frische Hintergrundbilder und ein neues Grub Theme mit. Die Browser Startseite und das Shell Prompt (aus dem Totenkopf ist ein K geworden) wurden überarbeitet.&lt;/p&gt;

&lt;p&gt;Mit dem „Kali Linux Everything“ Image kann jetzt eine ISO mit allen Tools heruntergeladen werden. Aufgrund der Größe (bis zu 9.5&amp;#160;GB) ist dieses allerdings nur via Torrent verfügbar.&lt;/p&gt;

&lt;p&gt;Nutzer einer Gast-VM mit i3 Umgebung kommen nun in den Genuss von copy/paste und drag&amp;amp;drop. Dieses Feature wird inzwischen automatisch aktiviert.&lt;/p&gt;

&lt;h2&gt;Tools&lt;/h2&gt;

&lt;p&gt;Neue Werkzeuge dürfen auch beim Kali Release nie fehlen:&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;
    &lt;p&gt;dnsx - Schnelles und vielseitiges DNS-Toolkit&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;email2phonenumber - Ein OSINT-Tool, um die Telefonnummer einer Zielperson via E-Mail-Adresse zu ermitteln&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;naabu – Nein, nicht der Naturschutzbund, sondern ein schneller Port-Scanner&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;nuclei - Gezieltes Scannen mithilfe von Vorlagen&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;PoshC2 - Ein proxyfähiges C2-Framework mit Post-Exploitation&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p&gt;proxify - Schweizer Taschenmesser Proxy-Tool für die Erfassung und Manipulation HTTP/HTTPS-Traffic&lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;

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

&lt;h2&gt;ARM Tools&lt;/h2&gt;

&lt;p&gt;Auch auf der ARM Architektur wurden neue Tools integriert. So wurde mit &lt;strong&gt;Ghidra&lt;/strong&gt; das bekannte SRE Framwork aufgenommen und mit &lt;strong&gt;Feroxbuster&lt;/strong&gt; ein in Rust geschriebenes Force Browsing Tool, welches mithilfe von Wortlisten gut dafür geeignet ist, versteckte Verzeichnisse und Dateien zu finden&lt;/p&gt;

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

&lt;h1&gt;Übersicht 03/2022&lt;/h1&gt;

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

&lt;table align=&quot;center&quot;&gt;
    &lt;tbody&gt;
        &lt;tr&gt;
            &lt;th&gt;Name&lt;/th&gt;
            &lt;th&gt;Version&lt;/th&gt;
            &lt;th&gt;Tools&lt;/th&gt;
            &lt;th&gt;Basis&lt;/th&gt;
            &lt;th&gt;GUI&lt;/th&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href=&quot;https://www.autopsy.com/download/&quot; target=&quot;_blank&quot; title=&quot;CAINE&quot;&gt;Autopsy&lt;/a&gt;&lt;/td&gt;
            &lt;td&gt;4.18&lt;/td&gt;
            &lt;td&gt;???&lt;/td&gt;
            &lt;td&gt;Windows&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href=&quot;https://www.backbox.org/&quot; target=&quot;_blank&quot;&gt;BackBox&lt;/a&gt;&lt;/td&gt;
            &lt;td&gt;7.0&lt;/td&gt;
            &lt;td&gt;100+&lt;/td&gt;
            &lt;td&gt;Ubuntu&lt;/td&gt;
            &lt;td&gt;Xfce&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href=&quot;https://www.blackarch.org/downloads.html&quot; target=&quot;_blank&quot; title=&quot;BlackArch&quot;&gt;BlackArch&lt;/a&gt;&lt;/td&gt;
            &lt;td&gt;2021.09&lt;/td&gt;
            &lt;td&gt;1750+&lt;/td&gt;
            &lt;td&gt;ArchLinux&lt;/td&gt;
            &lt;td&gt;Multi&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href=&quot;https://www.caine-live.net/page5/page5.html&quot; target=&quot;_blank&quot;&gt;CAINE&lt;/a&gt;&lt;/td&gt;
            &lt;td&gt;11&lt;/td&gt;
            &lt;td&gt;100+&lt;/td&gt;
            &lt;td&gt;Ubuntu&lt;/td&gt;
            &lt;td&gt;Mate&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;&lt;a href=&quot;https://itrig.de/index.php?/archives/2293-Installation-DracOS-2.1,-sowie-Neues-von-Parrot-Security-OS-und-BlackArch-Linux.html&quot; target=&quot;_blank&quot; title=&quot;Dracos&quot;&gt;DracOS&lt;/a&gt;&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;3.0&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;LFS&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;DWM&lt;/s&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;&lt;a href=&quot;http://itrig.de/index.php?/archives/2300-Sicherheitsupdates-DEFT-Zero,-Parrot-Security-und-BlackArch-Linux-mit-neuen-Versionen.html&quot; target=&quot;_blank&quot; title=&quot;DEFT&quot;&gt;DEFT Zero&lt;/a&gt;&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;2018.2&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Lubuntu &lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Lxde&lt;/s&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href=&quot;https://www.kali.org/downloads/&quot; target=&quot;_blank&quot;&gt;Kali Linux&lt;/a&gt;&lt;/td&gt;
            &lt;td&gt;2022.1&lt;/td&gt;
            &lt;td&gt;600+&lt;/td&gt;
            &lt;td&gt;Debian 11&lt;/td&gt;
            &lt;td&gt;Multi&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;Kali AppStore&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;40+&lt;/td&gt;
            &lt;td&gt;Android&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;&lt;a href=&quot;http://itrig.de/index.php?/archives/2276-Security-Distros-LionSec-Linux-5,-Pentoo-RC5-und-NST-Version-24-7977-veroeffentlicht.html&quot; target=&quot;_blank&quot;&gt;LionSec&lt;/a&gt;&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;5.0&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Ubuntu&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;Matriux&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;v3 RC1&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Debian&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Gnome&lt;/s&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href=&quot;https://www.networksecuritytoolkit.org/nst/index.html&quot; target=&quot;_blank&quot;&gt;NST&lt;/a&gt;&lt;/td&gt;
            &lt;td&gt;34&lt;/td&gt;
            &lt;td&gt;???&lt;/td&gt;
            &lt;td&gt;Fedora&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;&lt;a href=&quot;http://netsecl.com/download&quot;&gt;NetSecL OS&lt;/a&gt;&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;6.0&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;OpenSuse&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Lxde&lt;/s&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;Paladin&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;7.0&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Ubuntu&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href=&quot;https://www.parrotlinux.org/download-home.php&quot; target=&quot;_blank&quot; title=&quot;Parrot&quot;&gt;Parrot OS&lt;/a&gt;&lt;/td&gt;
            &lt;td&gt;5&lt;/td&gt;
            &lt;td&gt;700+&lt;/td&gt;
            &lt;td&gt;Debian 11&lt;/td&gt;
            &lt;td&gt;Mate&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;&lt;a href=&quot;http://www.itrig.de/index.php?/archives/2256-Pentoo-Schweizer-Taschenmesser-fuer-Sicherheits-Tests.html&quot; target=&quot;_blank&quot;&gt;Pentoo&lt;/a&gt;&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;2018.0 RC7.1&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Gentoo&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Xfce&lt;/s&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;&lt;a href=&quot;http://itrig.de/index.php?/archives/1459-7-IT-Forensik-Linux-Distributionen-zur-Datenrettung,-Analyse,-Beweissicherung-oder-fuer-Penetrationstests.html&quot; target=&quot;_blank&quot;&gt;Ronin&lt;/a&gt;&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Lubuntu&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Lxde&lt;/s&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;s&gt;&lt;a href=&quot;http://itrig.de/index.php?/archives/1459-7-IT-Forensik-Linux-Distributionen-zur-Datenrettung,-Analyse,-Beweissicherung-oder-fuer-Penetrationstests.html&quot; target=&quot;_blank&quot;&gt;Sans SIFT&lt;/a&gt;&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;3.0&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
            &lt;td&gt;&lt;s&gt;Ubuntu&lt;/s&gt;&lt;/td&gt;
            &lt;td&gt;&amp;#160;&lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
 
    </content:encoded>

    <pubDate>Sun, 27 Mar 2022 18:38:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.itrig.de/index.php?/archives/2425-guid.html</guid>
    <category>debian ubuntu</category>
<category>dirsearch</category>
<category>download</category>
<category>entwicklung</category>
<category>feroxbuster</category>
<category>findmyhash</category>
<category>forensik</category>
<category>hacking</category>
<category>hacking tool</category>
<category>ivy</category>
<category>kali alternative</category>
<category>kali linux 2022.1</category>
<category>linux</category>
<category>mimipenguin</category>
<category>netzwerk</category>
<category>neuerungen</category>
<category>oletools</category>
<category>online tools</category>
<category>opensource</category>
<category>parrotos 5.0</category>
<category>penetration</category>
<category>pentesting</category>
<category>pentesting forensik</category>
<category>pocsuite3</category>
<category>post privacy</category>
<category>programme</category>
<category>raspberrypi</category>
<category>sicherheit</category>
<category>tools</category>
<category>ubuntu</category>
<category>virtuelle maschinen</category>
<category>was ist neu</category>

</item>

</channel>
</rss>
