From 56f95680174ee94198ad2f56a597f6d1af08a294 Mon Sep 17 00:00:00 2001 From: Syed Umar Arfeen <18597330+Anon-Exploiter@users.noreply.github.com> Date: Thu, 24 Jun 2021 10:48:51 +0500 Subject: [PATCH 1/2] Updated installation of altdns Removed usage of python2 and manual installation of requirements.txt since there's a pip3 package of altdns which takes cares of everything. This way we don't have to install python2 either (not that it gets installed) ```bash Package python-pip is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source However the following packages replace it: python3-pip Reading package lists... Done Building dependency tree... Done Reading state information... Done Package 'python3-pip' is not installed, so not removed ``` --- install.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/install.sh b/install.sh index b7c15fa..0c16dd9 100755 --- a/install.sh +++ b/install.sh @@ -161,7 +161,6 @@ git clone https://github.com/hisxo/gitGraber.git git clone https://github.com/1N3/LinkFinder git clone https://github.com/christophetd/censys-subdomain-finder.git git clone https://github.com/rbsec/dnscan.git -git clone https://github.com/infosec-au/altdns.git git clone https://github.com/blechschmidt/massdns.git git clone https://github.com/ProjectAnte/dnsgen git clone https://github.com/scipag/vulscan @@ -177,10 +176,7 @@ cd .. pip3 install -r $PLUGINS_DIR/gitGraber/requirements.txt pip3 install -r $PLUGINS_DIR/censys-subdomain-finder/requirements.txt pip3 install -r $PLUGINS_DIR/dnscan/requirements.txt -cd altdns -pip3 install -r requirements.txt -python2 setup.py install -pip3 install py-altdns 2> /dev/null +pip3 install py-altdns cd .. cd massdns make && make install From 81045922de832e7cd68b6628cb142795dd341383 Mon Sep 17 00:00:00 2001 From: Syed Umar Arfeen <18597330+Anon-Exploiter@users.noreply.github.com> Date: Thu, 24 Jun 2021 11:05:49 +0500 Subject: [PATCH 2/2] Not going up one directory since; already in main --- install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install.sh b/install.sh index 0c16dd9..f8bfaca 100755 --- a/install.sh +++ b/install.sh @@ -177,7 +177,6 @@ pip3 install -r $PLUGINS_DIR/gitGraber/requirements.txt pip3 install -r $PLUGINS_DIR/censys-subdomain-finder/requirements.txt pip3 install -r $PLUGINS_DIR/dnscan/requirements.txt pip3 install py-altdns -cd .. cd massdns make && make install cd ..