<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.owasp.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mr+Craig+Fox</id>
		<title>OWASP - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.owasp.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mr+Craig+Fox"/>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php/Special:Contributions/Mr_Craig_Fox"/>
		<updated>2026-05-30T04:00:21Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.2</generator>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Talk:Ebug&amp;diff=246109</id>
		<title>Talk:Ebug</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Talk:Ebug&amp;diff=246109"/>
				<updated>2018-12-18T00:16:10Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: uodate&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I will soon discuss some exploits for this with some PoC code.&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Ebug&amp;diff=246106</id>
		<title>Ebug</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Ebug&amp;diff=246106"/>
				<updated>2018-12-17T23:04:42Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: typo's&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before reading further, please watch the video tutorial [https://www.youtube.com/watch?v=eCcjRmspU2w here] ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== What is an ebug/email beacon? =====&lt;br /&gt;
&lt;br /&gt;
An ebug is a way for an attacker to send a malicious email to a victim in order to steal information on them (such as IP address, Operating system, Browser information and more). This is done by hiding server side code within a hidden image reference of an email body. Once the victim opens the message, without needing any interaction it will send information back to the attacker and they're completely unaware of this process.&lt;br /&gt;
&lt;br /&gt;
===== Scenario: =====&lt;br /&gt;
&lt;br /&gt;
John doe is having an argument with Mr genius over the phone, Mr genius decides he wants to hack john and cause as much mayhem as he possibly can, but Mr Genius has no point of reference. He sends en ebug to John doe via email, he gets his WAN IP address and breaks into his machine and deletes all his data - John is gutted. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== OK, how to create/setup an Ebug? =====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install [https://www.apachefriends.org/index.html XAMPP]&lt;br /&gt;
* Setup Apache to run on your port of choice and start it&lt;br /&gt;
* Open that port within the firewall on the machine the server is running on&lt;br /&gt;
* Port forward to that on your router&lt;br /&gt;
* Check that the outside world can access it across the WAN, [http://www.canyouseeme.org/ Can You See Me] is good for this&lt;br /&gt;
* Go to your root web directory once the server is up 'n running on it's default page, on Linux this will likely be /opt/lampp/htdocs (tip you'll need to set read/write permissions!)&lt;br /&gt;
* Then, get rid of the default stuff, and you want to create 4 files:&lt;br /&gt;
&lt;br /&gt;
   1  image.jpg&lt;br /&gt;
&lt;br /&gt;
This is what the victim may see if you choose to show them an image, regardless you'll want this as a reference point, basically your exploit URL is going to be http(s)://example.com:port/image.jpg &lt;br /&gt;
&lt;br /&gt;
   2 .htaccess file&lt;br /&gt;
&lt;br /&gt;
Here you're going to want [http://httpd.apache.org/docs/current/mod/mod_rewrite.html mod_rewrite] a simple example I've provided below is sending from test.jpg to evil.php&lt;br /&gt;
   RewriteEngine on &lt;br /&gt;
   RewriteRule ^/?test.jpg$ evil.php [L]&lt;br /&gt;
&lt;br /&gt;
Tip: This will likely create as a hidden file, so ensure you enable the viewing of hidden files!&lt;br /&gt;
&lt;br /&gt;
  3 a log file&lt;br /&gt;
&lt;br /&gt;
NOTE: my next example (php file) creates a log file for you.&lt;br /&gt;
&lt;br /&gt;
  4 evil.php&lt;br /&gt;
&lt;br /&gt;
This is where all your PHP code goes, so whatever you want to do to the victim goes here. Below is an example of getting the visited page, WAN IP and user agent of the victim which creates/updates a log file for you:&lt;br /&gt;
&lt;br /&gt;
  See [https://pastebin.com/krpEDe7m HERE] for my php script&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== OK, i'm setup, how do I test it? ====&lt;br /&gt;
&lt;br /&gt;
Now you're setup, the first and easiest way to test it's working is by visiting the image across the WAN, ie; http(s)://example.com:port/image.jpg if this works, you should get a log file each time you visit this site. If not retrace your steps and perform some troubleshooting. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== How do I email it to my victim? ====&lt;br /&gt;
&lt;br /&gt;
This can be as simple or complex as you want. But the basic principle here is you want to embed the inline image in a 1x1 pixel reference (simple, a hidden image) this loads/renders when the target opens the email. Something like:&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;img src=&amp;quot;data:image/png;base64,imagebase64data&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An easier way, when using a web based email platform like Gmail or OWA, you can insert an &amp;quot;approved&amp;quot; inline image, and then modify the image reference source, a quick way to do that in Firefox is to right click the image, Inspect Element (Q), and change the image URL to your own, as demonstrated in [https://www.youtube.com/watch?v=eCcjRmspU2w the video]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OK that about wraps things up, thanks for reading -[[User:Mr_Craig_Fox|Craig Fox]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Ebug&amp;diff=246104</id>
		<title>Ebug</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Ebug&amp;diff=246104"/>
				<updated>2018-12-17T22:51:42Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before reading further, please watch the video tutorial [https://www.youtube.com/watch?v=eCcjRmspU2w here] ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== What is an ebug/email becon? =====&lt;br /&gt;
&lt;br /&gt;
An ebug is a way for an attacker to send a malicious email to a victim in order to steal information on them (such as IP address, Operating system, Browser information and more). This is done by hiding server side code within a hidden image reference of an email body. Once the victim opens the message, without needing any interaction it will send information back to the attacker and they're completely unaware of this process.&lt;br /&gt;
&lt;br /&gt;
===== Scenario: =====&lt;br /&gt;
&lt;br /&gt;
John doe is having an argument with Mr genius over the phone, Mr genius decides he wants to hack john and cause as much mayhem as he possibly can, but Mr Genius has no point of reference. He sends en ebug to John doe via email, he gets his WAN IP address and breaks into his machine and deletes all his data - John is gutted. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== OK, how to create/setup an Ebug? =====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install [https://www.apachefriends.org/index.html XAMPP]&lt;br /&gt;
* Setup Apache to run on your port of choice and start it&lt;br /&gt;
* Open that port within the firewall on the machine the server is running on&lt;br /&gt;
* Port forward to that on your router&lt;br /&gt;
* Check that the outside world can access it across the WAN, [http://www.canyouseeme.org/ Can You See Me] is good for this&lt;br /&gt;
* Go to your root web directory once the server is up 'n running on it's default page, on Linux this will likely be /opt/lampp/htdocs (tip you'll need to set read/write permissions!)&lt;br /&gt;
* Then, get rid of the default stuff, and you want to create 4 files:&lt;br /&gt;
&lt;br /&gt;
   1  image.jpg&lt;br /&gt;
&lt;br /&gt;
This is what the victim may see if you choose to show them an image, regardless you'll want this as a reference point, basically your exploit URL is going to be http(s)://example.com:port/image.jpg &lt;br /&gt;
&lt;br /&gt;
   2 .htaccess file&lt;br /&gt;
&lt;br /&gt;
Here you're going to want [http://httpd.apache.org/docs/current/mod/mod_rewrite.html mod_rewrite] a simple example I've provided below is sending from test.jpg to evil.php&lt;br /&gt;
   RewriteEngine on &lt;br /&gt;
   RewriteRule ^/?test.jpg$ evil.php [L]&lt;br /&gt;
&lt;br /&gt;
Tip: This will likely create as a hidden file, so ensure you enable the viewing of hidden files!&lt;br /&gt;
&lt;br /&gt;
  3 a log file&lt;br /&gt;
&lt;br /&gt;
NOTE: my next example (php file) creates a log file for you.&lt;br /&gt;
&lt;br /&gt;
  4 evil.php&lt;br /&gt;
&lt;br /&gt;
This is where all your PHP code goes, so whatever you want to do to the victim goes here. Below is an example of getting the visited page, WAN IP and user agent of the victim which creates/updates a log file for you:&lt;br /&gt;
&lt;br /&gt;
  See [https://pastebin.com/krpEDe7m HERE] for my php script&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== OK, i'm setup, how do I test it? ====&lt;br /&gt;
&lt;br /&gt;
Now you're setup, the first and easiest way to test it's working is by visiting the image across the WAN, ie; http(s)://example.com:port/image.jpg if this works, you should get a log file each time you visit this site. If not retrace your steps and perform some troubleshooting. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== How do I email it to my victim? ====&lt;br /&gt;
&lt;br /&gt;
This can be as simple or complex as you want. But the basic principle here is you want to embed the inline image in a 1x1 pixel reference (simple, a hidden image) this loads/renders when the target opens the email. Something like:&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;img src=&amp;quot;data:image/png;base64,imagebase64data&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An easier way, when using a web based email platform like Gmail or OWA, you can insert an &amp;quot;approved&amp;quot; inline image, and then modify the image reference source, a quick way to do that in Firefox is to right click the image, Inspect Element (Q), and change the image URL to your own, as demonstrated in [https://www.youtube.com/watch?v=eCcjRmspU2w the video]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OK that about wraps things up, thanks for reading -[[User:Mr_Craig_Fox|Craig Fox]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=246094</id>
		<title>OWASP URL Checker</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=246094"/>
				<updated>2018-12-17T17:44:42Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: minor tweak&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Main=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:100%;height:160px;border:0,margin:0;overflow: hidden;&amp;quot;&amp;gt;[[Image:OWASP Inactive Banner.jpg|800px| link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Inactive_Projects]] &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;padding: 0;margin:0;margin-top:10px;text-align:left;&amp;quot; |-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==OWASP URL Checker==&lt;br /&gt;
&lt;br /&gt;
Screen shot:&lt;br /&gt;
&lt;br /&gt;
[[File:urlscanscreen.jpeg|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
An open source editable tool to scan websites for URL's which may lead to information divulging, exploits and common attack patterns.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
This tool will check a user defined website for potentially exploitable/ vulnerable URL's by comparing them against the URL extensions in the database, for instance if your target is http://google.com and in the database you have /wp-login.php it would then check if: http://google.com/wp-login.php is available on that site by checking the response. It's a form of of scanning to help you exploit and find weaknesses within the web server. The first time you run the tool it will create a database &amp;quot;restuls.txt&amp;quot; for you, and add a few URL parameters to get you started. But you can add to or change the database as much as you wish and therefore, it's as powerful as you'd like it to be. It gives you real time feedback and the option to save all the successful results. You'll also be happy to know it's open source, and I've also included a win32 compiled version (requires .NET 3.5+). &lt;br /&gt;
&lt;br /&gt;
==Licensing==&lt;br /&gt;
OWASP URL Checker is free to use. It is licensed under the GNU GPL v3 license, so you can copy, distribute and transmit the work, and you can adapt it, and use it commercially, but all provided that you attribute the work and if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;padding-left:25px;width:200px;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== What is URL Checker? ==&lt;br /&gt;
&lt;br /&gt;
OWASP URL Checker  provides:&lt;br /&gt;
&lt;br /&gt;
* .exe (executable) and *.cpp (source)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Project Leader ==&lt;br /&gt;
&lt;br /&gt;
[mailto:craig.fox@owasp.org Craig Fox (OWASP email)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Quick Download ==&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/fe910f128856e49ea01d2e3fcb37a1bc/53a9f7bf/3c191/4/1 Softpedia Secure Download (US)]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/01b1561b5c70dbe4d9b4baf606d47604/53a9f7bf/3c191/5/1 Softpedia Secure Download (UK)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Classifications==&lt;br /&gt;
&lt;br /&gt;
   {| width=&amp;quot;200&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot; rowspan=&amp;quot;2&amp;quot;| [[File:New projects.png|100px|link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Incubator_Projects]]&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-builders-small.png|link=]]  &lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-defenders-small.png|link=]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Cc-button-y-sa-small.png|link=http://creativecommons.org/licenses/by-sa/3.0/]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Project_Type_Files_CODE.jpg|link=]]&lt;br /&gt;
   |}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=FAQs=&lt;br /&gt;
&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Acknowledgements =&lt;br /&gt;
&lt;br /&gt;
==Volunteers==&lt;br /&gt;
URL Checker is developed by a worldwide team of volunteers. The primary contributors to date have been:&lt;br /&gt;
&lt;br /&gt;
Lead developer [https://www.owasp.org/index.php/User:Mr_Craig_Fox Craig Fox]&lt;br /&gt;
&lt;br /&gt;
==Others==&lt;br /&gt;
&lt;br /&gt;
TBC&lt;br /&gt;
&lt;br /&gt;
= Road Map and Getting Involved =&lt;br /&gt;
As of June 2014, the priorities are:&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
Involvement in the development and promotion of URL Checker is actively encouraged!&lt;br /&gt;
You do not have to be a security expert in order to contribute.&lt;br /&gt;
Some of the ways you can help:&lt;br /&gt;
&lt;br /&gt;
Build upon the source, ensuring it's approved, tested and original credits are maintained. &lt;br /&gt;
Use in testing, give feedback and distribute as much as possible&lt;br /&gt;
Contribute ideas and suggestions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Project About=&lt;br /&gt;
{{:Projects/OWASP_URL_Checker_Page}}  &lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &amp;lt;headertabs /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Project]]  [[Category:OWASP_Builders]] [[Category:OWASP_Defenders]]  [[Category:OWASP_Document]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=246093</id>
		<title>OWASP URL Checker</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=246093"/>
				<updated>2018-12-17T17:28:19Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: removal of old site&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Main=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:100%;height:160px;border:0,margin:0;overflow: hidden;&amp;quot;&amp;gt;[[Image:OWASP Inactive Banner.jpg|800px| link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Inactive_Projects]] &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;padding: 0;margin:0;margin-top:10px;text-align:left;&amp;quot; |-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==OWASP URL Checker==&lt;br /&gt;
&lt;br /&gt;
Screen shot:&lt;br /&gt;
&lt;br /&gt;
[[File:urlscanscreen.jpeg|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
An open source editable tool to scan websites for URL's which may lead to information divulging, exploits and common attack patterns.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
This tool will check a user defined website for potentially exploitable/ vulnerable URL's by comparing them against the URL extensions in the database, for instance if your target is http://google.com and in the database you have /wp-login.php it would then check if: http://google.com/wp-login.php is available on that site by checking the response. It's a form of of scanning to help you exploit and find weaknesses within the web server. The first time you run the tool it will create a database &amp;quot;restuls.txt&amp;quot; for you, and add a few URL parameters to get you started. But you can add to or change the database as much as you wish and therefore, it's as powerful as you'd like it to be. It gives you real time feedback and the option to save all the successful results. You'll also be happy to know it's open source, and I've also included a win32 compiled version (requires .NET 3.5+). Video tutorial here http://youtu.be/yvc4q7YWpdo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Licensing==&lt;br /&gt;
OWASP URL Checker is free to use. It is licensed under the GNU GPL v3 license, so you can copy, distribute and transmit the work, and you can adapt it, and use it commercially, but all provided that you attribute the work and if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;padding-left:25px;width:200px;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== What is URL Checker? ==&lt;br /&gt;
&lt;br /&gt;
OWASP URL Checker  provides:&lt;br /&gt;
&lt;br /&gt;
* .exe (executable) and *.cpp (source)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Project Leader ==&lt;br /&gt;
&lt;br /&gt;
[mailto:craig.fox@owasp.org Craig Fox (OWASP email)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Quick Download ==&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/fe910f128856e49ea01d2e3fcb37a1bc/53a9f7bf/3c191/4/1 Softpedia Secure Download (US)]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/01b1561b5c70dbe4d9b4baf606d47604/53a9f7bf/3c191/5/1 Softpedia Secure Download (UK)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Classifications==&lt;br /&gt;
&lt;br /&gt;
   {| width=&amp;quot;200&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot; rowspan=&amp;quot;2&amp;quot;| [[File:New projects.png|100px|link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Incubator_Projects]]&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-builders-small.png|link=]]  &lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-defenders-small.png|link=]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Cc-button-y-sa-small.png|link=http://creativecommons.org/licenses/by-sa/3.0/]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Project_Type_Files_CODE.jpg|link=]]&lt;br /&gt;
   |}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=FAQs=&lt;br /&gt;
&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Acknowledgements =&lt;br /&gt;
&lt;br /&gt;
==Volunteers==&lt;br /&gt;
URL Checker is developed by a worldwide team of volunteers. The primary contributors to date have been:&lt;br /&gt;
&lt;br /&gt;
Lead developer [https://www.owasp.org/index.php/User:Mr_Craig_Fox Craig Fox]&lt;br /&gt;
&lt;br /&gt;
==Others==&lt;br /&gt;
&lt;br /&gt;
TBC&lt;br /&gt;
&lt;br /&gt;
= Road Map and Getting Involved =&lt;br /&gt;
As of June 2014, the priorities are:&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
Involvement in the development and promotion of URL Checker is actively encouraged!&lt;br /&gt;
You do not have to be a security expert in order to contribute.&lt;br /&gt;
Some of the ways you can help:&lt;br /&gt;
&lt;br /&gt;
Build upon the source, ensuring it's approved, tested and original credits are maintained. &lt;br /&gt;
Use in testing, give feedback and distribute as much as possible&lt;br /&gt;
Contribute ideas and suggestions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Project About=&lt;br /&gt;
{{:Projects/OWASP_URL_Checker_Page}}  &lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &amp;lt;headertabs /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Project]]  [[Category:OWASP_Builders]] [[Category:OWASP_Defenders]]  [[Category:OWASP_Document]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=246092</id>
		<title>OWASP URL Checker</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=246092"/>
				<updated>2018-12-17T17:27:27Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: removal of invalid URL's&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Main=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:100%;height:160px;border:0,margin:0;overflow: hidden;&amp;quot;&amp;gt;[[Image:OWASP Inactive Banner.jpg|800px| link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Inactive_Projects]] &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;padding: 0;margin:0;margin-top:10px;text-align:left;&amp;quot; |-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==OWASP URL Checker==&lt;br /&gt;
&lt;br /&gt;
Screen shot:&lt;br /&gt;
&lt;br /&gt;
[[File:urlscanscreen.jpeg|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
An open source editable tool to scan websites for URL's which may lead to information divulging, exploits and common attack patterns.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
This tool will check a user defined website for potentially exploitable/ vulnerable URL's by comparing them against the URL extensions in the database, for instance if your target is http://google.com and in the database you have /wp-login.php it would then check if: http://google.com/wp-login.php is available on that site by checking the response. It's a form of of scanning to help you exploit and find weaknesses within the web server. The first time you run the tool it will create a database &amp;quot;restuls.txt&amp;quot; for you, and add a few URL parameters to get you started. But you can add to or change the database as much as you wish and therefore, it's as powerful as you'd like it to be. It gives you real time feedback and the option to save all the successful results. You'll also be happy to know it's open source, and I've also included a win32 compiled version (requires .NET 3.5+). Video tutorial here http://youtu.be/yvc4q7YWpdo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Licensing==&lt;br /&gt;
OWASP URL Checker is free to use. It is licensed under the GNU GPL v3 license, so you can copy, distribute and transmit the work, and you can adapt it, and use it commercially, but all provided that you attribute the work and if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;padding-left:25px;width:200px;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== What is URL Checker? ==&lt;br /&gt;
&lt;br /&gt;
OWASP URL Checker  provides:&lt;br /&gt;
&lt;br /&gt;
* .exe (executable) and *.cpp (source)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Project Leader ==&lt;br /&gt;
&lt;br /&gt;
[mailto:craig.fox@owasp.org Craig Fox (OWASP email)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related Projects ==&lt;br /&gt;
&lt;br /&gt;
Visit Dreamwalker software page [http://www.dreamwalker-software.com/software.html here] &lt;br /&gt;
&lt;br /&gt;
== Quick Download ==&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/fe910f128856e49ea01d2e3fcb37a1bc/53a9f7bf/3c191/4/1 Softpedia Secure Download (US)]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/01b1561b5c70dbe4d9b4baf606d47604/53a9f7bf/3c191/5/1 Softpedia Secure Download (UK)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Classifications==&lt;br /&gt;
&lt;br /&gt;
   {| width=&amp;quot;200&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot; rowspan=&amp;quot;2&amp;quot;| [[File:New projects.png|100px|link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Incubator_Projects]]&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-builders-small.png|link=]]  &lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-defenders-small.png|link=]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Cc-button-y-sa-small.png|link=http://creativecommons.org/licenses/by-sa/3.0/]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Project_Type_Files_CODE.jpg|link=]]&lt;br /&gt;
   |}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=FAQs=&lt;br /&gt;
&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Acknowledgements =&lt;br /&gt;
&lt;br /&gt;
==Volunteers==&lt;br /&gt;
URL Checker is developed by a worldwide team of volunteers. The primary contributors to date have been:&lt;br /&gt;
&lt;br /&gt;
Lead developer [https://www.owasp.org/index.php/User:Mr_Craig_Fox Craig Fox]&lt;br /&gt;
&lt;br /&gt;
==Others==&lt;br /&gt;
&lt;br /&gt;
TBC&lt;br /&gt;
&lt;br /&gt;
= Road Map and Getting Involved =&lt;br /&gt;
As of June 2014, the priorities are:&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
Involvement in the development and promotion of URL Checker is actively encouraged!&lt;br /&gt;
You do not have to be a security expert in order to contribute.&lt;br /&gt;
Some of the ways you can help:&lt;br /&gt;
&lt;br /&gt;
Build upon the source, ensuring it's approved, tested and original credits are maintained. &lt;br /&gt;
Use in testing, give feedback and distribute as much as possible&lt;br /&gt;
Contribute ideas and suggestions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Project About=&lt;br /&gt;
{{:Projects/OWASP_URL_Checker_Page}}  &lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &amp;lt;headertabs /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Project]]  [[Category:OWASP_Builders]] [[Category:OWASP_Defenders]]  [[Category:OWASP_Document]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=User:Mr_Craig_Fox&amp;diff=246085</id>
		<title>User:Mr Craig Fox</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=User:Mr_Craig_Fox&amp;diff=246085"/>
				<updated>2018-12-17T08:41:40Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: General update with URL's.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Craig Fox started programming and became interested information security since his early twenties and has been heavily involved since. For more information, see some of the below external links:&lt;br /&gt;
&lt;br /&gt;
[https://bugcrowd.com/MrCraigFox Bug Crowd]&lt;br /&gt;
&lt;br /&gt;
[https://www.linkedin.com/in/w00t/ LinkedIn]&lt;br /&gt;
&lt;br /&gt;
[https://www.indiedb.com/members/foxygamesindiedb/games IndieDB]&lt;br /&gt;
&lt;br /&gt;
[https://pastebin.com/u/Foxy1986 PasteBin]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Manchester&amp;diff=180955</id>
		<title>Manchester</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Manchester&amp;diff=180955"/>
				<updated>2014-08-22T10:40:09Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Manchester|extra=&lt;br /&gt;
&lt;br /&gt;
This [[UK]] chapter was started in 2011, having grown out of the successful [[Leeds_UK]] chapter. &lt;br /&gt;
&lt;br /&gt;
Follow [https://twitter.com/OwaspMcr @OwaspMcr] on Twitter.&lt;br /&gt;
|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-Manchester|emailarchives=http://lists.owasp.org/pipermail/owasp-Manchester}}&lt;br /&gt;
&lt;br /&gt;
= Next Meeting  =&lt;br /&gt;
'''Date:''' Monday 8th September 2014&lt;br /&gt;
&lt;br /&gt;
'''Location:''' PwC (@PwC_North) (TBC)&lt;br /&gt;
&lt;br /&gt;
'''Sponsors:''' Pentest&lt;br /&gt;
&lt;br /&gt;
'''Registration:''' TBC&lt;br /&gt;
&lt;br /&gt;
'''Speakers:''' Rich Moore, XML External Entities; Craig Fox, Social Engineering&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Talk: Manipulation 101 (Social engineering)'''&lt;br /&gt;
&lt;br /&gt;
This talk will teach you about social engineering from basic concepts to real life examples, it will discuss why it's so powerful, relevance to penetration testing, common targets in a corporate environment and how, if at all possible it can be prevented - providing a brief, yet fully scoped introduction to the art of human manipulation.&lt;br /&gt;
&lt;br /&gt;
'''Speaker: Craig Fox'''&lt;br /&gt;
&lt;br /&gt;
Craig started researching IT Security and programming within his early teen years and later pursued a career within these fields doing multiple courses and various relevant jobs. He setup his own software company in 2009 [http://www.dreamwalker-software.com/ Dreamwalker Software] and had his security tools featured on many infosec websites and Pentest magazine and has also created the [https://www.owasp.org/index.php/OWASP_URL_Checker OWASP URL Checker].&lt;br /&gt;
&lt;br /&gt;
Several months back he joined [http://www.pentest.co.uk/ Pentest ltd] as a penetration tester which has enabled him to learn a lot and respectively put his training and experience to practice in live testing which is incredibly challenging yet fun.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Schedule and details to be confirmed.'''&lt;br /&gt;
&lt;br /&gt;
OWASP is a non-commercial volunteer led organization. If you find the networking, talks or content useful, please consider whether you can help out in providing facilities, locations, talks or a donation to the cause. Thanks. If you would like to talk at future meetings, or know someone who may be interested, then please get in touch via the mailing list or one of the chapter leaders. If you have any requests or ideas for topics we would also love to hear from you.&lt;br /&gt;
&lt;br /&gt;
= Upcoming Events  =&lt;br /&gt;
We plan to hold quarterly events but the precise date may not be confirmed (TBC), in which case the list below gives the date of the week commencing (w/c).&lt;br /&gt;
&lt;br /&gt;
* 13th May 2014&lt;br /&gt;
* w/c 11th August TBC&lt;br /&gt;
* w/c 10th November TBC&lt;br /&gt;
* w/c 9th February TBC&lt;br /&gt;
&lt;br /&gt;
Please get in touch if you would like to speak at a Manchester event, or can help out in providing facilities, locations, talks or a donation to the cause - we would be delighted to hear from you.&lt;br /&gt;
&lt;br /&gt;
Everyone is welcome to join us at our chapter meetings.&lt;br /&gt;
&lt;br /&gt;
= Past Events  =&lt;br /&gt;
&lt;br /&gt;
'''2014 Dates'''&lt;br /&gt;
&lt;br /&gt;
[[2014_05_13_Manchester|13th May]]&lt;br /&gt;
&lt;br /&gt;
[[2014_02_27_Manchester|27th February]]&lt;br /&gt;
&lt;br /&gt;
'''2013 Dates'''&lt;br /&gt;
&lt;br /&gt;
[[2013_04_30_Manchester|30th April]]&lt;br /&gt;
&lt;br /&gt;
'''2012 Dates'''&lt;br /&gt;
&lt;br /&gt;
[[2012_09_11_Manchester|11th September]]&lt;br /&gt;
&lt;br /&gt;
[[2012_05_30_Manchester|30th May]]&lt;br /&gt;
&lt;br /&gt;
[[2012_02_01_Manchester|1st February]]&lt;br /&gt;
&lt;br /&gt;
'''2011 Dates'''&lt;br /&gt;
&lt;br /&gt;
[[2011_11_16_Manchester|16th November]]&lt;br /&gt;
&lt;br /&gt;
[[2011_08_24_Manchester|24th August]] As part of the Leeds Chapter&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/index.php/Leeds_UK 22nd June]  As part of the Leeds Chapter&lt;br /&gt;
&lt;br /&gt;
'''2010 Dates'''&lt;br /&gt;
&lt;br /&gt;
[[8th_December_Leeds|8th December]]  As part of the Leeds Chapter&lt;br /&gt;
&lt;br /&gt;
= Chapter Leaders  =&lt;br /&gt;
&lt;br /&gt;
The chapter leaders are:&lt;br /&gt;
&lt;br /&gt;
* [[User:Simon Bennetts|Simon Bennetts]]&lt;br /&gt;
* [[User:Simon Ward|Simon Ward]]&lt;br /&gt;
* [[User:Andy_Hornsby-Jones|Andy Hornsby-Jones]]&lt;br /&gt;
* Ben Fountain&lt;br /&gt;
* Ben Ramduny&lt;br /&gt;
&lt;br /&gt;
We are actively seeking more chapter leaders - please get in touch if you would like to become one!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Sponsorship  =&lt;br /&gt;
&lt;br /&gt;
We are looking for organizations to sponsor the Manchester chapter.&lt;br /&gt;
&lt;br /&gt;
You can sponsor the chapter for one year at the following levels:&lt;br /&gt;
* £300 Silver&lt;br /&gt;
* £600 Gold&lt;br /&gt;
* £1200 Platinum&lt;br /&gt;
&lt;br /&gt;
You can also sponsor a meeting by hosting the event or donating £100.&lt;br /&gt;
&lt;br /&gt;
If you are interested in sponsoring the chapter then please get in touch with one of the chapter leaders.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Local Organizations  =&lt;br /&gt;
&lt;br /&gt;
Other related organizations in the Manchester area:&lt;br /&gt;
&lt;br /&gt;
* [http://manchester.bcs.org/ BCS Manchester]&lt;br /&gt;
* [http://geekup.org/ GeekUp]&lt;br /&gt;
* [http://madlab.org.uk/ MadLab]&lt;br /&gt;
* [http://libreplanet.org/wiki/Manchester Manchester Free Software]&lt;br /&gt;
* [http://www.manlug.org/ Manchester Linux Users Group]&lt;br /&gt;
* [http://nuksg.org/ Northern UK Security Group]&lt;br /&gt;
* [http://nwdc.org.uk/ North West Digital Communities (NWDC)]&lt;br /&gt;
* [http://www.meetup.com/North-West-Tester-Gathering North West Tester Gathering]&lt;br /&gt;
&lt;br /&gt;
Please get in touch with one of the chapter leaders to get your organization listed here.&lt;br /&gt;
&lt;br /&gt;
And feel free to use the [https://lists.owasp.org/mailman/listinfo/owasp-Manchester Manchester mailing list] to publicise related events.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
[[Category:United Kingdom]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=177508</id>
		<title>OWASP URL Checker</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=177508"/>
				<updated>2014-06-24T22:58:31Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Main=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:100%;height:160px;border:0,margin:0;overflow: hidden;&amp;quot;&amp;gt;[[File:OWASP_Project_Header.jpg|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;padding: 0;margin:0;margin-top:10px;text-align:left;&amp;quot; |-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==OWASP URL Checker==&lt;br /&gt;
&lt;br /&gt;
Screen shot:&lt;br /&gt;
&lt;br /&gt;
[[File:urlscanscreen.jpeg|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
An open source editable tool to scan websites for URL's which may lead to information divulging, exploits and common attack patterns.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
This tool will check a user defined website for potentially exploitable/ vulnerable URL's by comparing them against the URL extensions in the database, for instance if your target is http://google.com and in the database you have /wp-login.php it would then check if: http://google.com/wp-login.php is available on that site by checking the response. It's a form of of scanning to help you exploit and find weaknesses within the web server. The first time you run the tool it will create a database &amp;quot;restuls.txt&amp;quot; for you, and add a few URL parameters to get you started. But you can add to or change the database as much as you wish and therefore, it's as powerful as you'd like it to be. It gives you real time feedback and the option to save all the successful results. You'll also be happy to know it's open source, and I've also included a win32 compiled version (requires .NET 3.5+). Video tutorial here http://youtu.be/yvc4q7YWpdo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Licensing==&lt;br /&gt;
OWASP URL Checker is free to use. It is licensed under the GNU GPL v3 license, so you can copy, distribute and transmit the work, and you can adapt it, and use it commercially, but all provided that you attribute the work and if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;padding-left:25px;width:200px;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== What is URL Checker? ==&lt;br /&gt;
&lt;br /&gt;
OWASP URL Checker  provides:&lt;br /&gt;
&lt;br /&gt;
* .exe (executable) and *.cpp (source)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Project Leader ==&lt;br /&gt;
&lt;br /&gt;
[mailto:craig.fox@owasp.org Craig Fox (OWASP email)]&lt;br /&gt;
&lt;br /&gt;
[http://www.dreamwalker-software.com/ Dreamwalker Software]&lt;br /&gt;
&lt;br /&gt;
[http://www.dream-walker.weebly.com/ DWS sub-domain]&lt;br /&gt;
&lt;br /&gt;
[http://pentest.co.uk/index.html Pentest Ltd]&lt;br /&gt;
&lt;br /&gt;
[https://www.facebook.com/Dreamwalker1986 fb profile]&lt;br /&gt;
&lt;br /&gt;
== Related Projects ==&lt;br /&gt;
&lt;br /&gt;
Visit Dreamwalker software page [http://www.dreamwalker-software.com/software.html here] &lt;br /&gt;
&lt;br /&gt;
== Quick Download ==&lt;br /&gt;
[http://www.dreamwalker-software.com/uploads/2/5/3/9/25390328/url_checker_v3_pentest_edition.zip Direct download server #1]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/fe910f128856e49ea01d2e3fcb37a1bc/53a9f7bf/3c191/4/1 Softpedia Secure Download (US)]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/01b1561b5c70dbe4d9b4baf606d47604/53a9f7bf/3c191/5/1 Softpedia Secure Download (UK)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Email List ==&lt;br /&gt;
[https://lists.owasp.org/mailman/listinfo/owasp_url_checker Sign up!]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Classifications==&lt;br /&gt;
&lt;br /&gt;
   {| width=&amp;quot;200&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot; rowspan=&amp;quot;2&amp;quot;| [[File:New projects.png|100px|link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Incubator_Projects]]&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-builders-small.png|link=]]  &lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-defenders-small.png|link=]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Cc-button-y-sa-small.png|link=http://creativecommons.org/licenses/by-sa/3.0/]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Project_Type_Files_CODE.jpg|link=]]&lt;br /&gt;
   |}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=FAQs=&lt;br /&gt;
&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Acknowledgements =&lt;br /&gt;
&lt;br /&gt;
==Volunteers==&lt;br /&gt;
URL Checker is developed by a worldwide team of volunteers. The primary contributors to date have been:&lt;br /&gt;
&lt;br /&gt;
Lead developer [https://www.owasp.org/index.php/User:Mr_Craig_Fox Craig Fox]&lt;br /&gt;
&lt;br /&gt;
==Others==&lt;br /&gt;
&lt;br /&gt;
TBC&lt;br /&gt;
&lt;br /&gt;
= Road Map and Getting Involved =&lt;br /&gt;
As of June 2014, the priorities are:&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
Involvement in the development and promotion of URL Checker is actively encouraged!&lt;br /&gt;
You do not have to be a security expert in order to contribute.&lt;br /&gt;
Some of the ways you can help:&lt;br /&gt;
&lt;br /&gt;
Build upon the source, ensuring it's approved, tested and original credits are maintained. &lt;br /&gt;
Use in testing, give feedback and distribute as much as possible&lt;br /&gt;
Contribute ideas and suggestions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Project About=&lt;br /&gt;
{{:Projects/OWASP_URL_Checker_Page}}  &lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &amp;lt;headertabs /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Project]]  [[Category:OWASP_Builders]] [[Category:OWASP_Defenders]]  [[Category:OWASP_Document]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=177507</id>
		<title>OWASP URL Checker</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=177507"/>
				<updated>2014-06-24T22:56:21Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Main=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:100%;height:160px;border:0,margin:0;overflow: hidden;&amp;quot;&amp;gt;[[File:OWASP_Project_Header.jpg|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;padding: 0;margin:0;margin-top:10px;text-align:left;&amp;quot; |-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==OWASP URL Checker==&lt;br /&gt;
&lt;br /&gt;
Screen shot:&lt;br /&gt;
&lt;br /&gt;
[[File:urlscanscreen.jpeg|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
An open source editable tool to scan websites for URL's which may lead to information divulging, exploits and common attack patterns.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
This tool will check a user defined website for potentially exploitable/ vulnerable URL's by comparing them against the URL extensions in the database, for instance if your target is http://google.com and in the database you have /wp-login.php it would then check if: http://google.com/wp-login.php is available on that site by checking the response. It's a form of of scanning to help you exploit and find weaknesses within the web server. The first time you run the tool it will create a database &amp;quot;restuls.txt&amp;quot; for you, and add a few URL parameters to get you started. But you can add to or change the database as much as you wish and therefore, it's as powerful as you'd like it to be. It gives you real time feedback and the option to save all the successful results. You'll also be happy to know it's open source, and I've also included a win32 compiled version (requires .NET 3.5+). Video tutorial here http://youtu.be/yvc4q7YWpdo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Original source code upon release==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include&amp;lt;windows.h&amp;gt;&lt;br /&gt;
#include&amp;lt;iostream&amp;gt;&lt;br /&gt;
#include&amp;lt;fstream&amp;gt;&lt;br /&gt;
#include&amp;lt;string&amp;gt;&lt;br /&gt;
#include&amp;lt;wininet.h&amp;gt;&lt;br /&gt;
#include &amp;lt;limits&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
#pragma comment (lib, &amp;quot;wininet.lib&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
//Simple function to return a bool value to check whether URL is valid&lt;br /&gt;
bool ValidURL(string url)&lt;br /&gt;
   {&lt;br /&gt;
   bool result = false;&lt;br /&gt;
&lt;br /&gt;
   HINTERNET hSession = InternetOpen(&amp;quot;ValidURL&amp;quot;, INTERNET_OPEN_TYPE_PRECONFIG, 0, 0, 0);&lt;br /&gt;
   if (hSession != 0)&lt;br /&gt;
      {&lt;br /&gt;
      HINTERNET hFile = InternetOpenUrl(hSession, url.c_str(), 0, 0, INTERNET_FLAG_RELOAD, 0);&lt;br /&gt;
      if (hFile != 0)&lt;br /&gt;
         {&lt;br /&gt;
         int code = 0;&lt;br /&gt;
         DWORD codeLen = sizeof(int);&lt;br /&gt;
         HttpQueryInfo(hFile, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &amp;amp;code, &amp;amp;codeLen, 0);&lt;br /&gt;
&lt;br /&gt;
         result = code == HTTP_STATUS_OK || code == HTTP_STATUS_REDIRECT;&lt;br /&gt;
&lt;br /&gt;
         InternetCloseHandle(hFile);&lt;br /&gt;
         }&lt;br /&gt;
&lt;br /&gt;
      InternetCloseHandle(hSession);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
   return(result);&lt;br /&gt;
   }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
//Just intro&lt;br /&gt;
SetConsoleTitle(&amp;quot;Vulnerable URL checker 3.0 pentest edition by Dreamwalker&amp;quot;);&lt;br /&gt;
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);&lt;br /&gt;
    cout&amp;lt;&amp;lt;&amp;quot;----------------------------------------------------------------------------&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
    cout&amp;lt;&amp;lt;&amp;quot;\tVulnerable URL checker v3.0 pentest edition coded by Dreamwalker&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
	cout&amp;lt;&amp;lt;&amp;quot;\t\t\thttp://Dream-Walker.weebly.com/&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
	cout&amp;lt;&amp;lt;&amp;quot;----------------------------------------------------------------------------&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
   &lt;br /&gt;
    /*&lt;br /&gt;
	This tool relies on the urls.txt file which is where is gets all the urls&lt;br /&gt;
	from, essentially working like a database. Here we check if urls.txt exists.&lt;br /&gt;
	If so, we continue to the scanning section, if not we create a new file and&lt;br /&gt;
	add some basic URL extensions to it. &lt;br /&gt;
	*/&lt;br /&gt;
	&lt;br /&gt;
   &lt;br /&gt;
	  cout&amp;lt;&amp;lt;&amp;quot;Checking database...&amp;quot;;&lt;br /&gt;
	  ifstream reader(&amp;quot;urls.txt&amp;quot;,std::ios::in);&lt;br /&gt;
	  if(!reader.good())&lt;br /&gt;
	  {&lt;br /&gt;
		 &lt;br /&gt;
&lt;br /&gt;
		  cout&amp;lt;&amp;lt;&amp;quot;Database not found, writing a new one...&amp;quot;;&lt;br /&gt;
		  ofstream writer(&amp;quot;urls.txt&amp;quot;,ios::app);&lt;br /&gt;
&lt;br /&gt;
          //write some basic url extensions to our new database&lt;br /&gt;
		  string defaulturls[20] = {&amp;quot;/robots.txt&amp;quot;,&amp;quot;/wp-login.php&amp;quot;,&amp;quot;/login/&amp;quot;,&amp;quot;/login.php&amp;quot;,&amp;quot;/admin.asp&amp;quot;,&amp;quot;/adm/&amp;quot;,&lt;br /&gt;
          &amp;quot;/admin/&amp;quot;,&amp;quot;/admin.php&amp;quot;,&amp;quot;/admin/home.php&amp;quot;,&amp;quot;/admin/cp.asp&amp;quot;,&amp;quot;/_vti_pvt/&amp;quot;,&amp;quot;/_vti_pvt/service.pwd&amp;quot;,&amp;quot;/_vti_inf.html&amp;quot;,&amp;quot;/cgi-bin/&amp;quot;,&lt;br /&gt;
		  &amp;quot;/~root&amp;quot;,&amp;quot;/cache/&amp;quot;,&amp;quot;/sitemap.xml&amp;quot;,&amp;quot;/index.php?catid=&amp;quot;,&amp;quot;/index.php?id=&amp;quot;,&amp;quot;/login.shtml&amp;quot;};&lt;br /&gt;
		  for(int i = 0; i &amp;lt; 20; i++)&lt;br /&gt;
          writer&amp;lt;&amp;lt;defaulturls[i]&amp;lt;&amp;lt;endl;&lt;br /&gt;
		  writer.close();&lt;br /&gt;
&lt;br /&gt;
		  //wait 20 seconds, and inform user they need to restart so db can be loaded into mem correctly, then exit&lt;br /&gt;
		  cout&amp;lt;&amp;lt;&amp;quot;DONE\nA new database \&amp;quot;urls.txt\&amp;quot; has now been created, please restart this tool&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
		  cout&amp;lt;&amp;lt;&amp;quot;I will automatically close in 20 seconds...&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
		  Sleep(20000);&lt;br /&gt;
		  reader.close();&lt;br /&gt;
		  return 0;&lt;br /&gt;
		 &lt;br /&gt;
	  }&lt;br /&gt;
	  if(!reader)&lt;br /&gt;
	  {&lt;br /&gt;
		  cout&amp;lt;&amp;lt;&amp;quot;\nError reading database, ensure urls.txt is in\n&amp;quot;&lt;br /&gt;
			  &amp;quot;the same directory as this application, if you do\n&amp;quot;&lt;br /&gt;
			  &amp;quot;and it still isn't working, try running this program\n&amp;quot;&lt;br /&gt;
			  &amp;quot;as Administrator as it could be an access error\n\nclosing...&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
		  Sleep(20000);&lt;br /&gt;
		  return-1;&lt;br /&gt;
&lt;br /&gt;
	  }cout&amp;lt;&amp;lt;&amp;quot;DONE!&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
	 &lt;br /&gt;
&lt;br /&gt;
	  //-------------File handling all sorted---------------//&lt;br /&gt;
&lt;br /&gt;
      &lt;br /&gt;
      //!TODO: the file_url array param needs updating to the MAX allowed&lt;br /&gt;
	  string original_input_url, file_url[20000], full_url, successes;&lt;br /&gt;
	&lt;br /&gt;
    &lt;br /&gt;
      cout&amp;lt;&amp;lt;&amp;quot;Enter full URL (ignore last forward slash, for instance http://google.com):\n&amp;gt;&amp;quot;;&lt;br /&gt;
      cin&amp;gt;&amp;gt;original_input_url;&lt;br /&gt;
      &lt;br /&gt;
      //PERFORM INITIAL CHECK TO SEE IF URL IS VALID&lt;br /&gt;
      cout&amp;lt;&amp;lt;&amp;quot;Performing check to see if website is valid&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
     if(ValidURL(original_input_url) == false)&lt;br /&gt;
     {&lt;br /&gt;
      cout&amp;lt;&amp;lt;&amp;quot;Invalid URL, closing...&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
      Sleep(10000);&lt;br /&gt;
      return 0;&lt;br /&gt;
     }&lt;br /&gt;
     else cout&amp;lt;&amp;lt;&amp;quot;That worked, now scanning files/directories...&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
	 cout&amp;lt;&amp;lt;&amp;quot;\n##############################################################&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
    //NOW SCAN FILES/DIRECTORIES&lt;br /&gt;
	 int i = 0;&lt;br /&gt;
	 while (!reader.eof())&lt;br /&gt;
     {&lt;br /&gt;
	  i++;&lt;br /&gt;
      getline(reader,file_url[i]);&lt;br /&gt;
      full_url = original_input_url;&lt;br /&gt;
	  full_url += file_url[i];&lt;br /&gt;
      &lt;br /&gt;
&lt;br /&gt;
      if(ValidURL(full_url) == false)&lt;br /&gt;
      {&lt;br /&gt;
          SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),12);&lt;br /&gt;
          cout&amp;lt;&amp;lt;full_url&amp;lt;&amp;lt;&amp;quot; FAILED&amp;quot;&amp;lt;&amp;lt;endl;           &lt;br /&gt;
      }&lt;br /&gt;
      else&lt;br /&gt;
      {&lt;br /&gt;
          SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),10);&lt;br /&gt;
          cout&amp;lt;&amp;lt;full_url&amp;lt;&amp;lt;&amp;quot; SUCCESS!&amp;quot;&amp;lt;&amp;lt;endl;  &lt;br /&gt;
		  successes+=full_url+&amp;quot;\n&amp;quot;;//store results for later saving&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
	  //temp: if url's are &amp;gt; 20000, then abort due to array bounds&lt;br /&gt;
	  if(i &amp;gt;= 20000)&lt;br /&gt;
	  {&lt;br /&gt;
		  cout&amp;lt;&amp;lt;&amp;quot;Maximum URL's allowed reached, aborting...&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
		  break;&lt;br /&gt;
	  }&lt;br /&gt;
      &lt;br /&gt;
     }&lt;br /&gt;
    &lt;br /&gt;
      SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);      &lt;br /&gt;
	  cout&amp;lt;&amp;lt;&amp;quot;\n##############################################################\nFinished, do you want me to save the sucessful results? y/n:&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
	  string answer;&lt;br /&gt;
	  cin&amp;gt;&amp;gt;answer;&lt;br /&gt;
&lt;br /&gt;
	  //&lt;br /&gt;
	  if((answer == &amp;quot;y&amp;quot;) || (answer == &amp;quot;Y&amp;quot;))&lt;br /&gt;
	  {&lt;br /&gt;
		 ofstream writer2(&amp;quot;results.txt&amp;quot;);&lt;br /&gt;
		 if(!writer2)&lt;br /&gt;
		 {&lt;br /&gt;
			 cout&amp;lt;&amp;lt;&amp;quot;Error writing file!&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
			 return -1;&lt;br /&gt;
		 }&lt;br /&gt;
		 writer2&amp;lt;&amp;lt;successes&amp;lt;&amp;lt;endl;&lt;br /&gt;
		 writer2.close();&lt;br /&gt;
		 cout&amp;lt;&amp;lt;&amp;quot;OK, your results are saved in \&amp;quot;results.txt\&amp;quot;&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
	  }&lt;br /&gt;
&lt;br /&gt;
	  cout&amp;lt;&amp;lt;&amp;quot;Closing...&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;
&lt;br /&gt;
      //sleep for a bit&lt;br /&gt;
	  reader.close();&lt;br /&gt;
      Sleep(6000);&lt;br /&gt;
&lt;br /&gt;
return 0;&lt;br /&gt;
  &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Licensing==&lt;br /&gt;
OWASP URL Checker is free to use. It is licensed under the GNU GPL v3 license, so you can copy, distribute and transmit the work, and you can adapt it, and use it commercially, but all provided that you attribute the work and if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;padding-left:25px;width:200px;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== What is URL Checker? ==&lt;br /&gt;
&lt;br /&gt;
OWASP URL Checker  provides:&lt;br /&gt;
&lt;br /&gt;
* .exe (executable) and *.cpp (source)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Project Leader ==&lt;br /&gt;
&lt;br /&gt;
[mailto:craig.fox@owasp.org Craig Fox (OWASP email)]&lt;br /&gt;
&lt;br /&gt;
[http://www.dreamwalker-software.com/ Dreamwalker Software]&lt;br /&gt;
&lt;br /&gt;
[http://www.dream-walker.weebly.com/ DWS sub-domain]&lt;br /&gt;
&lt;br /&gt;
[http://pentest.co.uk/index.html Pentest Ltd]&lt;br /&gt;
&lt;br /&gt;
[https://www.facebook.com/Dreamwalker1986 fb profile]&lt;br /&gt;
&lt;br /&gt;
== Related Projects ==&lt;br /&gt;
&lt;br /&gt;
Visit Dreamwalker software page [http://www.dreamwalker-software.com/software.html here] &lt;br /&gt;
&lt;br /&gt;
== Quick Download ==&lt;br /&gt;
[http://www.dreamwalker-software.com/uploads/2/5/3/9/25390328/url_checker_v3_pentest_edition.zip Direct download server #1]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/fe910f128856e49ea01d2e3fcb37a1bc/53a9f7bf/3c191/4/1 Softpedia Secure Download (US)]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/01b1561b5c70dbe4d9b4baf606d47604/53a9f7bf/3c191/5/1 Softpedia Secure Download (UK)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Email List ==&lt;br /&gt;
[https://lists.owasp.org/mailman/listinfo/owasp_url_checker Sign up!]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Classifications==&lt;br /&gt;
&lt;br /&gt;
   {| width=&amp;quot;200&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot; rowspan=&amp;quot;2&amp;quot;| [[File:New projects.png|100px|link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Incubator_Projects]]&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-builders-small.png|link=]]  &lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-defenders-small.png|link=]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Cc-button-y-sa-small.png|link=http://creativecommons.org/licenses/by-sa/3.0/]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Project_Type_Files_CODE.jpg|link=]]&lt;br /&gt;
   |}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=FAQs=&lt;br /&gt;
&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Acknowledgements =&lt;br /&gt;
&lt;br /&gt;
==Volunteers==&lt;br /&gt;
URL Checker is developed by a worldwide team of volunteers. The primary contributors to date have been:&lt;br /&gt;
&lt;br /&gt;
Lead developer [https://www.owasp.org/index.php/User:Mr_Craig_Fox Craig Fox]&lt;br /&gt;
&lt;br /&gt;
==Others==&lt;br /&gt;
&lt;br /&gt;
TBC&lt;br /&gt;
&lt;br /&gt;
= Road Map and Getting Involved =&lt;br /&gt;
As of June 2014, the priorities are:&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
Involvement in the development and promotion of URL Checker is actively encouraged!&lt;br /&gt;
You do not have to be a security expert in order to contribute.&lt;br /&gt;
Some of the ways you can help:&lt;br /&gt;
&lt;br /&gt;
Build upon the source, ensuring it's approved, tested and original credits are maintained. &lt;br /&gt;
Use in testing, give feedback and distribute as much as possible&lt;br /&gt;
Contribute ideas and suggestions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Project About=&lt;br /&gt;
{{:Projects/OWASP_URL_Checker_Page}}  &lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &amp;lt;headertabs /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Project]]  [[Category:OWASP_Builders]] [[Category:OWASP_Defenders]]  [[Category:OWASP_Document]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=177506</id>
		<title>OWASP URL Checker</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_URL_Checker&amp;diff=177506"/>
				<updated>2014-06-24T22:31:27Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: Updated by tool author with links, further info etc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Main=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:100%;height:160px;border:0,margin:0;overflow: hidden;&amp;quot;&amp;gt;[[File:OWASP_Project_Header.jpg|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;padding: 0;margin:0;margin-top:10px;text-align:left;&amp;quot; |-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==OWASP URL Checker==&lt;br /&gt;
&lt;br /&gt;
Screen shot:&lt;br /&gt;
&lt;br /&gt;
[[File:urlscanscreen.jpeg|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
An open source editable tool to scan websites for URL's which may lead to information divulging, exploits and common attack patterns.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
This tool will check a user defined website for potentially exploitable/ vulnerable URL's by comparing them against the URL extensions in the database, for instance if your target is http://google.com and in the database you have /wp-login.php it would then check if: http://google.com/wp-login.php is available on that site by checking the response. It's a form of of scanning to help you exploit and find weaknesses within the web server. The first time you run the tool it will create a database &amp;quot;restuls.txt&amp;quot; for you, and add a few URL parameters to get you started. But you can add to or change the database as much as you wish and therefore, it's as powerful as you'd like it to be. It gives you real time feedback and the option to save all the successful results. You'll also be happy to know it's open source, and I've also included a win32 compiled version (requires .NET 3.5+). Video tutorial here http://youtu.be/yvc4q7YWpdo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Licensing==&lt;br /&gt;
OWASP URL Checker is free to use. It is licensed under the GNU GPL v3 license, so you can copy, distribute and transmit the work, and you can adapt it, and use it commercially, but all provided that you attribute the work and if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;padding-left:25px;width:200px;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== What is URL Checker? ==&lt;br /&gt;
&lt;br /&gt;
OWASP URL Checker  provides:&lt;br /&gt;
&lt;br /&gt;
* .exe (executable) and *.cpp (source)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Project Leader ==&lt;br /&gt;
&lt;br /&gt;
[mailto:craig.fox@owasp.org Craig Fox (OWASP email)]&lt;br /&gt;
&lt;br /&gt;
[http://www.dreamwalker-software.com/ Dreamwalker Software]&lt;br /&gt;
&lt;br /&gt;
[http://www.dream-walker.weebly.com/ DWS sub-domain]&lt;br /&gt;
&lt;br /&gt;
[http://pentest.co.uk/index.html Pentest Ltd]&lt;br /&gt;
&lt;br /&gt;
[https://www.facebook.com/Dreamwalker1986 fb profile]&lt;br /&gt;
&lt;br /&gt;
== Related Projects ==&lt;br /&gt;
&lt;br /&gt;
Visit Dreamwalker software page [http://www.dreamwalker-software.com/software.html here] &lt;br /&gt;
&lt;br /&gt;
== Quick Download ==&lt;br /&gt;
[http://www.dreamwalker-software.com/uploads/2/5/3/9/25390328/url_checker_v3_pentest_edition.zip Direct download server #1]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/fe910f128856e49ea01d2e3fcb37a1bc/53a9f7bf/3c191/4/1 Softpedia Secure Download (US)]&lt;br /&gt;
&lt;br /&gt;
[http://www.softpedia.com/dyn-postdownload.php/01b1561b5c70dbe4d9b4baf606d47604/53a9f7bf/3c191/5/1 Softpedia Secure Download (UK)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Email List ==&lt;br /&gt;
[https://lists.owasp.org/mailman/listinfo/owasp_url_checker Sign up!]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Classifications==&lt;br /&gt;
&lt;br /&gt;
   {| width=&amp;quot;200&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot; rowspan=&amp;quot;2&amp;quot;| [[File:New projects.png|100px|link=https://www.owasp.org/index.php/OWASP_Project_Stages#tab=Incubator_Projects]]&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-builders-small.png|link=]]  &lt;br /&gt;
   |-&lt;br /&gt;
   | align=&amp;quot;center&amp;quot; valign=&amp;quot;top&amp;quot; width=&amp;quot;50%&amp;quot;| [[File:Owasp-defenders-small.png|link=]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Cc-button-y-sa-small.png|link=http://creativecommons.org/licenses/by-sa/3.0/]]&lt;br /&gt;
   |-&lt;br /&gt;
   | colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;  | [[File:Project_Type_Files_CODE.jpg|link=]]&lt;br /&gt;
   |}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=FAQs=&lt;br /&gt;
&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Acknowledgements =&lt;br /&gt;
&lt;br /&gt;
==Volunteers==&lt;br /&gt;
URL Checker is developed by a worldwide team of volunteers. The primary contributors to date have been:&lt;br /&gt;
&lt;br /&gt;
Lead developer [https://www.owasp.org/index.php/User:Mr_Craig_Fox Craig Fox]&lt;br /&gt;
&lt;br /&gt;
==Others==&lt;br /&gt;
&lt;br /&gt;
TBC&lt;br /&gt;
&lt;br /&gt;
= Road Map and Getting Involved =&lt;br /&gt;
As of June 2014, the priorities are:&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
Involvement in the development and promotion of URL Checker is actively encouraged!&lt;br /&gt;
You do not have to be a security expert in order to contribute.&lt;br /&gt;
Some of the ways you can help:&lt;br /&gt;
&lt;br /&gt;
Build upon the source, ensuring it's approved, tested and original credits are maintained. &lt;br /&gt;
Use in testing, give feedback and distribute as much as possible&lt;br /&gt;
Contribute ideas and suggestions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Project About=&lt;br /&gt;
{{:Projects/OWASP_URL_Checker_Page}}  &lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &amp;lt;headertabs /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Project]]  [[Category:OWASP_Builders]] [[Category:OWASP_Defenders]]  [[Category:OWASP_Document]]&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Urlscanscreen.jpeg&amp;diff=177505</id>
		<title>File:Urlscanscreen.jpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Urlscanscreen.jpeg&amp;diff=177505"/>
				<updated>2014-06-24T22:26:59Z</updated>
		
		<summary type="html">&lt;p&gt;Mr Craig Fox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mr Craig Fox</name></author>	</entry>

	</feed>