-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkrb5client.cpp
128 lines (124 loc) · 3.18 KB
/
krb5client.cpp
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
//============================================================================
// Name : krb5client.cpp
// Author : odity
// Version : 0.1
// Copyright : GPL3
//============================================================================
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <arpa/nameser.h>
#include <netdb.h>
#include <krb5.h>
#include <errno.h>
#include <signal.h>
#include <curses.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <pwd.h>
using namespace std;
int sockfd, curs_start, use_curses, debug_flag;
static inline int data_eq(krb5_data d1, krb5_data d2)
{
return (d1.length == d2.length && (d1.length == 0 ||
!memcmp(d1.data, d2.data, d1.length)));
}
static krb5_boolean is_local_tgt(krb5_principal princ, krb5_data *realm)
{
return princ->length == 2 && data_eq(princ->realm, *realm); //&&
// data_eq_string(princ->data[0], KRB5_TGS_NAME) &&
// data_eq(princ->data[1], *realm);
}
bool ts_after(krb5_timestamp a, krb5_timestamp b)
{
return (uint32_t)a > (uint32_t)b;
}
int main(int argc, char **argv) {
char *execstr = NULL;
int ret;
krb5_context context;
krb5_ccache ccache;
char *my_principal_string;
krb5_principal my_principal;
int opt;
extern char *optarg;
extern int optind;
if (argc == 1){
cout<<argv[0]<<" -e [execstr]";
exit(1);
}
if (argv[0][0] == '-') argv[0]++;
while((opt = getopt(argc, argv, "e:")) != EOF) {
switch (opt) {
case 'e':
execstr = optarg;
break;
default:
cout<<argv[0]<<" -e [execstr]";
exit(0);
}
}
putenv("KRB5_KTNAME=/dev/null");
ret = krb5_init_context(&context);
if (ret){
cout<<"Error: krb5_init_context";
exit(1);
}
ret = krb5_cc_default(context, &ccache);
if (ret){
cout<<"Error: krb5_cc_default";
exit(1);
}
ret = krb5_cc_get_principal(context, ccache, &my_principal); // ticket none
if (ret){
cout<<"Error: krb5_cc_get_principal";
exit(1);
}
krb5_cc_cursor cur = NULL;
krb5_creds creds;
krb5_timestamp now;
now = time(0);
ret=krb5_cc_start_seq_get(context, ccache, &cur);
while ((ret = krb5_cc_next_cred(context, ccache, &cur, &creds)) == 0) {
if (is_local_tgt(creds.server, &my_principal->realm)) {
if (ts_after(creds.times.endtime, now))
cout<<"Ticket is valid"<<endl;
else
{
cout<<"Ticket is expired";
exit(1);
}
}
krb5_free_cred_contents(context, &creds);
}
ret = krb5_unparse_name(context, my_principal, &my_principal_string);
if (ret){
cout<<"Error: krb5_unparse_name";
exit(1);
}
cout<<"you are "<<my_principal_string<<endl;
int uid=getuid();
struct stat info;
int err = stat(execstr, &info); // Error check omitted
if (err != 0){
cout<<execstr<<" :Path is not correct"<<endl;
exit(1);
}
struct passwd *pw = getpwuid(info.st_uid);
if (pw->pw_uid == uid)
{
cout<<"Run "<<execstr<<endl;
system(execstr);
}
else{
cout<<"Permission denied...";
}
return 0;
}