Skip to content

Commit

Permalink
Temp fix for finalrecon thewhiteh4t/FinalRecon#64
Browse files Browse the repository at this point in the history
  • Loading branch information
ShutdownRepo committed Sep 26, 2023
1 parent 04a832a commit 017d303
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion sources/install/package_osint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,15 @@ function install_spiderfoot() {

function install_finalrecon() {
colorecho "Installing FinalRecon"
git -C /opt/tools/ clone --depth 1 https://github.com/thewhiteh4t/FinalRecon
# git -C /opt/tools/ clone --depth 1 https://github.com/thewhiteh4t/FinalRecon
# temp fix for https://github.com/thewhiteh4t/FinalRecon/issues/64
local TEMP_FIX_LIMIT="2023-10-29"
if [ "$(date +%Y%m%d)" -gt "$(date -d $TEMP_FIX_LIMIT +%Y%m%d)" ]; then
criticalecho "Temp fix expired. Exiting."
else
git -C /opt/tools/ clone https://github.com/thewhiteh4t/FinalRecon
git -C /opt/tools/FinalRecon checkout 2f64052c51dc53cbaa8ecf3a17975004f9a51748
fi
cd /opt/tools/FinalRecon || exit
python3 -m venv ./venv
catch_and_retry ./venv/bin/python3 -m pip install -r requirements.txt
Expand Down

0 comments on commit 017d303

Please sign in to comment.