0000430: OpenVAS GreenBone Security Assistant (webUI) - MantisBT: "texlive-latex-extra"
Had problems getting Greenbone Security Assistant OpenVAS in BackLinux v3.13 producing reports in PDF format.
Found a Kali Linux bug indicating that the package texlive-latex-extra had to be installed in order to produce PDF reports.
It's an extra 650MB+ of stuff to install but it did fix the PDF report issue.
'via Blog this'
I'm just a simple techie who sometimes forgets things. I use this as a notepad to remember things by. I hope it helps you too. I post as myself, not as any organisation.
Sunday, 13 April 2014
How to change the port and IP for Greenbone OpenVAS on BackLinux
By default, Greenbone OpenVAS on BackLinux v3.13 listens on port 9293 on the loopback address (127.0.0.1).
To change this, edit the /etc/default/greenbone-security-assistant and change the GSA_ADDRESS and GSA_PORT lines.
Changing these to 0.0.0.0 and 443 respectively, will make the GUI available on the standard HTTPS port. You'll only be able to do this as long as your have nothing else listening on that port.
You can confirm what ports are in use by using netstat -ant.
To change this, edit the /etc/default/greenbone-security-assistant and change the GSA_ADDRESS and GSA_PORT lines.
Changing these to 0.0.0.0 and 443 respectively, will make the GUI available on the standard HTTPS port. You'll only be able to do this as long as your have nothing else listening on that port.
You can confirm what ports are in use by using netstat -ant.
Wednesday, 9 April 2014
BASH script to wrap around Heartbleed scanner
The following script wraps around the Heartbleed scanner talked about in the previous post to scan all IP addresses within a file and output the results to a log.
I know it's basic, but it works - I'd be very happy if someone could come up with a script that would accept a subnet in CIDR format and scan all IP's with that subnet. Something like "hbscan 172.16.1.0/24"
Step-by-step:
That script was frankenstiened from:
http://www.commondork.com/2013/07/06/bash-script-to-scan-subnets-with-nmap/
I know it's basic, but it works - I'd be very happy if someone could come up with a script that would accept a subnet in CIDR format and scan all IP's with that subnet. Something like "hbscan 172.16.1.0/24"
Step-by-step:
- Create a ~/heartbleed
- Copy the Heartbleed binary into the folder created at (1)
- Copy the script below into the ~/heartbleed direcotry and call it something like hbscan
- Make hbscan runnable (chmod 755 hbscan)
- Copy file(s) containing the IP addresses you wish to scan into ~/heartbleed
- Create a ~/heartbleed/scans directory
- Scan the networks using './hbscan filewithips'
Here's the script I used:
#!/bin/bash
E_BADARGS=65
logs=~/heartbleed/scans
today=`date +%F`
if [ -z "$1" ]; then
echo " Usage: `basename $0` list"
exit $E_BADARGS
fi
if [ ! -d $logs/$today ]; then
echo "[*] Creating $logs/$today"
mkdir $logs/$today
fi
hosts=$1
touch $logs/$today/$hosts
while read -r host
do
echo "[*] Scanning $host..."
~/heartbleed/Heartbleed $host 2>> $logs/$today/$hosts
done < $hosts
echo "[*] Scans completed."
That script was frankenstiened from:
http://www.commondork.com/2013/07/06/bash-script-to-scan-subnets-with-nmap/
Heartbleed scanner on Ubuntu
This works for Ubuntu.
1.Install Bazaar and Go v1.0 (required for godeb):
sudo apt-get install bzr
sudo apt-get install bzr
sudo apt-get install golang
2. Install godeb (required for Go 1.2):
mkdir ~/gopath
GOPATH=~/gopath
export GOPATH
cd $GOPATH
go get launchpad.net/godeb
sudo apt-get remove golang
sudo apt-get autoremove
sudo apt-get autoremove
3. Install godeb (required forGo 1.2)
sudo bin/godeb install
3. Get and compile Heartbleed:
go get github.com/FiloSottile/Heartbleed
go install github.com/FiloSottile/Heartbleed
4. Run it:
bin/Heartbleed serverip[:port]
Here is a BASH script you can use to scan a list of IP addresses instead of a single one:
http://blog.thefoleyhouse.co.uk/2014/04/bash-script-to-wrap-around-heartbleed.html
Here is a BASH script you can use to scan a list of IP addresses instead of a single one:
http://blog.thefoleyhouse.co.uk/2014/04/bash-script-to-wrap-around-heartbleed.html
Friday, 4 April 2014
Quick Fixed VHD Creation Tool - Ben Armstrong - Site Home - MSDN Blogs
Quick Fixed VHD Creation Tool - Ben Armstrong - Site Home - MSDN Blogs:
Allows for the creation of non-zeroed Hyper-V fixed size disks.
'via Blog this'
Allows for the creation of non-zeroed Hyper-V fixed size disks.
'via Blog this'
Subscribe to:
Posts (Atom)