Skip to main content

How to activate Nessus professional in offline mode on windows platform

 In this blog, we will see how we can activate Nessus professional in windows platform but in offline mode. 

Offline mode means there will be no internet access on that server where Nessus will be installed. 

Here are the key steps:

  • You need Nessus professional license key.
  • Two systems. System A where internet access will be provided. System B where no internet access will be there. And in this System B, Nessus will be installed. 
  • Download Nessus .msi package from their official website from System A and take it to the system B. Install Nessus professional on System B. Once the installation is over, a webpage will automatically be opened and suggest you to click on connect via SSL. Click there. 
  • Once initialization is done, check the Register Offline check box and click on Continue. 
  • Select Nessus Professional and click on continue. 
  • Now you will be given a challenge code. You need to go to the offline registration site from system A and paste that challenge code on first box. Now in the second box you need to paste your nessus professional license key. Now click on submit. 
  • You will get plugins download url and along with the license key. Copy the license key and come back to the System B. Paste the key to the System B Nessus console for activation. It will be activated now after clicking continue. Now provide a username and password. 
  • Now download the plugins from the link from System A. Plugins name will be all-2.0.tar.gz
  • Remember the link you got is same for all time and fixed for your Nessus instance. If you need to update the plugins later, you need to re-download this plugins file from the same link and import it to the nessus as well. So save the plugins url. 
  • Now we need to incorporate those plugins into the Nessus. So from Services, stop Tenable Nessus service first on System B. 
  • Now run this command: C:\Program Files\Tenable\Nessus>nessuscli.exe update <path to the tar file all-2.0.tar.gz>
  • It will take around 30 minutes to complete. And you will see confirmation in the shell output. 
  • Once done, restart the Tenable Nessus service. Login to the Nessus now with the credentials that you created some while ago. It will take some more time to compile the injected plugins. Done. 


Avi

Comments

Popular posts from this blog

API hacking lab setup

 Follow the commands to install and configure API hacking lab: 1. Install kali linux and update all the packages.  apt update -y apt upgrade -y or apt dist-upgrade -y or apt full-upgrade -y If you face any problem regarding update, install cloud flare warp in the host machine, then again start updating packages in your kali vm.  2. Install and configure burpsuite professional.  After that open burpsuite and go to Extensions tab. Click on BAppStore. Search for Autorize extension, It will help us to automate authorization testing. Click on Download Jython from the right side. From Jython website click on Jython standalone JAR and save it. Go to Extensios > Extensions settings >  under Core extension settings find out Python environment on the right pane. Select the jython jar file that you just downloaded. Now again go to BAppStore and re-search for Autorize extension. You will see Install option this time after selecting Autorize extension. Install it. You ...

Disk acquisition and access for IR

 Goal for this lab is after we acquire the disk in .E01 format then how can we mount this to linux system for analysis.  দুইটা scenario cover করছি: (A) simple E01 + LVM (single disk), (B) E01 + Software RAID + LVM (multi-disk, যেমন disk1/disk2) From the linux analysis vm like sansforensic vm, you need to run the following commands.  We need to first create the working directories : mkdir -p /mnt/case/img /mnt/case/data E01 + LVM (single disk) - First case. Step 1 — E01 mount: ewfmount Webserver.E01 /mnt/case/img ls -lh  /mnt/case/img total 0  -r--r--r-- 1 root root 32G Feb 16 18:21 ewf1 Ewf1 is a raw disk image. It's size and main disk size are same. This is in read-only mode. See the permission. Step 2 — See the partition layout : mmls /mnt/case/img/ewf1 কোন offset-এ কোন partition আছে (boot, lvm ইত্যাদি) note করুন। RAID sign ( 0xfd ) আছে কিনা খেয়াল করুন — থাকলে Scenario B তে যান। lvscan | grep VulnOSv2-vg mount -o ro,noexec /dev/VulnOSv2-vg/root /mnt/case/dat...

How to use vim efficiently

  Here every command works in command mode . And if you need to write something then you need to go to Insert mode . Pressing i will take you to the insert mode.  1. Let's say you want to search something. For example you want to find avi keyword. Then first you need to go to the command mode by typing Esc . Now type /avi  (at the bottom) and hit enter. Press small n to forward this search pattern and press Shift N to go reverse.  2. Substitute something: :%s/old string/new string/g    (g for affecting globally) 3. If you want to pick the 1st letter of word then press w and last letter of word then press e .  4. yy means copy a single line. 2yy means copy double lines.  5. Shift P is for paste.  6. Shift D to delete a line or cut a line.  7. Press o to go a new line.  8. Press Home to go to the 1st letter of a line and End to go to the last letter of a line.  9. If you want to save the file then press wq! . 10. If ...