Posts

Showing posts from July, 2017

Install TeamViewer on ubuntu 16.04 TLS 64Bit

Image
1. Download file https://www.teamviewer.com/en/download/linux / 2. sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install -f 3. sudo dpkg -i /path/file/teamview Tutorial Video:

How To Change Folder Color on Ubuntu 16.04

Image
sudo apt-get install folder-color nautilus -q Tutorial Video:

Connect the USB to VirtualBox for Ubuntu 16.04 LTS

Image
1. install VirtualBox Extension Pack" Download http://download.virtualbox.org/virtualbox/ 2. add user to virtualbox: sudo adduser yournam vboxusers 3. Reboot Tutorial Video:

How to use tool acccheck in Kali Linux for brute force password

Image
acccheck is brute force smb The Server Message Block (SMB) protocol is what Windows uses to share files, printers, serial ports smb port 445 acccheck -t [single host IP address] OR -T [file containing target ip address(es)] Optional: -p [single password] -P [file containing passwords] -u [single user] -U [file containing usernames] -v [verbose mode] example: acccheck -t 10.0.0.2 -u admin -P /Desktop/pass.txt video toturial:

How to install VPN on Kali Linux Rolling

Image
Install OpenVPN network manager: apt-get install network-manager-openvpn-gnome Install other VPN protocols pptp, strongswan, vpnc, L2TP apt-get install network-manager-openvpn network-manager-openvpn-gnome network-manager-pptp network-manager-pptp-gnome network-manager-strongswan network-manager-vpnc network-manager-vpnc-gnome Restart network: /etc/init.d/networking restart Following steps to add new VPN: Tutorial Video:

How to find Mac Address and Change in Kali Linux Rolling

Image
Install Macchange: apt-get install macchanger Find Mac Address: ifconfig Change Mac Address: ifconfig eth0 down macchanger -r eth0 ifconfig eth0 up -h, --help Print this help -V, --version Print version and exit -s, --show Print the MAC address and exit -e, --ending Don't change the vendor bytes -a, --another Set random vendor MAC of the same kind -A Set random vendor MAC of any kind -p, --permanent Reset to original, permanent hardware MAC -r, --random Set fully random MAC -l, --list[=keyword] Print known vendors -b, --bia Pretend to be a burned-in-address -m, --mac=XX:XX:XX:XX:XX:XX --mac XX:XX:XX:XX:XX:XX Set the MAC XX:XX:XX:XX:XX:XX Tutoriral Video:

How to install Skype on Kali Linux Rolling

Image
Home Page: https://www.skype.com/ Download file DEB for Linux: https://go.skype.com/linux.deb Install Skype: dpkg -i /path/file_deb Remove Skype: apt-get remove skypeforlinux Tutorial Video:

Vim Editor Basic Commands Kali Linux Rolling

Image
Press i to insert Press Esc to back command mode Basic command: :x           exit, save :wq        write, save :q           exit, no changes i             Insert beforce cursor I             Insert beforce line a            Append after cursor A           Append after line o            Open new line after cursor line O           Open new line before cursor line r             Repline one character R           Repline many characters Tutorial Video:

How to install Putty in Kali Linux

Image
Putty is open source software supports Ssh, Rlogin, Telnet Install with terminal: apt-get install putty Tutorial Video:

How to update and change Timezone on Kali Linux Rolling

Image
Update TimeZone: Install ntpdate with terminal: apt-get install ntpdate update time: ntpdate in.pool.ntp.org Change Timezone: dpkg-reconfigure tzdata Tutorial Video:

How to install VLC player and run VLC as Root on Kali Linux Rolling.

Image
Home Page: https://www.videolan.org/vlc/ VLC media player is media player and streaming media server open source code written by VideoLAN project. Install with terminal: apt-get install vlc Run VLC as Root sed -i 's/geteuid/getppid/' /usr/bin/vlc Tutotial Video: