Open psyray opened 3 years ago
Hi,
Thanks for your work ;) In your install script the git clone of the https://github.com/jondonas/linux-exploit-suggester-2 repository is missing.
https://github.com/jondonas/linux-exploit-suggester-2
You make a symbolic link at line 84 which is unresolved. https://github.com/makikvues/ethical-hacking/blob/e5959d4a8645cc54f25107de00848f7fa3672fa6/CTF-framework/install.sh#L84
Add the missing git clone at the end of the git clone section fix the bug, and symbolic link is correctly linked.
git clone
git clone https://github.com/jondonas/linux-exploit-suggester-2 "/opt/linux-exploit-suggester-2"
PR submitted #2
Hi,
Thanks for your work ;) In your install script the git clone of the
https://github.com/jondonas/linux-exploit-suggester-2
repository is missing.You make a symbolic link at line 84 which is unresolved. https://github.com/makikvues/ethical-hacking/blob/e5959d4a8645cc54f25107de00848f7fa3672fa6/CTF-framework/install.sh#L84
Add the missing
git clone
at the end of the git clone section fix the bug, and symbolic link is correctly linked.git clone https://github.com/jondonas/linux-exploit-suggester-2 "/opt/linux-exploit-suggester-2"