-
Notifications
You must be signed in to change notification settings - Fork 23
/
social.json
1054 lines (1054 loc) · 59.8 KB
/
social.json
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"twitter": [
{
"created_at": "Tue Jun 12 20:46:12 +0000 2018",
"text": "FreeRADIUS developers having a meeting. https://t.co/QOO6ucexXK"
},
{
"created_at": "Thu May 31 21:46:04 +0000 2018",
"text": "FYI: v4.0.x is still in heavy development, and won't be released in 2018. v3 is still the stable / supported / rec… https://t.co/5inDijie7o"
},
{
"created_at": "Thu May 31 21:45:20 +0000 2018",
"text": "DHCPv4 works in the v4.0.x branch. Next up, getting \"radmin\" working again."
},
{
"created_at": "Fri May 04 17:02:42 +0000 2018",
"text": "More v4 progress. VMPS works again. Not overly tested, but it should be OK. ~3 hrs to write RADIUS over TCP. 3… https://t.co/juyhwA5RPj"
},
{
"created_at": "Fri May 04 17:01:55 +0000 2018",
"text": "More v4 progress. RADIUS over TCP now works again. FreeRADIUS should be able to handle 2000 incoming TCP connections."
},
{
"created_at": "Mon Apr 30 19:47:28 +0000 2018",
"text": "Open Source can have faster response time than large companies. Avoiding the bureaucratic overhead for the win! https://t.co/6CMbUq3VBg"
},
{
"created_at": "Tue Apr 24 10:49:11 +0000 2018",
"text": "RT @mcnewton: It's the @freeradius octopus! :-) Even fits on your pen to keep you company... https://t.co/kD4gwJqgun"
},
{
"created_at": "Sat Apr 07 12:29:41 +0000 2018",
"text": "It's a limitation of the underlying authentication methods, not FreeRADIUS. See https://t.co/JWc0mGY3YR https://t.co/VGFtvTqL5x"
}
],
"stackoverflow": [
{
"tags": [
"linux",
"csv",
"ubuntu",
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": -1,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 0,
"is_answered": false,
"question_id": 50816042,
"item_type": "question",
"score": -1,
"last_activity_date": 1528802905,
"creation_date": 1528802905,
"body": "Hello Stackoverflow community,\n\ncurrently I am looking to write a Linux script in Ubuntu that does the following:\n\nFrom a CSV file, that looks like this:\n\nName Lastname\n\nPeter Johnson\nDeb Meyers\nFrank Müller\n\nit should create entries in another file that look like this:\n\npeter.johnson Cleartext-Password := "123"\n\nso basically always take the Name and the lastname, make a "username" out of it and write it in the given format in the destination file.\n\nAlso, it should convert ö,ä,ü into oe, ae, ue and ß into ss, if there are any contained in the user names in the CSV. So Frank Müller would be frank.mueller.\n\nCould anyone tell me how I can accomplish this in a Linux script? Needed for a freeRADIUS project.\n\nThanks!\n",
"excerpt": " Müller would be frank.mueller.\n\nCould anyone tell me how I can accomplish this in a Linux script? Needed for a <span class=\"highlight\">freeRADIUS</span> project.\n\nThanks!\n … ",
"title": "Linux Script that takes entries from a CSV file and writes them into a config file freeRADIUS"
},
{
"tags": [
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": 0,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 1,
"is_answered": false,
"question_id": 47412933,
"item_type": "question",
"score": 0,
"last_activity_date": 1528775561,
"creation_date": 1511266557,
"body": "I am trying to configure freeradius server to support EAP-TTLS with inner authentication as CiscoLEAP.\n\nI am using freeradius version 2.2.9 and done following changes in eap.conf file\n\neap {\n.\ndefault_eap_type = ttls\n.\n.\n}\n\nttls {\n.\ndefault_eap_type = leap\n.\n.\n}\n\nWith this configuration, Client authentication is successfully happening as per the Cisco LEAP protocol. In my supplicant code I am receiving intermediate SUCCESS from server.\n\nFor server authentication, as per Cisco LEAP spec, from supplicant code I am sending peer challenge to Server after receiving intermediate EAP Success. But Server is not sending the challenge response, instead it is sending EAP-SUCCESS directly. And because of this supplicant is not able to authenticate the Server.\n\nPlease let me know if any other configurations need to be done on freeradius for EAP-TTLS with CiscoLEAP innner authentication to work completely.\n",
"excerpt": "I am trying to configure <span class=\"highlight\">freeradius</span> server to support EAP-TTLS with inner authentication as CiscoLEAP.\n\nI am using <span class=\"highlight\">freeradius</span> version 2.2.9 and done following changes in eap.conf file\n\neap … configurations need to be done on <span class=\"highlight\">freeradius</span> for EAP-TTLS with CiscoLEAP innner authentication to work completely.\n … ",
"title": "freeradius configuration for EAP-TTLS with Cisco LEAP inner authentication"
},
{
"tags": [
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": 0,
"is_accepted": false,
"answer_id": 50808991,
"is_answered": false,
"question_id": 47412933,
"item_type": "answer",
"score": 0,
"last_activity_date": 1528775561,
"creation_date": 1528775561,
"body": "Cisco LEAP authentication cannot be set as Inner authentication.\nIn TTLS,\nfreeradius (or equivalent) support PAP, MSCHAP(V2), CHAP, MD5 and GTC as inner authentication.\n\nIf you want to do LEAP authentication in second phase, you have to modify(or write potential code) freeradius.\n\nLEAP is single layer authentication method, like PEAP.\nPEAP has inner authentication, but not LEAP. This is the main difference.\n",
"excerpt": "Cisco LEAP authentication cannot be set as Inner authentication.\nIn TTLS,\n<span class=\"highlight\">freeradius</span> (or equivalent) support PAP, MSCHAP(V2), CHAP, MD5 and GTC as inner authentication.\n\nIf you want to do LEAP … authentication in second phase, you have to modify(or write potential code) <span class=\"highlight\">freeradius</span>.\n\nLEAP is single layer authentication method, like PEAP.\nPEAP has inner authentication, but not LEAP. This is the main difference.\n … ",
"title": "freeradius configuration for EAP-TTLS with Cisco LEAP inner authentication"
},
{
"tags": [
"redirect",
"nas",
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": -1,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 0,
"is_answered": false,
"question_id": 50799758,
"item_type": "question",
"score": -1,
"last_activity_date": 1528726250,
"creation_date": 1528726250,
"body": "We are using freeradius server working perfectly.\nNow what i want see below mentioned scenario.\n\nwe 2 NAS servers \n1, NAS1 on which users connect and use internet.\n2, On NAS2 i want to connect expired users.\n\nhow can i redirect expire users to connect on NAS2?\n",
"excerpt": "We are using <span class=\"highlight\">freeradius</span> server working perfectly.\nNow what i want see below mentioned scenario.\n\nwe 2 NAS servers \n1, NAS1 on which users connect and use internet.\n2, On NAS2 i want to connect expired users.\n\nhow can i redirect expire users to connect on NAS2?\n … ",
"title": "freeradius redirect NAS server on user expired"
},
{
"tags": [
"authentication",
"debian",
"openldap",
"radius",
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": 2,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 2,
"is_answered": false,
"question_id": 29148473,
"item_type": "question",
"score": 2,
"last_activity_date": 1528663292,
"creation_date": 1426778360,
"body": "after a couple of days searching in google I have to resign and ask :/\n\nWe're using a debian server with openldap and radius installed.\nWhen I connect to the radius using radtest everything is fine, but when I use an accesspoint (and the connection goes through the tunnel) I get the folloing result. \nThe inner-tunnel looks like this:\n\n\n\nThanks for your help\n",
"excerpt": "-250 = 0x00000000\n Colubris-Attr-249 = 0x00000000\n Message-Authenticator = 0x8a74e1eca7f77b377dacbdf3ec8c1a24\n# Executing section authorize from file /etc/<span class=\"highlight\">freeradius</span>/sites-enabled/default … ok\nFound Auth-Type = EAP\n# Executing group from file /etc/<span class=\"highlight\">freeradius</span>/sites-enabled/default\n+- entering group authenticate {...}\n[eap] Request found, released from the list\n[eap] EAP/ttls\n[eap … ",
"title": "Freeradius + Openldap ERROR: No authenticate method (Auth-Type) found for the request: Rejecting the user"
},
{
"tags": [
"centos",
"pam",
"freeradius",
"radius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": 0,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 0,
"is_answered": false,
"question_id": 50775422,
"item_type": "question",
"score": 0,
"last_activity_date": 1528555282,
"creation_date": 1528555282,
"body": "I have a question regarding PAM.. When I install Daloradius without enabling PAM I can successfully perform radtest. But when I enable PAM, radtest with Daloradius user fails but successful with local account. What is with PAM that this is happening\n",
"excerpt": "I have a question regarding PAM.. When I install Daloradius without enabling PAM I can successfully perform radtest. But when I enable PAM, radtest with Daloradius user fails but successful with local … ",
"title": "Pluggable Authentication Module with Daloradius"
},
{
"tags": [
"php",
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": -2,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 0,
"is_answered": false,
"question_id": 50770530,
"item_type": "question",
"score": -2,
"last_activity_date": 1528513320,
"creation_date": 1528513320,
"body": "Hello I have freeradius 3.0.12 and want check if cleartext-password == chap or mschap password how can do this by php code \n",
"excerpt": "Hello I have <span class=\"highlight\">freeradius</span> 3.0.12 and want check if cleartext-password == chap or mschap password how can do this by php code \n … ",
"title": "freeradius check chap and mschap password by php"
},
{
"tags": [
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": 0,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 0,
"is_answered": false,
"question_id": 50762396,
"item_type": "question",
"score": 0,
"last_activity_date": 1528466561,
"creation_date": 1528466561,
"body": "I'm trying to explore if I can make FreeRadius fallthrough to Next Active Directory for ntlm_auth.\nIn other words, In Post-Auth-Type REJECT, is it possible to re-enter authenticate/authorize section and modify the Post-Auth-Type response to OK if 2nd authentication passes?\n",
"excerpt": "I'm trying to explore if I can make <span class=\"highlight\">FreeRadius</span> fallthrough to Next Active Directory for ntlm_auth.\nIn other words, In Post-Auth-Type REJECT, is it possible to re-enter authenticate/authorize section and modify the Post-Auth-Type response to OK if 2nd authentication passes?\n … ",
"title": "FreeRadius - Fallthrough to next Active Directory In Post-Auth Reject"
},
{
"tags": [
"authentication",
"ldap",
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": 0,
"is_accepted": false,
"has_accepted_answer": true,
"answer_count": 1,
"is_answered": false,
"question_id": 48215798,
"item_type": "question",
"score": 0,
"last_activity_date": 1528260201,
"creation_date": 1515704845,
"body": "I am new to radius, and LDAP and am struggling with group level authentication. I want only users in ldap group to be authenticated (assuming correct credentials).\n\nIn the file I have added this line to the top of the file:\n\n\n\nIn the file, at the bottom of the block, I have added:\n\n\n\nIn the file, I have modified these lines only within these blocks (nothing else is deleted, no ordering is changed):\n\n\n\nWith this, I run radtest locally using credentials that have worked before I made edits to attempt group authentication. In the radius debug output from the server, there are a few lines that stick out to me:\n\n\n\nSpecifically these lines:\n\n\n\nAfter using ldapsearch tool, I verified that I have the attribute with the group:\n\n\n\nI expected the server would see this after searching my users object, and looking for the attribute.\n\nI also investigated further and captured packets with and imported into wireshark to compare and . I noticed a few differences between the sessions that stuck out to me:\n\n1) The last that sends before , uses . Using , the last uses . BUT I the debug log says that it binds as the authenticated user, so I'm confused here.\n\n2) When sends the for attribute using my users , it uses a scope of . When sends the same request, it uses a scope of . This is confusing as I set for both and blocks in my config.\n\nSo what am I missing that is preventing freeradius from seeing the attribute data to verify that my user is a part of a group?\n",
"excerpt": " request, it uses a scope of base. This is confusing as I set scope = 'sub' for both user and group blocks in my mods-available/ldap config.\n\nSo what am I missing that is preventing <span class=\"highlight\">freeradius</span> from seeing the memberOf attribute data to verify that my user is a part of a group?\n … ",
"title": "Group level authentication with FreeRadius - LDAP - FreeIPA"
},
{
"tags": [
"freeradius"
],
"equivalent_tag_search": [
"freeradius"
],
"question_score": 0,
"is_accepted": false,
"has_accepted_answer": false,
"answer_count": 0,
"is_answered": false,
"question_id": 50676141,
"item_type": "question",
"score": 0,
"last_activity_date": 1528100357,
"creation_date": 1528100357,
"body": "I am currently setting up the new Packetfence 8.0.1 and everything seems to run fine, but now i need to reconfigurate the FreeRadius module in a way, that Packetfence automatically registers users with certain certificates (802.1X) and puts them into the default network VLAN. I had a working external Freeradius, who does exactly this but i somehow cannot implement the same configs into Packetfence ( I did but it seems that Packetfence just ignores them and still puts every device in the registration VLAN), so my specific question would be: \n\nDoes anyone know what besides the eap.conf and the sites-available/default file needs to be adapted in order to get this working properly?\n\nIf you need log files or certain configs pls let me know !\n",
"excerpt": "I am currently setting up the new Packetfence 8.0.1 and everything seems to run fine, but now i need to reconfigurate the <span class=\"highlight\">FreeRadius</span> module in a way, that Packetfence automatically registers users … with certain certificates (802.1X) and puts them into the default network VLAN. I had a working external <span class=\"highlight\">Freeradius</span>, who does exactly this but i somehow cannot implement the same configs into … ",
"title": "Packetfence 8.0.1 Radius Config Issues"
}
],
"github": [
{
"sha": "a8375476391e2a2ab4e851f407e5eb592e220f88",
"node_id": "MDY6Q29tbWl0MzU2NDk6YTgzNzU0NzYzOTFlMmEyYWI0ZTg1MWY0MDdlNWViNTkyZTIyMGY4OA==",
"commit": {
"author": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-12T15:17:07Z"
},
"committer": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-12T15:17:19Z"
},
"message": "fix links to master",
"tree": {
"sha": "fa68f333a6ae2db598d7d3ff35b1e1d1b74db0a3",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/fa68f333a6ae2db598d7d3ff35b1e1d1b74db0a3"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/a8375476391e2a2ab4e851f407e5eb592e220f88",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJbH+P/AAoJEH0Oec13Yh7NUPQIAJ8+mYnHZkUCenCY8RqvsMrX\n/MbMqKQopEgTwwobWJMZZLW3aTzcXawGD1HJBTRCz/wRrIWlIi7/iCaHbdj8wg//\n9WL4fN7ekiAXQwH+FdEX3xNrK5cJk4Z8ykRx+NDR4OKZJ6flB2gayyuzSreR9u59\n3dh6GWW9YPf96gCBVihYXzIvpRi2YQ7lDkhSSVW4mPfQAUwUepItVn3N/TyxY2tZ\nbsN5+IxqjgRQS4TZvprCmBqKwNB9iOzzO/wr9IFUj2S9SKxtKOk6q9B8bWTq5LWQ\ndaAsclg2+SxespZjO5bazNxVhGgcnzSVaFJtHwvGg/ZQmhOMugar5A/Gx8eMg1I=\n=M3+Q\n-----END PGP SIGNATURE-----",
"payload": "tree fa68f333a6ae2db598d7d3ff35b1e1d1b74db0a3\nparent 13a6ac40e5f16697185846a6a0c17870ef87d5d3\nauthor Alan T. DeKok <[email protected]> 1528816627 -0400\ncommitter Alan T. DeKok <[email protected]> 1528816639 -0400\n\nfix links to master\n"
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/a8375476391e2a2ab4e851f407e5eb592e220f88",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/a8375476391e2a2ab4e851f407e5eb592e220f88",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/a8375476391e2a2ab4e851f407e5eb592e220f88/comments",
"author": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "13a6ac40e5f16697185846a6a0c17870ef87d5d3",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/13a6ac40e5f16697185846a6a0c17870ef87d5d3",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/13a6ac40e5f16697185846a6a0c17870ef87d5d3"
}
]
},
{
"sha": "13a6ac40e5f16697185846a6a0c17870ef87d5d3",
"node_id": "MDY6Q29tbWl0MzU2NDk6MTNhNmFjNDBlNWYxNjY5NzE4NTg0NmE2YTBjMTc4NzBlZjg3ZDVkMw==",
"commit": {
"author": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-11T13:58:32Z"
},
"committer": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-11T13:58:32Z"
},
"message": "Use newer macro",
"tree": {
"sha": "8d3b278c5655b7fb38544913019953bbca5cd5f1",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/8d3b278c5655b7fb38544913019953bbca5cd5f1"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/13a6ac40e5f16697185846a6a0c17870ef87d5d3",
"comment_count": 0,
"verification": {
"verified": false,
"reason": "unsigned",
"signature": null,
"payload": null
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/13a6ac40e5f16697185846a6a0c17870ef87d5d3",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/13a6ac40e5f16697185846a6a0c17870ef87d5d3",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/13a6ac40e5f16697185846a6a0c17870ef87d5d3/comments",
"author": {
"login": "arr2036",
"id": 791758,
"node_id": "MDQ6VXNlcjc5MTc1OA==",
"avatar_url": "https://avatars3.githubusercontent.com/u/791758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arr2036",
"html_url": "https://github.com/arr2036",
"followers_url": "https://api.github.com/users/arr2036/followers",
"following_url": "https://api.github.com/users/arr2036/following{/other_user}",
"gists_url": "https://api.github.com/users/arr2036/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arr2036/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arr2036/subscriptions",
"organizations_url": "https://api.github.com/users/arr2036/orgs",
"repos_url": "https://api.github.com/users/arr2036/repos",
"events_url": "https://api.github.com/users/arr2036/events{/privacy}",
"received_events_url": "https://api.github.com/users/arr2036/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "arr2036",
"id": 791758,
"node_id": "MDQ6VXNlcjc5MTc1OA==",
"avatar_url": "https://avatars3.githubusercontent.com/u/791758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arr2036",
"html_url": "https://github.com/arr2036",
"followers_url": "https://api.github.com/users/arr2036/followers",
"following_url": "https://api.github.com/users/arr2036/following{/other_user}",
"gists_url": "https://api.github.com/users/arr2036/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arr2036/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arr2036/subscriptions",
"organizations_url": "https://api.github.com/users/arr2036/orgs",
"repos_url": "https://api.github.com/users/arr2036/repos",
"events_url": "https://api.github.com/users/arr2036/events{/privacy}",
"received_events_url": "https://api.github.com/users/arr2036/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86"
}
]
},
{
"sha": "e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86",
"node_id": "MDY6Q29tbWl0MzU2NDk6ZTgxNTEyY2M0NTgzZWRkYWU4YmQxZDlmYjFkNWE1NDE0YmRiMGM4Ng==",
"commit": {
"author": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-11T13:18:07Z"
},
"committer": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-11T13:18:07Z"
},
"message": "Move link_layer functions into pcap.c as they need libpcap to work",
"tree": {
"sha": "e52dadaac387414f8b540954d5d5c4dd03f8d16d",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/e52dadaac387414f8b540954d5d5c4dd03f8d16d"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86",
"comment_count": 0,
"verification": {
"verified": false,
"reason": "unsigned",
"signature": null,
"payload": null
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/e81512cc4583eddae8bd1d9fb1d5a5414bdb0c86/comments",
"author": {
"login": "arr2036",
"id": 791758,
"node_id": "MDQ6VXNlcjc5MTc1OA==",
"avatar_url": "https://avatars3.githubusercontent.com/u/791758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arr2036",
"html_url": "https://github.com/arr2036",
"followers_url": "https://api.github.com/users/arr2036/followers",
"following_url": "https://api.github.com/users/arr2036/following{/other_user}",
"gists_url": "https://api.github.com/users/arr2036/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arr2036/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arr2036/subscriptions",
"organizations_url": "https://api.github.com/users/arr2036/orgs",
"repos_url": "https://api.github.com/users/arr2036/repos",
"events_url": "https://api.github.com/users/arr2036/events{/privacy}",
"received_events_url": "https://api.github.com/users/arr2036/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "arr2036",
"id": 791758,
"node_id": "MDQ6VXNlcjc5MTc1OA==",
"avatar_url": "https://avatars3.githubusercontent.com/u/791758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arr2036",
"html_url": "https://github.com/arr2036",
"followers_url": "https://api.github.com/users/arr2036/followers",
"following_url": "https://api.github.com/users/arr2036/following{/other_user}",
"gists_url": "https://api.github.com/users/arr2036/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arr2036/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arr2036/subscriptions",
"organizations_url": "https://api.github.com/users/arr2036/orgs",
"repos_url": "https://api.github.com/users/arr2036/repos",
"events_url": "https://api.github.com/users/arr2036/events{/privacy}",
"received_events_url": "https://api.github.com/users/arr2036/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb"
}
]
},
{
"sha": "6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb",
"node_id": "MDY6Q29tbWl0MzU2NDk6NmY2NGI1YmNiYzAwYTRmYWJkYzlkODA4MWI0MDhkYTQ1ZmEzN2JjYg==",
"commit": {
"author": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-11T13:15:03Z"
},
"committer": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-11T13:15:03Z"
},
"message": "Fix libpcap detection",
"tree": {
"sha": "109dc73c2dfab565b6559e94f786b1c82c1ffb04",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/109dc73c2dfab565b6559e94f786b1c82c1ffb04"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb",
"comment_count": 0,
"verification": {
"verified": false,
"reason": "unsigned",
"signature": null,
"payload": null
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/6f64b5bcbc00a4fabdc9d8081b408da45fa37bcb/comments",
"author": {
"login": "arr2036",
"id": 791758,
"node_id": "MDQ6VXNlcjc5MTc1OA==",
"avatar_url": "https://avatars3.githubusercontent.com/u/791758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arr2036",
"html_url": "https://github.com/arr2036",
"followers_url": "https://api.github.com/users/arr2036/followers",
"following_url": "https://api.github.com/users/arr2036/following{/other_user}",
"gists_url": "https://api.github.com/users/arr2036/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arr2036/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arr2036/subscriptions",
"organizations_url": "https://api.github.com/users/arr2036/orgs",
"repos_url": "https://api.github.com/users/arr2036/repos",
"events_url": "https://api.github.com/users/arr2036/events{/privacy}",
"received_events_url": "https://api.github.com/users/arr2036/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "arr2036",
"id": 791758,
"node_id": "MDQ6VXNlcjc5MTc1OA==",
"avatar_url": "https://avatars3.githubusercontent.com/u/791758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arr2036",
"html_url": "https://github.com/arr2036",
"followers_url": "https://api.github.com/users/arr2036/followers",
"following_url": "https://api.github.com/users/arr2036/following{/other_user}",
"gists_url": "https://api.github.com/users/arr2036/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arr2036/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arr2036/subscriptions",
"organizations_url": "https://api.github.com/users/arr2036/orgs",
"repos_url": "https://api.github.com/users/arr2036/repos",
"events_url": "https://api.github.com/users/arr2036/events{/privacy}",
"received_events_url": "https://api.github.com/users/arr2036/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "26e2de388d06d61cfc73e9aa069d67eef372a67e",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/26e2de388d06d61cfc73e9aa069d67eef372a67e",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/26e2de388d06d61cfc73e9aa069d67eef372a67e"
}
]
},
{
"sha": "26e2de388d06d61cfc73e9aa069d67eef372a67e",
"node_id": "MDY6Q29tbWl0MzU2NDk6MjZlMmRlMzg4ZDA2ZDYxY2ZjNzNlOWFhMDY5ZDY3ZWVmMzcyYTY3ZQ==",
"commit": {
"author": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-10T16:52:23Z"
},
"committer": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-10T16:52:23Z"
},
"message": "start of asciidoc conversion",
"tree": {
"sha": "25a94490c90dac1b6bc9d9e328c0099c46657151",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/25a94490c90dac1b6bc9d9e328c0099c46657151"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/26e2de388d06d61cfc73e9aa069d67eef372a67e",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJbHVdOAAoJEH0Oec13Yh7Niu0IAJVUFjICJRHsXrucZ40yXoQ9\nSV6P6Z+XCPE8uQKZOxHFZa+h5OIe5Bywg7McPszhrj0uaZbLninmqezJJOLXqhmK\nwxP60zcFrTIiRFa56OYpIIHuGWsRzXVyjCjbux1zqgQVRpbZev3FBEtZuz8gRyeS\nhLLZWEclsJP8cvrBFZN40Qen007RDPJRtb6Fy46W/B6wcaFYkQ9Eu/xOCrjIJMn3\nrXSe6XPAa0Ypa5x2DCARLjPVOl1SV0GrulbV/aCAn3eBXzkECqNceWZ1R308OMLH\noRVEsU1ffqwOieWUXwQieFZmO4sG88hezcfrbkXaFtC1oiM85gX1BLBv6RRCggU=\n=chZv\n-----END PGP SIGNATURE-----",
"payload": "tree 25a94490c90dac1b6bc9d9e328c0099c46657151\nparent 49c6fcff7bdedd1e0755d77909d51533d8bacb44\nauthor Alan T. DeKok <[email protected]> 1528649543 -0400\ncommitter Alan T. DeKok <[email protected]> 1528649543 -0400\n\nstart of asciidoc conversion\n"
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/26e2de388d06d61cfc73e9aa069d67eef372a67e",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/26e2de388d06d61cfc73e9aa069d67eef372a67e",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/26e2de388d06d61cfc73e9aa069d67eef372a67e/comments",
"author": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "49c6fcff7bdedd1e0755d77909d51533d8bacb44",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/49c6fcff7bdedd1e0755d77909d51533d8bacb44",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/49c6fcff7bdedd1e0755d77909d51533d8bacb44"
}
]
},
{
"sha": "49c6fcff7bdedd1e0755d77909d51533d8bacb44",
"node_id": "MDY6Q29tbWl0MzU2NDk6NDljNmZjZmY3YmRlZGQxZTA3NTVkNzc5MDlkNTE1MzNkOGJhY2I0NA==",
"commit": {
"author": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-10T16:51:54Z"
},
"committer": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-10T16:51:54Z"
},
"message": "let lists be formatted correctly",
"tree": {
"sha": "47db84f340794afb55a0e9b11b32859e6a58e307",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/47db84f340794afb55a0e9b11b32859e6a58e307"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/49c6fcff7bdedd1e0755d77909d51533d8bacb44",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJbHVczAAoJEH0Oec13Yh7N1bQH/04D97poDdtF1VX5CmohrHyk\nr+qYJ2Iv4rsu+NmK9mUdvBuaOroN3mT6gDKpZHGz4Xn5HvAD2W46GgFpzfB2/8gW\n3QMqefPpuMnGYxiT4eY9nBqDR1gLaklB99qcil2nunM/e/UJ/6ri2UaB8HpWWty1\njCWuB7zSOkmAg/U++9opgSggvR7OPnESjqTiV9xnl6EAHhXGwQkiu9M1VYL66cI5\ncxOYaHE2WAXQ23hd9Z1skoXXkDg6+buV8Jv4+4f1SfCVjoSOMPB782wHjCunU6Yt\nyqgbuJOsoK/tn0OBY/cJW9hG7arZEiWgFuz4meGs6l5Yvv6q+aakv5Y7ZqBaY8E=\n=ZSEj\n-----END PGP SIGNATURE-----",
"payload": "tree 47db84f340794afb55a0e9b11b32859e6a58e307\nparent b72d5dbf8884477d2ffd2d6d690295b492bf1549\nauthor Alan T. DeKok <[email protected]> 1528649514 -0400\ncommitter Alan T. DeKok <[email protected]> 1528649514 -0400\n\nlet lists be formatted correctly\n"
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/49c6fcff7bdedd1e0755d77909d51533d8bacb44",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/49c6fcff7bdedd1e0755d77909d51533d8bacb44",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/49c6fcff7bdedd1e0755d77909d51533d8bacb44/comments",
"author": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "b72d5dbf8884477d2ffd2d6d690295b492bf1549",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/b72d5dbf8884477d2ffd2d6d690295b492bf1549",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/b72d5dbf8884477d2ffd2d6d690295b492bf1549"
}
]
},
{
"sha": "b72d5dbf8884477d2ffd2d6d690295b492bf1549",
"node_id": "MDY6Q29tbWl0MzU2NDk6YjcyZDVkYmY4ODg0NDc3ZDJmZmQyZDZkNjkwMjk1YjQ5MmJmMTU0OQ==",
"commit": {
"author": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-10T16:49:49Z"
},
"committer": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-10T16:49:49Z"
},
"message": "load all conf into asciidoc",
"tree": {
"sha": "294f6821b0da47417d960de599591ed5028abfef",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/294f6821b0da47417d960de599591ed5028abfef"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/b72d5dbf8884477d2ffd2d6d690295b492bf1549",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJbHVa0AAoJEH0Oec13Yh7Nte4H/0ci+Qi59ObX+kRdyc/uUWKy\ncT1PS2y4EjmcZlIGv/iJFxRLkN5DMuWdie6KEXL8SIeACeW+Do6eAoAYXQbw61j8\n9aMrjqYuQy40VHPOQUPbYfyBeAH/4YpKH467jfwVTqDNzeModgaGrZRbUufhxVCU\nJ7l/m2czCYXx9QoawJ9/Ed1r6wdDQE0D1Kc6MKqXqitya5Hgcl3q/huXXMZJm60o\nY6rRNQeeVxckhl8f4pI7Dv0qQpX+Hz5nuGVYjwn3GAUn7aBoZxoRUUf9KDZyVXy7\nS8E7Woncixw/attF7f2LvHgwD6bMt4h8+qWPHNaRz6dKXN94FtmTaRVHx85gG7o=\n=eFD5\n-----END PGP SIGNATURE-----",
"payload": "tree 294f6821b0da47417d960de599591ed5028abfef\nparent dacba487840be4a15952c074c476d146786244ce\nauthor Alan T. DeKok <[email protected]> 1528649389 -0400\ncommitter Alan T. DeKok <[email protected]> 1528649389 -0400\n\nload all conf into asciidoc\n"
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/b72d5dbf8884477d2ffd2d6d690295b492bf1549",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/b72d5dbf8884477d2ffd2d6d690295b492bf1549",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/b72d5dbf8884477d2ffd2d6d690295b492bf1549/comments",
"author": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "dacba487840be4a15952c074c476d146786244ce",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/dacba487840be4a15952c074c476d146786244ce",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/dacba487840be4a15952c074c476d146786244ce"
}
]
},
{
"sha": "dacba487840be4a15952c074c476d146786244ce",
"node_id": "MDY6Q29tbWl0MzU2NDk6ZGFjYmE0ODc4NDBiZTRhMTU5NTJjMDc0YzQ3NmQxNDY3ODYyNDRjZQ==",
"commit": {
"author": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-09T15:22:12Z"
},
"committer": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-09T15:22:12Z"
},
"message": "add \"asciidoc\" target\n\nwhich means pretty, pretty, documentation",
"tree": {
"sha": "4b60550deafd7d9d8b346bd2ab5c7361fa8fa240",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/4b60550deafd7d9d8b346bd2ab5c7361fa8fa240"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/dacba487840be4a15952c074c476d146786244ce",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJbG/CyAAoJEH0Oec13Yh7NoRsIAJerqcsBXZmuZNYaC2/HMkBt\nmI26njwfVPG1IFc2jVa460wlLyKf3EnNq81AJfi4HxG6N1sdKUaTBJFiXhlFzdfv\nDO5nsHJHKSx9+urxsIBKCgMryMUdN65eICGmI3UT2FGyWZjoQ9pOJw3y/Z6RHZQb\npUyBU1CSqeZVauKeiFhFLlJVX02trhEA8RKuVPxxnSq81xWZ2Ekfmye/eEdIakhR\nBqw71a+maKc4U4hqpyWdt92d1WBrEEEoyXeVtEMMjWYLaRFaFCzOHJczTJMrYN12\nRmiyIc0mQYwEKifFDSrb5nq9+0NkWcZlRhwJRUnpHYGDiH/aHgesFDX1vkuSDFc=\n=e3cp\n-----END PGP SIGNATURE-----",
"payload": "tree 4b60550deafd7d9d8b346bd2ab5c7361fa8fa240\nparent 810ca10d956de024e34f340ca47d286421725d29\nauthor Alan T. DeKok <[email protected]> 1528557732 -0400\ncommitter Alan T. DeKok <[email protected]> 1528557732 -0400\n\nadd \"asciidoc\" target\n\nwhich means pretty, pretty, documentation\n"
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/dacba487840be4a15952c074c476d146786244ce",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/dacba487840be4a15952c074c476d146786244ce",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/dacba487840be4a15952c074c476d146786244ce/comments",
"author": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "810ca10d956de024e34f340ca47d286421725d29",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/810ca10d956de024e34f340ca47d286421725d29",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/810ca10d956de024e34f340ca47d286421725d29"
}
]
},
{
"sha": "810ca10d956de024e34f340ca47d286421725d29",
"node_id": "MDY6Q29tbWl0MzU2NDk6ODEwY2ExMGQ5NTZkZTAyNGUzNGYzNDBjYTQ3ZDI4NjQyMTcyNWQyOQ==",
"commit": {
"author": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-09T15:09:55Z"
},
"committer": {
"name": "Alan T. DeKok",
"email": "[email protected]",
"date": "2018-06-09T15:09:55Z"
},
"message": "start of \"convert conf files to humanly readable\"",
"tree": {
"sha": "f7792d78b8c13a8157f2be46dfa4a9704677d4de",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/f7792d78b8c13a8157f2be46dfa4a9704677d4de"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/810ca10d956de024e34f340ca47d286421725d29",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\niQEcBAABCAAGBQJbG+3SAAoJEH0Oec13Yh7NJ0MH/2ZIwY8aRSqez0raiHaM2lil\nHxgOZ5UX3EgHhbWGD6y5hP+ZPexocI8/0/bVbP/N4LivsAacay90ZbwqXnEE06zO\nenJlc2A+x01vtruhUlo/QYuNm3p1EtfsGuFX/jlKiIm1+KOGtRfsl4ZzbQtZ8P5K\nkH7JrrexZ7jIvb1F0kbQhvg+f7zMP7uDODTFVrSFfCGzAvXwn95FcTUtKfA1zPW1\nJew0rnDgsVkRBvrUWOm+ocRsExB/c3G+F62NWWIAUbRBYNK+nYgb7I3YRGDbH+do\nqFLQLK0lUCsrx0ZtufD6DD1fR3np1IMmDJUY+z25cDtUmuV7/7tyyCiTph1kB6Q=\n=LNpw\n-----END PGP SIGNATURE-----",
"payload": "tree f7792d78b8c13a8157f2be46dfa4a9704677d4de\nparent 48ef161879f160b8397942531429ba0d80366414\nauthor Alan T. DeKok <[email protected]> 1528556995 -0400\ncommitter Alan T. DeKok <[email protected]> 1528556995 -0400\n\nstart of \"convert conf files to humanly readable\"\n"
}
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/810ca10d956de024e34f340ca47d286421725d29",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/810ca10d956de024e34f340ca47d286421725d29",
"comments_url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/810ca10d956de024e34f340ca47d286421725d29/comments",
"author": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "alandekok",
"id": 17612,
"node_id": "MDQ6VXNlcjE3NjEy",
"avatar_url": "https://avatars3.githubusercontent.com/u/17612?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alandekok",
"html_url": "https://github.com/alandekok",
"followers_url": "https://api.github.com/users/alandekok/followers",
"following_url": "https://api.github.com/users/alandekok/following{/other_user}",
"gists_url": "https://api.github.com/users/alandekok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alandekok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alandekok/subscriptions",
"organizations_url": "https://api.github.com/users/alandekok/orgs",
"repos_url": "https://api.github.com/users/alandekok/repos",
"events_url": "https://api.github.com/users/alandekok/events{/privacy}",
"received_events_url": "https://api.github.com/users/alandekok/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "48ef161879f160b8397942531429ba0d80366414",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/commits/48ef161879f160b8397942531429ba0d80366414",
"html_url": "https://github.com/FreeRADIUS/freeradius-server/commit/48ef161879f160b8397942531429ba0d80366414"
}
]
},
{
"sha": "48ef161879f160b8397942531429ba0d80366414",
"node_id": "MDY6Q29tbWl0MzU2NDk6NDhlZjE2MTg3OWYxNjBiODM5Nzk0MjUzMTQyOWJhMGQ4MDM2NjQxNA==",
"commit": {
"author": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-07T16:49:39Z"
},
"committer": {
"name": "Arran Cudbard-Bell",
"email": "[email protected]",
"date": "2018-06-09T01:08:14Z"
},
"message": "Reorganise the TACACS+ library code",
"tree": {
"sha": "a7c7d1f44d901f2e22d7dccdb2469bb6a3aa1e33",
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/trees/a7c7d1f44d901f2e22d7dccdb2469bb6a3aa1e33"
},
"url": "https://api.github.com/repos/FreeRADIUS/freeradius-server/git/commits/48ef161879f160b8397942531429ba0d80366414",
"comment_count": 0,
"verification": {
"verified": false,
"reason": "unsigned",
"signature": null,
"payload": null
}