Skip to content

Commit

Permalink
add amass osint tool to ptf
Browse files Browse the repository at this point in the history
  • Loading branch information
HackingDave committed Apr 15, 2020
1 parent faf9ba7 commit 9fa8760
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
31 changes: 31 additions & 0 deletions modules/intelligence-gathering/amass.py
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=""
2 changes: 0 additions & 2 deletions src/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
from src.core import *

# this will execute after everything is over


def after_commands(command, install_location):
# if there is more than one command iterate through
if "," in command:
Expand Down
2 changes: 0 additions & 2 deletions src/platforms/debian.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import subprocess

# this will do updates and installations


def base_install_modules(module_name):

counter = 0
Expand Down

0 comments on commit 9fa8760

Please sign in to comment.