This content originally appeared on DEV Community and was authored by Dilver Huertas Guerrero
The Browser Exploitation Framework
Instalación de Ruby
Desinstalar la versión de ruby actual
sudo apt remove ruby
Instalar ruby con rbenv
sudo apt update
sudo apt install -y build-essential libssl-dev libreadline-dev zlib1g-dev git
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(rbenv init - zsh)"' >> ~/.zshrc
source ~/.zshrc
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
rbenv install 3.0.3
rbenv global 3.0.3
Asegurarse que la versión correcta está en uso
ruby -v
Instalación de Browser Exploitation Framework (BeEF)
Clonar el repositorio
git clone https://github.com/beefproject/beef
Una vez clonado el repositorio, realizar los siguientes cambios en los archivos ubicados en la carpeta principal
En el archivo install, modificar la línea 107: Cambiar
libncurses5-dev
porlibncurses-dev
En el archivo config.yaml, modificar las líneas 20 y 21 con el usuario y contraseña que quieran.
Desde la consola ejecutar el comando:
./install
Si todo se ha instalado correctamente, al final se genera el siguiente mensaje:
Para iniciar BeEF ejecutar el comando:
./beef
Pueden acceder a traves de la URL http://127.0.0.1:3000/ui/panel
This content originally appeared on DEV Community and was authored by Dilver Huertas Guerrero
Dilver Huertas Guerrero | Sciencx (2024-10-05T22:41:53+00:00) Instalar BeEF en Kali Linux 2024. Retrieved from https://www.scien.cx/2024/10/05/instalar-beef-en-kali-linux-2024/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.