forked from trustedsec/ptf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
faf9ba7
commit 9fa8760
Showing
3 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for AMass | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Dave Kennedy (HackingDave)" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module will install/update AMass - OSINT tool for discovery" | ||
|
||
# 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/OWASP/Amass" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="amass" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="snapd" | ||
|
||
# DEPENDS FOR FEDORA INSTALLS | ||
FEDORA="snapd" | ||
|
||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="systemctl start snapd,snap install amass,export PATH=$PATH:/snap/bin,echo 'export PATH=$PATH:/snap/bin' >> ~/.bashrc,snap refresh amass" | ||
|
||
LAUNCHER="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters