-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsquid_sdb_auth.c
More file actions
58 lines (55 loc) · 1.05 KB
/
squid_sdb_auth.c
File metadata and controls
58 lines (55 loc) · 1.05 KB
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
/*
* sdb_auth.c
*
* AUTHOR: Ulric Eriksson <ulric@qbranch.se>
*
* Based on ncsa_auth by Arjan de Vet <Arjan.deVet@adv.iae.nl>
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sdb.h>
static int cb_db(int n, char **p, void *closure)
{
return 0;
}
int main(int argc, char **argv)
{
char *url, query[1024];
int n;
char buf[256];
char *user, *passwd, *p;
setbuf(stdout, NULL);
if (argc != 2) {
fprintf(stderr, "Usage: sdb_auth url\n");
exit(1);
}
url = argv[1];
sdb_init();
while (fgets(buf, 256, stdin) != NULL) {
if ((p = strchr(buf, '\n')) != NULL)
*p = '\0'; /* strip \n */
if ((user = strtok(buf, " ")) == NULL) {
printf("ERR\n");
continue;
}
if ((passwd = strtok(NULL, "")) == NULL) {
printf("ERR\n");
continue;
}
sprintf(query,
"select * from htpasswd "
"where user = '%s' "
"and passwd = '%s'",
user, passwd);
n = sdb_query(url, query, cb_db, NULL);
if (n < 1) {
printf("ERR\n");
} else {
printf("OK\n");
}
}
exit(0);
}