Restore and import sessions to google colab

1 year ago
54

all the commands will be available at the description

Mint
cd /
pwd
sudo apt update
sudo apt-get install git gcc build-essential make pocl-opencl-icd ocl-icd-opencl-dev libhwloc-dev ocl-icd-dev
sudo git clone https://github.com/hashcat/hashcat.git && cd hashcat
sudo make -j 8
sudo make install

get hashfile to root folder /
cat hash
upload hash to filebin.net
hashcat -m 22000 -a 3 --session session1 ./wifi.hash ?d?d?d?d?d?d?d?d --force
sudo find / | grep session1.restore
cd /home/z/.local/share/hashcat/sessions/
cat session1.restore
upload restore to filebin.

COLAB

log in to colab.
enable gpu.
!nvidia-smi
install hashcat

sudo apt update
sudo apt-get install git gcc build-essential make pocl-opencl-icd ocl-icd-opencl-dev libhwloc-dev ocl-icd-dev
cd /
pwd
sudo git clone https://github.com/hashcat/hashcat.git && cd hashcat
sudo make -j 8
sudo make install

wget hash
hashcat --session session1 --restore
cd /root/.local/share/hashcat/sessions/
wget restore file
cd /hashcat
hashcat --session session1 --restore
cd /root/.local/share/hashcat/sessions/
cp session1.restore /content
download the resore file

Ubuntu:

wget hash file
hashcat --session session1 --restore
cd /home/z/.hashcat/sessions/
wget restore file
cd /
hashcat --session session1 --restore

Loading comments...