Posts

Showing posts from June, 2017

How to install TigerVNC (Client) on kali linux

Image
Home Page: http://tigervnc.org/ TightVNC is a remote control software. Install with terminal: apt-get install tigervnc-viewer Run TigerVNC: vncviewer Tutorial Video:

Test download speed on terminal kali linux

Image
Home Page Test Speed: http://speedtest.net Open terminal, install speedtest-cli apt-get install speedtest-cli Run test speed: speedtest-cli Video tutorial:

Kill process in kali linux with command

Image
Find process id Open terminal: ps -a | grep firefox kill ProcessID Video tutorial:

Brute Force RDP with Hydra (Remote Desktop Bruteforce)

Image
HomePage: https://www.thc.org/ Open terminal: hydra -t 6 -w 6 -L /path_file/user.txt -P /path_file/pass.txt -o /path_file/save.txt -V -M /path_file/IpScan.txt rdp Options: -l user -L File User -p pass -P File Pass -M FILE list of servers to attack -t TASKS run TASKS number of connects in parallel (per host, default: 16) -W Time Out -V Showing Password being tried Video tutorial:

Flush DNS Google Chome

Image
Open Chrome type url: chrome://net-internals/#sockets Click "Flush socket pools" chrome://net-internals/#dns Click "Clear host cache" Flush Dns on Linux: Open terminal: service network-manager restart or sudo service network-manager restart

Install PlayOnLinux Kali Linux && Run PlayOnLinux as Root on Kali Linux

Image
Home Page: https://www.playonlinux.com/ PlayOnLinux is open source, makes easy to Install / Uninstall windows applications on Linux. Install with terminal: apt-get install playonlinux Run as Root: Step 1: Goto terminal: gedit /usr/share/playonlinux/lib/sources Add # in front of the line: #if [ "$(id -u)" = "0" ] #then # echo "PlayOnLinux is not supposed to be run as root. Sorry" # exit #fi Step 2: Goto terminal: gedit /usr/share/playonlinux/python/mainwindow.py Word search: Root uid check Add # in front of the line: Video Tutorial:

How to install firefox browser in kali linux

Image
Home page: https://www.mozilla.org/ Download and extract files: tar -xjvf firefox-53.0.3.tar.bz2 Copy folder firefox to opt and open terminal run: ln -s /opt/firefox/firefox /usr/bin/firefox Create shortcut and run normal Tutorial video: