Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
a2sv — Auto-Scan auf SSL-Schwachstellen | Kitploit
Tools/GitHubGitHub/hahwul/a2sv
AufklärungSchwachstellenscannerInformationsbeschaffungNetzwerksicherheitPenetrationstestsArchived
GitHubhahwul/a2sv

a2sv

Auto-Scan auf SSL-Schwachstellen

Repository anzeigen
6351682vor 5 JahrenNoch nicht geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

MIT License

1. A2SV?

Automatisches Scannen auf SSL-Sicherheitslücken.

HeartBleed, CCS Injection, SSLv3 POODLE, FREAK... etc.

A. Unterstützte Sicherheitslücken

root@kitploit:~
- CVE-2007-1858] Anonymous Cipher
- CVE-2012-4929] CRIME(SPDY)
- CVE-2014-0160] CCS Injection
- CVE-2014-0224] HeartBleed
- CVE-2014-3566] SSLv3 POODLE
- CVE-2015-0204] FREAK Attack
- CVE-2015-4000] LOGJAM Attack
- CVE-2016-0800] SSLv2 DROWN

B. Entwicklungsplan

root@kitploit:~
- PLAN] SSL ACCF
- PLAN] SSL-Informationsanalyse

2. Wie installieren?

A. A2SV herunterladen (klonen) & entpacken

root@kitploit:~
$ git clone https://github.com/hahwul/a2sv.git
$ cd a2sv

B. Python-Paket / OpenSSL installieren

root@kitploit:~
$ pip install argparse
$ pip install netaddr

$ apt-get install openssl

C. A2SV ausführen

root@kitploit:~
$ python a2sv.py -h

3. Wie benutzen?

root@kitploit:~
usage: a2sv [-h] [-t TARGET] [-tf TARGETFILE] [-p PORT] [-m MODULE]
[-d DISPLAY] [-u] [-v]

optional arguments:
  -h, --helpshow this help message and exit
  -t TARGET, --target TARGET
Target URL and IP Address
 $ e.g -t 127.0.0.1
  -tf TARGETFILE, --targetfile TARGETFILE
Target file(list) URL and IP Address
 $ e.g -tf ./target.list
  -p PORT, --port PORT  Custom Port / Default: 443
 $ e.g -p 8080
  -m MODULE, --module MODULE
Check SSL Vuln with one module
[anonymous]: Anonymous Cipher
[crime]: https://raw.githubusercontent.com/hahwul/a2sv/master/Crime(SPDY)
[heart]: https://raw.githubusercontent.com/hahwul/a2sv/master/HeartBleed
[ccs]: CCS Injection
[poodle]: SSLv3 POODLE
[freak]: OpenSSL FREAK
[logjam]: OpenSSL LOGJAM
[drown]: SSLv2 DROWN
  -d DISPLAY, --display DISPLAY
Display output
[Y,y] Show output
[N,n] Hide output
  -o OUT, --out OUT Result write to file
 $ e.g -o /home/yourdir/result.txt
  -u, --update  Update A2SV (GIT)
  -v, --version Show Version

[SSL-Sicherheitslücken scannen]

root@kitploit:~
$ python a2sv.py -t 127.0.0.1

$ python a2sv.py -t 127.0.0.1 -m heartbleed

$ python a2sv.py -t 127.0.0.1 -d n

$ python a2sv.py -t 127.0.0.1 -p 8111

$ python a2sv.py -tf target_list.txt

[A2SV aktualisieren]

root@kitploit:~
$ python a2sv.py -u

$ python a2sv.py --update

4. Unterstützung

Die Antwort erfolgt sehr langsam, da es sich um ein Projekt handelt, um das ich mich nicht richtig kümmern konnte.

5. Spenden

Ich mag Kaffee! Ich bin kaffeesüchtig.
Buy Me A Coffee

6. Bildschirmfoto

7. Quellcode-Referenzseiten

root@kitploit:~
- poodle : https://github.com/supersam654/Poodle-Checker

- heartbleed : https://github.com/sensepost/heartbleed-poc

- ccs injection : https://github.com/Tripwire/OpenSSL-CCS-Inject-Test

- freak : https://gist.github.com/martinseener/d50473228719a9554e6a
Tool herunterladen