High This Hint is very important, and definitely warrants attention. Issue This Hint represents an error or problem that needs to be fixed.

HTTPS URL contains a form posting to HTTP

This means that the URL in question uses the HTTPS protocol, but contains a form that posts to a HTTP URL.

Why is this important?

If a URL is loaded over the HTTPS protocol, this means all communications between the users' browser and the website are encrypted. However, if a form is hosted on this URL which posts to HTTP, this data will not be encrypted, and therefore not secure.

Browsers will typically display a security warning to the user each time they try to send data because the data will not be encrypted.

What does the Hint check?

This Hint will trigger for any internal HTTPS URL which contains a form that posts to a HTTP URL.

Examples that trigger this Hint:

Consider the URL: https://example.com/page-a

The Hint would trigger for this URL if it contained any of the following in the HTML:

Form POST to an HTTP URL:

<form action="http://example.com/form_submit.php" method="POST"></form>

Form without method to an HTTP URL:

<form action="http://example.com/form_submit.php"></form>

Form GET to an HTTP URL:

<form action="http://example.com/form_submit.php" method="GET"></form>

Form POST to an HTTP URL:

<form action="http://example.com/form_submit.php" method="POST"></form>

Form without method to an HTTP URL:

<form action="http://example.com/form_submit.php"></form>

Form GET to an HTTP URL:

<form action="http://example.com/form_submit.php" method="GET"></form>

Form GET to an HTTP URL using single quotes:

<form action='http://example.com/form_submit.php' method='GET'></form>

Form GET to an HTTP URL using no quotes:

<form action=http://example.com/form_submit.php method=GET></form>

How do you resolve this issue?

Users and website owners want data to be transferred securely, so the form's target URL should be delivered over HTTPS.

Further reading

There's a version of Sitebulb for everyone!

No project limits. No crawl credits. We save you time and we save you money.

Sitebulb Desktop

Try Sitebulb's award-winning desktop crawler for Windows or Mac:

Try our fully featured 14 day trial. No credit card required.

Try Sitebulb Desktop for Free

Sitebulb Server

Everything you love about cloud crawling, paired with everything you love about Sitebulb:

We offer fully managed cloud server plans or a DIY server license.

Explore Sitebulb Server