Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/TeamViewer/viewer.sh
1303 views
1
#!/usr/bin/bash
2
cd /root/
3
wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb
4
apt install ./teamviewer_amd64.deb -y
5
sleep 5
6
rm -rf *teamviewer_amd64.deb*
7
sleep 5;
8
exit 0;
9
10
11