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
|
/*
* Script to log in to YK Pao School Songjiang Campus student WiFi
*
* Copyright (c) 2024 Runxi Yu <https://runxiyu.org>
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <curl/curl.h>
// I just blindly translated this and it seems to work... didn't bother
// to really test it with all sorts of data
void rc4(const char *plain, const char *rc4key, char *output)
{
int sbox[256];
int key_length = strlen(rc4key);
int i, j = 0, a = 0, b = 0, c;
size_t plain_length = strlen(plain);
for (i = 0; i < 256; i++)
sbox[i] = i;
for (i = 0; i < 256; i++) {
j = (j + sbox[i] + rc4key[i % key_length]) % 256;
int temp = sbox[i];
sbox[i] = sbox[j];
sbox[j] = temp;
}
for (i = 0; i < (int)plain_length; i++) {
a = (a + 1) % 256;
b = (b + sbox[a]) % 256;
int temp = sbox[a];
sbox[a] = sbox[b];
sbox[b] = temp;
c = (sbox[a] + sbox[b]) % 256;
sprintf(output + i * 2, "%02x", plain[i] ^ sbox[c]);
}
output[plain_length * 2] = '\0';
}
int login(const char *username, const char *password)
{
CURL *curl;
CURLcode res;
char ts[32];
char rc4_output[256];
long timestamp = (long)(time(NULL) * 100);
snprintf(ts, sizeof(ts), "%ld", timestamp);
rc4(password, ts, rc4_output);
char postfields[512];
snprintf(postfields, sizeof(postfields), "opr=pwdLogin&userName=%s&pwd=%s&rc4Key=%s&auth_tag=%s&rememberPwd=1", username, rc4_output, ts, ts);
if (curl_global_init(CURL_GLOBAL_DEFAULT) != 0) {
curl_global_cleanup();
fprintf(stderr, "curl_global_init failed");
return -1;
}
curl = curl_easy_init();
if (curl) {
curl_easy_setopt(curl, CURLOPT_URL, "http://sjauth.ykpaoschool.cn/ac_portal/login.php");
curl_easy_setopt(curl, CURLOPT_POST, 1L);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, postfields);
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0");
headers = curl_slist_append(headers, "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
headers = curl_slist_append(headers, "Accept-Language: en-US.en;q=0.5");
headers = curl_slist_append(headers, "Content-Type: application/x-www-form-urlencoded; charset=UTF-8");
headers = curl_slist_append(headers, "Origin: null");
headers = curl_slist_append(headers, "Connection: keep-alive");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
res = curl_easy_perform(curl);
if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
curl_slist_free_all(headers);
curl_easy_cleanup(curl);
curl_global_cleanup();
return 0;
} else {
curl_global_cleanup();
fprintf(stderr, "curl_easy_init() failed");
return -1;
}
}
int main(int argc, char *argv[])
{
if (argc != 3) {
fprintf(stderr, "%s: Invalid arguments. The first argument shall be your username, and the second shall be the name of the environment variable containing your password.\n", argv[0]);
return EINVAL;
}
const char *username = argv[1];
const char *password = getenv(argv[2]);
if (!password) {
fprintf(stderr, "%s: Environment variable %s does not exist. You shall cause the environment variable identified by %s to contain your password.\n", argv[0], argv[2], argv[2]);
return EINVAL;
}
return login(username, password);
}
|