application security

We have detailed talked about Netsparker Community Edition here. Now it has been updated to the latest version 1.5.0.0 with many changes.

Netsparker® Community Edition shares many features with Netsparker® Professional and just like Netsparker Professional, Community Edition is also False Positive Free. It can detect SQL Injection and Cross-site Scripting issues better than many other scanners (if not all), and it’s completely FREE. Netsparker Community Edition Works on Windows XP, 7, Vista, 2003/2008.

It is effective and the professional version is much more effective, especially in finding web application based vulnerabilities.

Download latest Netsparker Community Edition 1.5.0.0 edition here.

Searches leading to this post:
netsparker professional download, netsparker 1 5, Netsparker 1 5 0 0, Netsparker 1 5 0 0 (Community Edition) download

Be the first to comment!

Procedure and network admins talk about plugging all of the holes and securing their network of denial -of -service attacks, a single in the least talked about but probably the most highly effective network security process is sink-holing. So what exactly is this sink-holing This article is a component of a couple of series every expanding an implementing a different sort of sinkhole.

What is DNS sinkhole?

A sinkhole is defined like a process in which we redirect specific IP network targeted visitors for a variety of security factors just like analysis, diversion of attacks and detection of anomalous activities. It has extended been deployed by Tier-1 ISP’s globally commonly to protect their downstream customers. how ever for ones network administrators, sinkholes are commonly deployed to offer valuable intelligence relating to the security threats their networks are facing. Read on below for additional facts on sinkholes as well as the a couple of sorts of sinkhole implementation — darknets and honeynets and how you possibly can use them for getting valuable facts relating to threats and misconfigurations within your network.

cdcd1f58b911c09c2e764fe2a444f022 Easy and Effective Way for Setting up a DNS Sinkhole!

How to set up a DNS Sinkhole?

It is a ready to install DNS Sinkhole server for those who would like to test and/or deploy one in their network as an internal forwarder. I also indicated that inserting a DNS sinkhole in a network is like putting a NIDS/NIPS inline with potentially several thousand signatures (DNS domains). After you loaded your DNS sinkhole list, it hijacks the client’s DNS requests to known malicious sites responding with an IP address you control instead of its true address. It could also be used to enforce corporate policies (hacking, adults, gaming, social, etc) with the creation of separate sinkhole lists.

However, for maximum efficiency, it is important to only allow the DNS Sinkhole server to forward outbound requests (block all other outbound DNS request form internal servers/clients) otherwise, there are known cases where malware has been coded with its own DNS server/changer to evaded detection.

How to run the DNS Sinkhole?

The script to load the sinkhole list is located in the /root/scripts directory and is called sinkhole_parser.sh. This script contains a menu to download from 3 lists (Malware Domain Blocklist, ZeuS tracker and Malware Threat Center SRI). Any of these lists can be commented out in the script. They are merged, parsed and duplicates are removed to create a single list of 20,000+ sites. The sites are saved in a file in /var/named/site_specific_sinkhole.conf which can be loaded via the script in the DNS Sinkhole (server support either Bind or PowerDNS, see the release notes for configuration).

Download the DNS Sinkhole iso steup here

Searches leading to this post:
download sinkhole_parser sh, malware update requests were sinkholed, sinkholes in network security

Be the first to comment!

Performing a vulnerability scan is extremely resources consuming. Why not add a effortless vulnerability scan feature to Nmap. This principal goal is to save time and be a smaller amount intrusive. Nmap includes a built-in script interpreter named NSE “Nmap Scripting Engine“ which allows developers to write extensions for Nmap. It comes by default using a good deal of scripts. We can further develop this tools feature …

Thanks to Marc Ruef for developing a NSE script which adds a uncomplicated vulnerability scanner feature for ones Nmap. Technically, the script doesn’t perform a vulnerability scan by itself. In the powerful fingerprinting feature of Nmap while using “-sV” flag, the running applications and versions be|can be detected. Those people facts are applied as look-up keys inside a DB export of OSVDB, the Open Source Vulnerability Facts Base. The matching entries are displayed during the script output. The script installation is incredibly simple, just copy the files within your existing scripts repository

9208e0c09e217f06798494144cabb47c Integrate Nmap with NSE for Vulnerability Scanner.

Example:

“$NMAP_INSTALL_PATH/share/nmap/scripts/“

We can invoke it like any standard script:

# nmap -PN -sS -sV --script=vulscan -p80 www.example-samp.com
# nmap -PN -sS -sV --script=vulscan --script-args vulscancorrelation=1 -p80 www.example-samp.com

This is a very nice feature for Nmap. By using this script, you can quickly have an overview of the potential vulnerabilities on a target host. And, if necessary, use a more classic tool to focus on specific cases. Do not forget that false positives or false negatives and results must always be analyzed by a competent person ( for perfect results ).

To keep the vulnerability scanner accurate, the vulnerability DB must be kept up to date. To achieve this, you can automate the update using the CSV export available on osvdb.org updated daily. First you have to register. Once done, you will be able to download the CSV updates via a permalink generated with your API key. The upgrade can be fully automated via a simple daily cron and a script Like:

NMAPHOME=/usr/local/nmap # use your nmap path
FILES="object_correlations.txt object_links.txt object_products.txt vulnerabilities.txt"
cd /tmp
wget -o /dev/null http://osvdb.org/file/get_latest_csv/xxxxx/osvdb-csv.latest.tar.gz
for FILE in $FILES
do
tar xzf osvdb-csv.latest.tar.gz ./osvdb/$FILE
mv osvdb/$FILE $NMAPHOME/share/nmap/scripts/vulscan
done
rm -rf osvdb # delete this for sapce
rm osvdb-csv.latest.tar.gz # delete it for fresh file
exit 0

Click here to download the integrateded NSE with Nmap.

Searches leading to this post:
nmap nse, nmap banner scan option, nmap scan cell phone, use nmap nse

Be the first to comment!

Page 1 of 9123456...Last »