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 you are not authenticated. If you executed the curl command from above, it will most likely be the URL specified in the "Location" response Header.

  2. The login form html structure is the path for where to find the 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 /html/body/div/form
       
Code Block
languagexml

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

...

If you want to use the Negotiate/Kerberos authentication scheme, then you need to find the "Key Distribution Center" (KDC). This is a service that supplies session tickets and temporary session keys to users and computers within an Active Directory domain. If you don't know your KDC address, do as follows:

  • On Windows CMD or Powershell
Code Block
> nltest /dsgetdc:<domain.name>

The KDC address will appear in the first line as "DC: <the KDC address>"
 

  • On Linux bash:
Code Block
$ cat /etc/krb5.conf

...