- Advanced Penetration Testing for Highly-Secured Environments:The Ultimate Security Guide
- Lee Allen
- 490字
- 2021-08-06 19:58:29
Exploring BackTrack
Congratulations, you now have one of the most powerful collections of penetration tools available and ready for your usage. Entire books are dedicated to covering the excellent collection of tools that are part of the BackTrack Linux platform. This toolkit will definitely save you a lot of time out in the field.
After logging in, we should change this default password as soon as possible. You can do this by typing passwd
at the prompt and replacing 1NewPassWordHere
as seen in the example with your own secure password.
root@bt:~# passwd Enter new UNIX password: 1NewPassWordHere! Retype new UNIX password: 1NewPassWordHere! passwd: password updated successfully root@bt:~#
Tip
If you are having issues with screen resolution or experiencing other minor annoyances, you may want to install the VirtualBox Guest Additions. With the guest machine running, click on Devices and then Install Guest Additions to initiate this install. You will be required to restart BackTrack afterwards.
Your virtual machine network cards are currently configured to allow your BackTrack installation to access your host system's Internet connection using NAT. In order to update the operating system there are a few commands that you should become familiar with.
One thing to keep in mind is that BackTrack is based on Ubuntu and as with any other operating system, patching is required in order to ensure that the latest security patches are applied. It is also important to keep applications up-to-date so that the latest testing techniques and tools can be taken advantage of!
By default, BackTrack is set up to use only the BackTrack repositories. If curious, you can see what these are by looking at the /etc/apt/sources.list
file.
The first command that will need to be initialized is the advanced packaging tools (APT) update function. This will synchronize the package index files to ensure that you have information about the latest packages available. The update functionality should always be used prior to installing any software or updating your installed packages.
# apt-get update
After this update is complete you may initialize apt's upgrade command. All installed packages will be updated to the latest release found within your repositories.
# apt-get upgrade
There is another apt command that is used to update your system. dist-upgrade
will bring BackTrack to the latest release. For example, if you are running BackTrack 4 and would like to upgrade instead of downloading and installing the latest version BackTrack 5 release, you may do so by typing:
# apt-get dist-upgrade
Now that your system has been updated, it is time to start up the graphical user interface (type startx
at the prompt again) and have a look around at your new toolkit. We will be making extensive use of these tools throughout the course of this book.
- 物聯網工程規劃技術
- 工業控制網絡安全技術與實踐
- 數字烏托邦
- Django 2 by Example
- 中國互聯網發展報告2018
- 圖解手機元器件維修技巧
- The Kubernetes Workshop
- 網絡環境中基于用戶視角的信息質量評價研究
- INSTANT KineticJS Starter
- Scala Design Patterns.
- 異構蜂窩網絡關鍵理論與技術
- 5G時代的大數據技術架構和關鍵技術詳解
- React Design Patterns and Best Practices(Second Edition)
- Architecting Data:Intensive Applications
- Hands-On Microservices:Monitoring and Testing