Posts

Showing posts with the label Administration

Enable WIFI ADAPTER Monitor Mode in Kali Linux

Connect the WIFI adapter and add it in VirtualBox USB Settings TP-Link TL-WN725N 150Mbps Wireless N Nano USB Adapter https://www.amazon.in/gp/product/B008IFXQFU Check the Adapter Chippet lsusb Bus 001 Device 002 : ID 2357 : 0109 TP-Link TL-WN823N v2 / v3 [Realtek RTL8192EU] Bus 001 Device 001 : ID 1 d6b: 0002 Linux Foundation 2 . 0 root hub Bus 002 Device 002 : ID 80 ee: 0021 VirtualBox USB Tablet Bus 002 Device 001 : ID 1 d6b: 0001 Linux Foundation 1 . 1 root hub Find Appropriate Driver for Realtek RTL8192EU from GitHub https://github.com/clnhub/rtl8192eu-linux Install the dependencies sudo apt install linux-headers-generic build-essential dkms git Clone the Driver git clone https://github.com/clnhub/rtl8192eu-linux.git Configure the Architecture and Monitor Mode Open MakeFile in Text Editor or Nano If you're using a different architecture than x86, the set (MakeFile) CONFIG_PLATFORM_I386_PC = n set your architecture CONFIG_PLATFORM_ARM_AARCH64...

Enable WIFI ADAPTER Monitor Mode in Kali Linux

Connect the WIFI adapter and add it in VirtualBox USB Settings TP-Link TL-WN725N 150Mbps Wireless N Nano USB Adapter https://www.amazon.in/gp/product/B008IFXQFU Check the Adapter Chippet lsusb Bus 001 Device 002 : ID 2357 : 0109 TP-Link TL-WN823N v2 / v3 [Realtek RTL8192EU] Bus 001 Device 001 : ID 1 d6b: 0002 Linux Foundation 2 . 0 root hub Bus 002 Device 002 : ID 80 ee: 0021 VirtualBox USB Tablet Bus 002 Device 001 : ID 1 d6b: 0001 Linux Foundation 1 . 1 root hub Find Appropriate Driver for Realtek RTL8192EU from GitHub https://github.com/clnhub/rtl8192eu-linux Install the dependencies sudo apt install linux-headers-generic build-essential dkms git Clone the Driver git clone https://github.com/clnhub/rtl8192eu-linux.git Configure the Architecture and Monitor Mode Open MakeFile in Text Editor or Nano If you're using a different architecture than x86, the set (MakeFile) CONFIG_PLATFORM_I386_PC = n set your architecture CONFIG_PLATFORM_ARM_AARCH64...

How to Run VirtualBox Guest OS (E.g. Kali Linux) in Command Mode?

Running VirtualBox Guest OS (E.g. Kali Linux) in Command Mode will consume less resources comparing GUI mode. This can be achieved by using VBoxManager CLI Command and Headless Mode of Guest OS. Follow the given below instructions for activating Guest OS, Set the PATH variable for VirtualBox in Windows Goto Environment Variables and then edit Path variable Add this path: C:\Program Files\Oracle\VirtualBox Ensure that VBoxSDS Service is running or not (if not running run the below command in Admin Command Windows) sc config VBoxSDS start=demand To Display ALL Guest OS vboxmanage list vms To Start Guest OS through Command Mode VBoxManage.exe startvm Guest_OS_Name E.g. VBoxManage.exe startvm "Kali Linux" To Start the Guest OS in Headless Mode VBoxManage startvm "Kali Linux" --type headless Now you can access Kali Linux through SSH in your Host OS ssh username@kali_ip_address To Shutdown the Guest OS VBoxManage controlvm "Kali Linux...

How to add or remove plugins to Redmine Project Management Software?

Download the plugin: You can either download the plugin from the Redmine plugin directory or from a third-party source. https://www.redmine.org/plugins https://github.com/haru/redmine_code_review/releases/tag/1.1.0 Install the plugin: Extract the Archive file and Place the plugin in the "plugins" directory of your Redmine installation. The path should look like "redmine_root/plugins/". sudo cp -r redmine_code_review/ /opt/redmine/plugins Restart Redmine: Restart the Redmine application and Apache web Server to ensure that it recognizes the new plugin. cd /opt/ redmine/ sudo rake redmine: plugins: migrate RAILS_ENV=production sudo sudo systemctl reload apache2 Activate the plugin: Log in to your Redmine application as an administrator, then go to the "Administration" section and click on "Plugins". Find the newly installed plugin and click on the "Configure" link to activate it. Configure the plugin: Some plugins may...

How to Install Sublime Text in Ubuntu or Kali Linux ?

Run ALL the given below commands in Terminal Install the GPG key wget -qO - https: // download.sublimetext.com /sublimehq-pub.gpg | gpg --dearmor | sudo tee / etc /apt/ trusted.gpg.d /sublimehq-archive.gpg > / dev /null Add stable channel from official website echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources. list .d/sublime- text . list Update apt sources bash sudo apt-get update Ensure that apt is set up to work with https sources sudo apt- get install apt-transport- https Install Sublime Text: sudo apt- get install sublime- text

Installing Kali Linux in Windows 11 using WSL2

Image
Kali Linux is the powerful operating system for penetrate testing and ethical hacking. You can install Kali Linux in three ways, Install along with Windows (Dual Boot) Install using Virtual Machine (VMWare or Virtual Box) Install using WSL2 (Windows Subsystem for Linux) This post explains how to install Kali Linux in Windows 11 using WSL2. Prerequisites: Running Windows 10 version 2004 or higher Open PowerShell as administrator and run: Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux Restart the Windows OS Open PowerShell as administrator and run: dism.exe /online / enable-feature /featurename:VirtualMachinePlatform / all /norestart dism.exe /online / enable-feature /featurename:Microsoft-Windows-Subsystem-Linux / all /norestart Restart the Windows OS Download and install the WSL2 Linux Kernel from here: https://aka.ms/wsl2kernel Open PowerShell as administrator and run: wsl -- set - default -version 2 Install Kali Linux from the...

Configure Windows PowerShell to display Current Working Directory Name

Image
Open Powershell and Check your powershell profile path $profile Create a File if it does not exist mkdir C:\Users\anthoniraj\Documents\WindowsPowerShell\ Create a Profile File notepad C:\Users\anthoniraj\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 Add the following script and save the content function prompt { $p = Split-Path -leaf -path ( Get-Location ) " $p > " } Restart PowerShell. Now you will see only current working directory in console.

Redmine Installation with Code Review Plugin in Ubuntu 20.04

Redmine is the popular open source project management system with code review feature. We can tarck the time spent by developers for a particular project. GIT and SVN can also be linked with redmine for code review. It is complete package for managing projects in a small team size. Redmine URL Redmine is a project management web application. https://redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_50x_on_Ubuntu_2004_with_Apache2 Installing dependencies sudo apt- get update && sudo apt- get upgrade -y Install required packages sudo apt install -y apache2 ruby ruby-dev build -essential libapache2- mod -passenger libmysqlclient-dev sudo apt- get install mysql- server ` Download & Extract Redmine wget http s: //redmine.org/releases/redmine- 5.0 . 1 .tar.gz` cd / opt sudo tar -xvzf ~/redmine- 5.0 . 1 .tar.gz sudo cp -r redmine / opt / Symlink to remove version reference sudo ln -s redmine-5 .0 .1 redmine Configure database Create a database a...

Convert Source Code tar.gz , tar.bz2 or rpm files into deb Package

Developer can easily convert the source code into distribution based package format. These packages are easy installable and configurable . There are two package types used in all Linux distribution deb package [ Debian based Package ] rpm package [ Redhat Package Manager] Debian, Ubuntu, Gentoo, and other Debian based OS are using DEB package,  Redhat, Fedora, CentOS are using RPM package. The conversion between rpm based package to deb package is given in this article. The tool " alien " is used for doing this job. Step 1: Install alien #sudo apt-get install  alien Step 2:  Convert tar.gz to deb #sudo alien /opt/eclipse-helios.tar.gz This command  will create eclipse-helios.deb package in /opt directory. Step 3: Convert rpm to deb #sudo alien ffmpeg-0.6-3.fc13.i686.rpm