Kali Linux Hands on
KALI LINUX Notes
DISCLAIMER:
- This document contains unedited notes and has not been formally proofread.
- The information provided in this document is intended to provide a basic understanding of certain technologies.
- Please exercise caution when visiting or downloading from websites mentioned in this document and verify the safety of the website and software.
- Some websites and software may be flagged as malware by antivirus programs.
- The document is not intended to be a comprehensive guide and should not be relied upon as the sole source of information.
- The document is not a substitute for professional advice or expert analysis and should not be used as such.
- The document does not constitute an endorsement or recommendation of any particular technology, product, or service.
- The reader assumes all responsibility for their use of the information contained in this document and any consequences that may arise.
- The author disclaim any liability for any damages or losses that may result from the use of this document or the information contained therein.
- The author reserve the right to update or change the information contained in this document at any time without prior notice.
- Any attempts to perform penetration testing or ethical hacking on systems or networks should be done with the explicit permission of the system/network owner. Unauthorized access is illegal and can result in serious legal consequences.
- It is important to fully understand the scope of the testing and to only test within that scope. Testing outside the agreed upon scope is considered unauthorized and may result in legal action.
- Any findings or vulnerabilities discovered during testing should be reported to the system/network owner immediately and kept confidential until a fix can be implemented.
- It is recommended to use a separate, dedicated testing environment rather than testing on a live production system to minimize the risk of accidentally causing damage or downtime.
- It is important to take steps to protect your own identity and prevent accidental data leaks or exposure of sensitive information during testing.
- It is also recommended to follow a standard code of ethics for ethical hacking and penetration testing.
REFERENCES:
- https://www.kali.org/tools/
- https://www.gnu.org/software/grub/manual/grub/html_node/Command_002dline-and-menu-entry-commands.html
- https://developer-old.gnome.org/NetworkManager/stable/nmcli.html
- https://forum.greenbone.net/
**************************************************************
##Update the kali with complete Distribution upgrade:
- sudo apt update
- sudo apt upgrade
- sudo apt dist-upgrade -y
**************************************************************
DUAL Boot Kali Linux with Windows
- ┌──(kali㉿kali)-[~]
- └─$ sudo os-prober
/dev/sda1:Windows
Run update-grub
- ┌──(kali㉿kali)-[~]
- └─$ sudo update-grub
Just uncomment the below command
- ┌──(kali㉿kali)-[~]
- └─$ sudo nano /etc/default/grub
#GRUB_DISABLE_OS_PROBER=false
Once again Run update-grub
- ┌──(kali㉿kali)-[~]
- └─$ sudo update-grub
done
└─$ reboot
**************************************************************
GVM:
- ┌──(kali㉿kali)-[~]
- └─$ sudo apt install gvm
- ┌──(kali㉿kali)-[~]
- └─$ sudo gvm-setup
[+] Done
[*] Please note the password for the admin user
[*] User created with password '**********************.
[>] You can now run gvm-check-setup to make sure everything is correctly configured
- ┌──(kali㉿kali)-[~]
- └─$ sudo gvm-check-setup
It seems like your GVM-22.4.1 installation is OK.
- ┌──(kali㉿kali)-[~]
- └─$ ss -lnt4
- └─$ sudo gvm-start
[>] You might need to refresh your browser once it opens.
[>] Web UI (Greenbone Security Assistant): https://127.0.0.1:9392
ob for gvmd.service failed because a timeout was exceeded.
See "systemctl status gvmd.service" and "journalctl -xeu gvmd.service" for details.
- sudo nano /etc/postgresql/15/main/postgresql.conf
How to Update GVM feed
Verify GVM certificates
Nessus
- ┌──(kali㉿kali)-[~]
- └─$ sudo dpkg -i Nessus-10.5.1-debian10_amd64.deb
- Then go to https://kali:8834/ to configure your scanner
Testing/ ***************
- ┌──(kali㉿kali)-[~]
- └─$ /bin/systemctl start nessusd.service
**************************************************************
WiFi
┌──(kali㉿kali)-[~]
└─$ nmcli device wifi list
**************************************************************
GREP command
- -f is the field like 2nd string or 11th string and
- -d is the delimiter
- sort function
- unique strings only
Comments
Post a Comment