11 lines
298 B
Bash
Executable File
11 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
|
|
make clean
|
|
rsync -azPr -e "ssh -p2222" --delete . localhost:rsync/cve/
|
|
ssh -p2222 localhost "bash -l -c 'cd rsync/cve && make main_vm' && echo Done!"
|
|
rsync -azPr -e "ssh -p2222" --delete localhost:rsync/cve/ .
|
|
ls -l main_vm
|
|
cp main_vm ../../../../data/exploits/CVE-2016-4655/exploit
|
|
|
|
|