forked from trustedsec/ptf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadidnsdump.py
30 lines (21 loc) · 868 Bytes
/
adidnsdump.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
#########################################
# Installation module for adidnsdump
#########################################
# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install/update ADIDNSDump by Dirk-Jan (@_dirkjan) - Active Directory Integrated DNS dumping by any authenticated user"
AUTHOR="Andrew Schwartz"
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD
# OPTIONS = GIT, SVN, FILE
INSTALL_TYPE="GIT"
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY
REPOSITORY_LOCATION="https://github.com/dirkjanm/adidnsdump"
# WHERE DO YOU WANT TO INSTALL IT
INSTALL_LOCATION="adidnsdump"
# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git,impacket,dnspython"
# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION},pip install ."
# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL
LAUNCHER="adidnsdump"
TOOL_DEPEND="modules/exploitation/impacket"