├── LICENSE ├── README.md ├── install.sh ├── manage.py ├── media ├── README.md ├── applab .jpg ├── asreproast.gif ├── attack.gif ├── enum.gif ├── kerberoasting.gif ├── lab .jpg ├── logo.png └── passwordspray.gif ├── pentestui ├── PentestUI │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── static │ │ └── assets │ │ │ ├── css │ │ │ ├── black-dashboard.css │ │ │ └── nucleo-icons.css │ │ │ ├── demo │ │ │ ├── demo.css │ │ │ └── demo.js │ │ │ ├── img │ │ │ ├── favicon.ico │ │ │ ├── hacker.png │ │ │ ├── hackerprofile.jpg │ │ │ └── pentester.jpg │ │ │ └── js │ │ │ ├── black-dashboard.js │ │ │ ├── black-dashboard.min.js │ │ │ ├── core │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ └── popper.min.js │ │ │ └── plugins │ │ │ ├── bootstrap-notify.js │ │ │ ├── chartjs.min.js │ │ │ └── perfect-scrollbar.jquery.min.js │ ├── templates │ │ ├── accounts │ │ │ ├── login.html │ │ │ └── register.html │ │ ├── attackresult.html │ │ ├── enumresult.html │ │ ├── includes │ │ │ ├── fixed-plugin.html │ │ │ ├── footer.html │ │ │ ├── navigation.html │ │ │ ├── scripts-sidebar.html │ │ │ ├── scripts.html │ │ │ └── sidebar.html │ │ ├── index.html │ │ ├── layouts │ │ │ ├── base.html │ │ │ ├── baseprofile.html │ │ │ └── registerbase.html │ │ ├── page-403.html │ │ ├── page-404.html │ │ ├── page-500.html │ │ ├── page-blank.html │ │ ├── page-user.html │ │ ├── rest_framework │ │ │ ├── api.html │ │ │ └── base.html │ │ └── resultlog.html │ ├── urls.py │ └── wsgi.py ├── __init__.py ├── authenticate │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── pentest_api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── attacks │ │ ├── __init__.py │ │ ├── asreproast.py │ │ ├── dns │ │ │ ├── __init__.py │ │ │ └── resolution.py │ │ ├── kerberoasting.py │ │ └── kerberos │ │ │ ├── __init__.py │ │ │ ├── attackstatus │ │ │ ├── __init__.py │ │ │ └── statusasreproast.py │ │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── crypto.py │ │ │ ├── dcerpc │ │ │ ├── __init__.py │ │ │ └── v5 │ │ │ │ ├── __init__.py │ │ │ │ ├── dtypes.py │ │ │ │ ├── enum.py │ │ │ │ ├── ndr.py │ │ │ │ ├── rpcrt.py │ │ │ │ └── samr.py │ │ │ ├── krb5 │ │ │ ├── __init__.py │ │ │ ├── asn1.py │ │ │ ├── ccache.py │ │ │ ├── constants.py │ │ │ ├── crypto.py │ │ │ ├── gssapi.py │ │ │ ├── kerberosoutput.py │ │ │ ├── kerberosv5.py │ │ │ ├── types.py │ │ │ └── v5Error.py │ │ │ ├── nmb.py │ │ │ ├── nt_errors.py │ │ │ ├── ntlm.py │ │ │ ├── smb.py │ │ │ ├── smb3.py │ │ │ ├── smb3structs.py │ │ │ ├── smbconnection.py │ │ │ ├── spnego.py │ │ │ ├── structure.py │ │ │ ├── uuid.py │ │ │ └── version.py │ ├── enumeration │ │ ├── __init__.py │ │ └── ldap │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── enum │ │ │ ├── __init__.py │ │ │ └── ldapEnumeration.py │ │ │ ├── spray │ │ │ ├── __init__.py │ │ │ └── sprayattack.py │ │ │ └── status.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py └── uiapp │ ├── __init__.py │ ├── admin.py │ ├── config.py │ ├── models.py │ ├── urls.py │ └── views.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/install.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/manage.py -------------------------------------------------------------------------------- /media/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/applab .jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/applab .jpg -------------------------------------------------------------------------------- /media/asreproast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/asreproast.gif -------------------------------------------------------------------------------- /media/attack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/attack.gif -------------------------------------------------------------------------------- /media/enum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/enum.gif -------------------------------------------------------------------------------- /media/kerberoasting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/kerberoasting.gif -------------------------------------------------------------------------------- /media/lab .jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/lab .jpg -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/passwordspray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/media/passwordspray.gif -------------------------------------------------------------------------------- /pentestui/PentestUI/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/PentestUI/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/asgi.py -------------------------------------------------------------------------------- /pentestui/PentestUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/settings.py -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/css/black-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/css/black-dashboard.css -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/css/nucleo-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/css/nucleo-icons.css -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/demo/demo.css -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/demo/demo.js -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/img/favicon.ico -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/img/hacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/img/hacker.png -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/img/hackerprofile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/img/hackerprofile.jpg -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/img/pentester.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/img/pentester.jpg -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/black-dashboard.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/black-dashboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/js/black-dashboard.min.js -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/core/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/js/core/bootstrap.min.js -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/core/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/js/core/jquery.min.js -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/core/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/js/core/popper.min.js -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/plugins/bootstrap-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/js/plugins/bootstrap-notify.js -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/plugins/chartjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/js/plugins/chartjs.min.js -------------------------------------------------------------------------------- /pentestui/PentestUI/static/assets/js/plugins/perfect-scrollbar.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/static/assets/js/plugins/perfect-scrollbar.jquery.min.js -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/accounts/login.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/accounts/register.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/attackresult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/attackresult.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/enumresult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/enumresult.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/includes/fixed-plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/includes/fixed-plugin.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/includes/footer.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/includes/navigation.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/includes/scripts-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/includes/scripts-sidebar.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/includes/scripts.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/includes/sidebar.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/index.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/layouts/base.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/layouts/baseprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/layouts/baseprofile.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/layouts/registerbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/layouts/registerbase.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/page-403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/page-403.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/page-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/page-404.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/page-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/page-500.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/page-blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/page-blank.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/page-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/page-user.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/rest_framework/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/rest_framework/api.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/rest_framework/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/rest_framework/base.html -------------------------------------------------------------------------------- /pentestui/PentestUI/templates/resultlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/templates/resultlog.html -------------------------------------------------------------------------------- /pentestui/PentestUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/urls.py -------------------------------------------------------------------------------- /pentestui/PentestUI/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/PentestUI/wsgi.py -------------------------------------------------------------------------------- /pentestui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/authenticate/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/authenticate/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /pentestui/authenticate/apps.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/authenticate/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/authenticate/forms.py -------------------------------------------------------------------------------- /pentestui/authenticate/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/authenticate/models.py -------------------------------------------------------------------------------- /pentestui/authenticate/tests.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/authenticate/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/authenticate/urls.py -------------------------------------------------------------------------------- /pentestui/authenticate/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/authenticate/views.py -------------------------------------------------------------------------------- /pentestui/pentest_api/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/asreproast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/asreproast.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/dns/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/dns/resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/dns/resolution.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberoasting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberoasting.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/attackstatus/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/attackstatus/statusasreproast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/attackstatus/statusasreproast.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/crypto.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/dcerpc/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/dtypes.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/enum.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/ndr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/ndr.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/rpcrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/rpcrt.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/samr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/dcerpc/v5/samr.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/asn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/asn1.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/ccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/ccache.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/constants.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/crypto.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/gssapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/gssapi.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/kerberosoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/kerberosoutput.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/kerberosv5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/kerberosv5.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/types.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/krb5/v5Error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/krb5/v5Error.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/nmb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/nmb.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/nt_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/nt_errors.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/ntlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/ntlm.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/smb.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/smb3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/smb3.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/smb3structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/smb3structs.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/smbconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/smbconnection.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/spnego.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/spnego.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/structure.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/attacks/kerberos/modules/uuid.py -------------------------------------------------------------------------------- /pentestui/pentest_api/attacks/kerberos/modules/version.py: -------------------------------------------------------------------------------- 1 | PentestUIVersion = '2.1.1' 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/ldap/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/ldap/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/enumeration/ldap/connection.py -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/ldap/enum/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/ldap/enum/ldapEnumeration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/enumeration/ldap/enum/ldapEnumeration.py -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/ldap/spray/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/ldap/spray/sprayattack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/enumeration/ldap/spray/sprayattack.py -------------------------------------------------------------------------------- /pentestui/pentest_api/enumeration/ldap/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/enumeration/ldap/status.py -------------------------------------------------------------------------------- /pentestui/pentest_api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/models.py -------------------------------------------------------------------------------- /pentestui/pentest_api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/serializers.py -------------------------------------------------------------------------------- /pentestui/pentest_api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/tests.py -------------------------------------------------------------------------------- /pentestui/pentest_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/urls.py -------------------------------------------------------------------------------- /pentestui/pentest_api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/pentest_api/views.py -------------------------------------------------------------------------------- /pentestui/uiapp/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pentestui/uiapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /pentestui/uiapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/uiapp/config.py -------------------------------------------------------------------------------- /pentestui/uiapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/uiapp/models.py -------------------------------------------------------------------------------- /pentestui/uiapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/uiapp/urls.py -------------------------------------------------------------------------------- /pentestui/uiapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/pentestui/uiapp/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustgundogdu/PentestUI/HEAD/requirements.txt --------------------------------------------------------------------------------