Sep 17, 2010

Announcing The Nessus iPhone App

Announcing The Nessus iPhone App: "
Nessus-AppleIcon1.png


Tenable is pleased to announce the official release of the Nessus iPhone app! The application can be downloaded for free from the Apple Store and contains the following features:



  • Connect to a Nessus server (4.2 or later)

  • Launch existing scan templates on a server

  • Start, stop or pause running scans

  • Create and execute new scans and scan templates

  • View and filter reports


You will need iPhone or iPod Touch iOS 4.0 or later in order to run the app. Following are some screenshots of the application in action:



The first thing you will need to do is add a new Nessus server:

IMG_1360_SM.png


There is no hard limit as to how many Nessus servers can be in the list. Once a server has been added you can connect to it:



IMG_1362_SM.png



Once logged in you can create or launch scans or view reports:



IMG_1364_SM.png



Viewing reports allows you to browse Nessus reports and apply filters:



IMG_1366_SM.png



Scans can be added and saved as templates:



IMG_1370_SM.png



Existing or newly created scans can be launched or paused:



IMG_1372_SM.png



We hope Nessus users will take advantage of the new iPhone app and its features to manage or initiate scans on the go. For more information please visit the Nessus Discussion Forums.

"

Sep 14, 2010

Route Preference


Suppose a router receives a packet destined for the IP address 192.0.2.73. The router has in its routing table the following three routes:
ProtocolADMetricPrefixNext Hop
OSPF110240192.0.2.0/25172.16.1.1
EIGRP9033789192.0.2.0/24172.16.2.1
RIP1206192.0.2.64/26172.16.3.1
To which next hop address will the packet be routed?
If you picked 172.16.3.1, you're correct. Why? A router evaluates routes in the following order.
  1. Prefix Length - The longest-matching route is preferred first. Prefix length trumps all other route attributes.
  2. Administrative Distance - In the event there are multiple routes to a destination with the same prefix length, the route learned by the protocol with the lowest administrative distance is preferred.
  3. Metric - In the event there are multiple routes learned by the same protocol with same prefix length, the route with the lowest metric is preferred. (If two or more of these routes have equal metrics, load balancing across them may occur.)

Sep 8, 2010

Speed Up SATA Hard Disk Performance with AHCI

The Advanced Host Controller Interface(AHCI) will speed up read and write operations of the hard drive if the hard drive supports AHCI.


AHCI includs a PCI BAR (base address register) to achieve the native SATA function. As the AHCI successfully develops a unified interface,allow the Serial ATA product development work greatly simplified. It can achieve a number of features including NCQ (Native Command Queuing).

This is a tip to enable AHCI at the boot level to speed up the performance of your SATA disk.

  1. Start your registry with "regedit".
  2. Browse to the "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Msahci"
  3. Locate the parameter "Start" on the right side.
  4. Double click it to change its value from 3 to 0.
  5. Restart the computer.

Sep 7, 2010

Show XP Network Connection Tray Icon in Windows 7

If you are like me, prefer to get back the XP network connection tray icon to the Windows 7 tray icon, then follow this tip.


Just download Network Activity Indicator, and install it, you should see a new network connection tray icon. Right click it to choose the "Settings", and you can set the following if you want:

  • Display (blink) TCP/UDP/ICMP traffic.
  • Use Vista style icon.
  • Load at Windows Startup.

Sep 6, 2010

Fix Slow Network Copy in Windows 7

TCP Task offloading to Network Interface Card (NIC) means transferring certain tasks such as Checksum calculation on Header or data Tunnel Encryption and so on from system processor to NIC. This boots the performance of the system as the processor is freed from the overhead of such tasks.

Disable it may help to you fixed slow network copy and connection drops in windows 7. There are 2 ways to set this setting.


  • Start "cmd" in "Administrator mode".
  • Run the following command to check the enabled offload tasks.
C:\Windows\system32> netsh int ip show offload
  • Run the following command to disable all Task offloads.
C:\Windows\system32> netsh int ip set global taskoffload=disabled
  • If it displays "OK" means you have disabled all the offloads.
  • Disable the NIC and Re-enable it to refresh the setting.
Another way to disable it is via Registry.
  • Start "regedit"
  • Browse to "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters"
  • Create or select the "DisableTaskOffload" (DWORD) and set it to:
1 : Disable task offload.
0 : Enable task offload.