Test commercial web app scanners for free and without restrictions?
If your software licensing ethics tend to contort a tad here and there, then you may find the below tricks helpful when you want to evaluate commercial web app scanners. Partaking in these tricks is slippery, and you may fall into ethical perdition, so prepare yourself!
Super simple trick #1: Request search and replace proxy
Fire up a proxy that supports request search and replace.

Let’s say an app restricts you to scan only their target site (e.g. demo.testsite.net), but you want to point the scanner to a different target.
No problema.
As shown above, I typed in demo.testsite.net for Search, and blog.clearnetsec.com for Replace. Every HTTP request passing through this proxy with a Request-URI matching the string demo.testsite.net will get replaced with blog.clearnetsec.com. The result? The app scans my blog.
Note: Super simple trick #1 only works for apps which restrict via the hostname. If the app is smarter and adds IP validation, then move along to Sort of simple trick #2.
Sort of simple trick #2: IPTables magic
This trick can add license evading umpf to your smokin’ renegade style. :)
Let’s say the app tries to validate you are only scanning the sites you're licensed for by checking the target IP addresses (regardless of how the hostnames are resolved). For example, maybe the demo version of the app allows you to only scan IP address 55.55.55.55.
No problema.
One line explanation: Setup a linux box to do routing, configure a VIP, and add two IPTable NAT rules.
The long answer.
Setup a linux box. A linux VMware image works too. Configure the network as normal – give it a standard IP, gateway, list of name servers, etc., as you would when configuring any other box on your local subnet.
Once you got that, then check out the script below.

Follow? If not, I’ll explain in more detail.
- Again, the first thing you need is a normal networked working linux box.
- There are 4 steps to facilitate a destination IP switch-a-roo:
- Configure a Virtual IP. Pick an IP located on a different subnet, don’t pick an IP on the same subnet as the primary IP.
- Enable IP forwarding.
- Setup a DNAT (Destination NAT) rule to replace the destination IP on the fly. The first IP (e.g. 55.55.55.55) is the licensed locked IP. The second IP is (e.g. 216.241.191.205) is the IP you want to scan.
- Setup a SNAT (Source NAT) rule to replace the source IP on the fly. The first IP (e.g. 192.168.1.101) is your workstation IP. The second IP is the primary IP address of the linux box.
The last step there, #4, is overloaded. Once you go through the steps above on the linux box, then you need to change the IP address of your workstation with the app scanner installed. You want to pick a new IP for your workstation which is on the same subnet as the VIP you configured on the linux box. You also want to change your workstation to use the linux box as your gateway to the Internet, so change the default route address to match the IP of the VIP on the linux box.
That should do it. Replace the IPs in the IPTable rules above with the IPs that work for you and scan away.
Note: You can’t always do the IPTables trick by itself; one reason is due to virtual hosting. If only one website is being hosted on the IP, then you probably can do this. If the target IP is hosting lots of domains, then you need to chain the request and replace proxy with the IPTables magic to ensure each Request-URI is for the correct host and domain.
For example, GET http://216.241.191.205/... HTTP/1.1 may not be the same as GET http://blog.clearnetsec.com/... HTTP/1.1
Super Simple trick #3: VMware snapshots
Most everyone is likely familiar with this trick. If you have a web app installed in a VMware image and you have a working license (e.g. trial license), but it expires at a certain time and date, the trick is to create a snapshot of the VMware image with the app in a working state.
Anytime you want to scan, change your host OS clock back to a time that is within the licensing window (or ensure your VMware guest image doesn’t sync the clock with the host OS when you restore the snapshot), and restore the snapshot.
Note: Some apps may call home when first launched, so it helps to create the VM snapshot when you have the app open and ready to scan.
Trick addendum:
For those web app scanners which restrict you from scanning SSL enabled sites, have no hesistation, you can work around that too.
One way is via stunnel. From www.stunnel.org.
Note the position of STUNNEL : the "-ST-" in the diagram above. Below is an example stunnel configuration:Encrypted version with STUNNEL
+---------+ | | +--------+ +---------+ | non-SSL | -ST- | | --- | Apache | -- | non-SSL | | enabled | | | | WITH | | enabled | | client | | | | SSL | | server | +---------+ | | +--------+ +---------+ CLIENT NET WEB SERVER SERVICE
Configure your app or browser to use the stunnel proxy listening on port 8080 and you'll be able to hit the site using HTTPS (via the proxy), but your local app or browser will be only speaking HTTP.client=yes
verify=0
[psuedo-https]
accept = 8080
connect = blog.clearnetsec.com:443
TIMEOUTclose=0
Quick alternate to #1 for Apache fan boys and girls:
Via Apache 2.2.x, with mod proxy and mod rewrite enabled, setup a proxy like so:
ProxyRequests On
<Proxy *>
RewriteEngine on
RewriteRule ^(.+) http://blog.clearnetsec.com/$1 [P] (or something close to this)
Order deny,allow
Deny from all
Allow from all
</Proxy>
Configure your browser or app scanner to use this Apache proxy server and all Request-URIs passed through will be re- written to target http://blog.clearnetsec.com/.
YMMV. Have fun.

You forgot my method, “Test web applications for free and without restrictions by not using commercial web application security scanners”.
I’d honestly like to hear of the benefits of web application security scanners outside of being strictly awareness tools for organizations that are unwilling to listen to a three-minute speech about how “secure SDLC” approaches are better.
Somehow I doubt that RSnake and I are the only black-box web application security assessors that can find EIGHT TIMES the amount of vulnerabilities or more in the same amount of time that it takes a commercial web application security scanner (including time spent going to the bathroom, reading RSS feeds, and eating food). He said it best himself (with explanations) in this video presentation.
If anything, I’d suggest that someone unethically use your information above to further prove this point to clients in the “I want to believe” category. Or they can just watch that RSnake video.
You may also find the Universal Hooker tools useful to redirect traffic.
http://oss.coresecurity.com/uhooker/doc/index.html
http://hexale.blogspot.com/2007/12/uhooker-videos-tcpnetpy-video.html