Posts

Showing posts with the label Linux

How to Empty Recycle Bin in Linux Mint

open a terminal window launch the following command sudo aptitude install trash-cli Linux will ask you for the superuser password Reply to the questions with “y” or “Y” The following NEW packages will be installed: python-pkg-resources{a} trash-cli The following packages will be REMOVED: libllvm11{u} libxcb-xtest0{u} linux-modules-extra-5.4.0-67-generic{u} linux-modules-extra-5.4.0-72-generic{u} 0 packages upgraded, 2 newly installed, 4 to remove and 77 not upgraded.Need to get 154 kB of archives. After unpacking 486 MB will be freed.Do you want to continue? [Y/n/?] yGet: 1 http://archive.ubuntu.com/ubuntu focal/universe amd64 python-pkg-resources all 44.0.0-2 [129 kB]Get: 2 http://archive.ubuntu.com/ubuntu focal/universe amd64 trash-cli all 0.17.1.14-2ubuntu1 [24,2 kB]Fetched 154 kB in 0s (615 kB/s) simply watch the script search for unnecessary files on your system: (Reading database ... 460254 files and directories currently installed.)Remo...

How To Check Wifi Monitor Mode in Linux

open a terminal window execute the following command: wassim@wassim-PC:~$ iw list You will get a list of supported capabilities: wassim@wassim-PC:~$ iw listWiphy phy0 max # scan SSIDs: 4 max scan IEs length: 2257 bytes max # sched scan SSIDs: 0 max # match sets: 0 max # scan plans: 1 max scan plan interval: -1 max scan plan iterations: 0 Retry short limit: 7 Retry long limit: 4 Coverage class: 0 (up to 0m) Device supports RSN-IBSS. Device supports AP-side u-APSD. Device supports T-DLS. Supported Ciphers: * WEP40 (00-0f-ac:1) * WEP104 (00-0f-ac:5) * TKIP (00-0f-ac:2) * CCMP-128 (00-0f-ac:4) * CCMP-256 (00-0f-ac:10) * GCMP-128 (00-0f-ac:8) * GCMP-256 (00-0f-ac:9) * CMAC (00-0f-ac:6) * CMAC-256 (00-0f-ac:13) * GMAC-128 (00-0f-ac:11) * GMAC-256 (00-0f-ac:12) Available Antennas: TX 0x1 RX 0x1 Configured Antennas: TX 0x1 RX 0x1 My wifi card is named phy0. Under the name of your wifi card look for the line “supported interfaces modes”: Supported interface modes: * IBSS...

2 Free Tacacs+ Alternatives

Image
These are my notes on configuring and testing a quick implementation of a free tacacs+ authentication and authorization server software on Windows and on Kali Linux. A quick review of TACACS+ Tacacs+ is used by network devices to authenticate users. Each user that logs on to a network device is checked against the Tacacs+ server database, before a decision is made. The decision can be something like: the user is authenticated but will have limited access to the network device the user is authenticated and will have full rights on the network device, the user is not authorized to access the network device and is kicked off. Tacacs.Net on Windows Installation and configuration Download the software from the official website Install the software. At some point, the system asks you to configure a shared secret. This key will be used for communications between Tacacs+ clients and the Tacacs+ server. Configuring authentication For Windows 7, the configuration files are in the following path...