This file is indexed.

/usr/share/doc/libisds-dev/examples/login.c is in libisds-dev 0.10.7-1build3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#define _XOPEN_SOURCE 500
#include <stdlib.h>
#include <stdio.h>
#include <locale.h>
#include <time.h>
#include <string.h>
#include <isds.h>
#include "common.h"


int main(int argc, char **argv) {
    struct isds_ctx *ctx = NULL;
    isds_error err;
    const char *request_url = url;
    const char *request_username = username();
    const char *request_password = password();
    _Bool use_otp = 0;
    struct isds_otp otp;
    
    setlocale(LC_ALL, "");

    if (argc > 1) {
        if (argc < 4 || argc > 6) {
            printf("Usage: %s [URL LOGIN PASSWORD [{hotp OTP_CODE} | {totp [OTP_CODE]}]\n",
                    (argv[0])?argv[0]: "");
            exit(EXIT_FAILURE);
        }

        request_url = argv[1];
        request_username = argv[2];
        request_password = argv[3];

        if (argc > 4) {
            use_otp = 1;
            if (!strcmp(argv[4], "hotp")) otp.method = OTP_HMAC;
            else if (!strcmp(argv[4], "totp")) otp.method = OTP_TIME;
            else {
                printf("Bad invocation: %s: Unknown OTP method\n", argv[4]);
                exit(EXIT_FAILURE);
            }
            if (argc > 5) otp.otp_code = argv[5];
            else otp.otp_code = NULL;
        }
    }


    err = isds_init();
    if (err) {
        printf("isds_init() failed: %s\n", isds_strerror(err));
        exit(EXIT_FAILURE);
    }

    isds_set_logging(ILF_ALL, ILL_ALL);

    ctx = isds_ctx_create();
    if (!ctx) {
        printf("isds_ctx_create() failed");
    }

    err = isds_set_timeout(ctx, 10000);
    if (err) {
        printf("isds_set_timeout() failed: %s\n", isds_strerror(err));
    }

    err = isds_login(ctx, request_url, request_username, request_password,
            NULL, (use_otp) ? &otp : NULL);
    if (err == IE_PARTIAL_SUCCESS) {
        printf("isds_login() partially succeeded: %s: %s\n", isds_strerror(err),
                isds_long_message(ctx));
        if (use_otp && otp.resolution == OTP_RESOLUTION_TOTP_SENT)
            printf("Redo log-in with OTP code to finish log-in procedure.\n");

    } else if (err) {
        printf("isds_login() failed: %s: %s\n", isds_strerror(err),
                isds_long_message(ctx));
    } else {
        printf("Logged in :)\n");
    }


    err = isds_logout(ctx);
    if (err) {
        printf("isds_logout() failed: %s\n", isds_strerror(err));
    }


    err = isds_ctx_free(&ctx);
    if (err) {
        printf("isds_ctx_free() failed: %s\n", isds_strerror(err));
    }


    err = isds_cleanup();
    if (err) {
        printf("isds_cleanup() failed: %s\n", isds_strerror(err));
    }

    exit (EXIT_SUCCESS);
}