Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. The login form page is where the site redirects you when login form is located, some sites redirect you here if you are not authenticated. If you executed , in that case, if you execute the curl command from above, it will most likely be the URL specified in the "Location" response Header.

  2. The login form html HTML structure is the path for where to find the html HTML form that Aspider needs (in order to fill and send) to authenticate.
    1. For example, if your login form page consists of the following HTML, then your path would be "div > form". You can use Google Chrome inspect mode to generate this CSS Selector for you.
       
Code Block
languagexml
<html>
<head>....</head>
<body>
    <div ....>
    <form method="post" action="...." ...
       ...
    </form>
    </div>
</body>
</html>

b. Also identify the id name attribute of the user and password input elements.

SSL Support

Aspider supports the following versions of SSL:

  • TLSv1
  • TLSv1.1
  • TLSv1.2

Note: SSLV2 and SSLv3 are not supported.

HTTP-based authentication

...