-
Notifications
You must be signed in to change notification settings - Fork 2
/
logger.txt
12621 lines (12621 loc) · 246 KB
/
logger.txt
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
2020-08-27T07:40:36.413Z
Grade
ASP.NET_SessionId=5l2ybv55zlft3nun5gwmtg45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-08-27T07:40:39.828Z
Marks
ASP.NET_SessionId=4joospziebjkjb55yx0lyx55
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-08-28T00:12:51.309Z
Grade
ASP.NET_SessionId=5xxwic552virwxudwqzgyvut
{ '18': [], '19': [ '601', '752' ] }
19 601 316
19 752 215
{ '18': [], '19': [ '601', '752' ] }
Grade 19 601 316
Grade 19 752 215
2020-08-28T00:14:33.530Z
Marks
ASP.NET_SessionId=mrsqx555sqbz3helit1cwg45
{ '18': [], '19': [ '601', '752' ] }
19 601 316
19 752 215
{ '18': [], '19': [ '601', '752' ] }
Marks 19 601 316
Marks 19 752 215
2020-08-29T00:09:44.513Z
Grade
ASP.NET_SessionId=xyf55rmkwjauw4452q4lm255
{ '18': [ '523', '544', '592', '601' ], '19': [] }
18 523 047
18 523 056
18 523 029
18 523 026
18 523 014
18 544 029
18 592 056
18 601 316
{ '18': [ '523', '544', '592', '601' ], '19': [] }
Grade 18 523 047
Grade 18 523 056
Grade 18 523 029
Grade 18 523 026
Grade 18 523 014
Grade 18 544 029
Grade 18 592 056
Grade 18 601 316
2020-08-29T00:12:24.913Z
Marks
ASP.NET_SessionId=egz5zz55ldnj3f45acakewb3
{ '18': [ '523', '544', '592', '601' ], '19': [] }
18 523 047
18 523 056
18 523 029
18 523 026
18 523 014
18 544 029
18 592 056
18 601 316
{ '18': [ '523', '544', '592', '601' ], '19': [] }
Marks 18 523 047
Marks 18 523 056
Marks 18 523 029
Marks 18 523 026
Marks 18 523 014
Marks 18 544 029
Marks 18 592 056
Marks 18 601 316
2020-08-30T00:14:39.326Z
Grade
ASP.NET_SessionId=klwbo2qxwytpwc55kp223p55
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-08-30T00:14:42.322Z
Marks
ASP.NET_SessionId=lnxtx1bftfernl55fdebp455
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-08-31T00:08:46.631Z
Grade
ASP.NET_SessionId=tolwcfrpdc0rhrn1w31lywyv
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-08-31T00:08:49.754Z
Marks
ASP.NET_SessionId=zksfgm45dmnjwx55l25dsf45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-01T04:29:01.840Z
Grade
ASP.NET_SessionId=1u1xcv55ycbewbmtpcmgox45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-01T04:29:04.890Z
Marks
ASP.NET_SessionId=3ptwyaf3soupkuabse0a0grr
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-02T00:44:52.169Z
Grade
ASP.NET_SessionId=vip5zi2jqcofvububdq3wp45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-02T00:44:55.408Z
Marks
ASP.NET_SessionId=22qgglvi5ssvo1ig4etv1r45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-03T00:49:05.481Z
Grade
ASP.NET_SessionId=ycqd4i55tht24145z5xu5a55
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-03T00:49:08.537Z
Marks
ASP.NET_SessionId=zr5jwpzpq43mqcjcbwtwze45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-04T00:49:45.469Z
Grade
ASP.NET_SessionId=hhgnvv2wkyw2hqnxybnelhii
{ '18': [], '19': [ '707' ] }
19 707 227
{ '18': [], '19': [ '707' ] }
Grade 19 707 227
2020-09-04T00:52:00.621Z
Marks
ASP.NET_SessionId=4dqrxffgcletg2nogbyvp2ff
{ '18': [], '19': [ '707' ] }
19 707 227
{ '18': [], '19': [ '707' ] }
Marks 19 707 227
2020-09-05T01:29:40.161Z
Grade
ASP.NET_SessionId=3am3qorag0zcouqgx0i4sl45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-05T01:29:43.066Z
Marks
ASP.NET_SessionId=1ey2os55ueclcsyxqotov345
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-06T00:52:05.894Z
Grade
ASP.NET_SessionId=0qewcgfo3x1vjjyyikyqmnff
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-06T00:52:09.000Z
Marks
ASP.NET_SessionId=rezlvc55aujbtmikljlhgz45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-07T00:50:54.599Z
Grade
ASP.NET_SessionId=53u50v45zuucfx45esxmwm45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-07T00:50:57.733Z
Marks
ASP.NET_SessionId=yntpjr45gbjdamyuuqg4yait
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-08T00:50:32.061Z
Grade
ASP.NET_SessionId=oq0hbraiowjsje45gyrvjc45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-08T00:50:35.071Z
Marks
ASP.NET_SessionId=f1smic45zy5ev345rco4xyv0
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-09T00:50:41.754Z
Grade
ASP.NET_SessionId=mdunm2nyns4nit45zylnoiaf
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-09T00:50:44.872Z
Marks
ASP.NET_SessionId=zvhzstybr4jdmyjy11pp3db3
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-10T00:47:33.019Z
Grade
ASP.NET_SessionId=xbjdvq45fenpwrb104ly4gul
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-10T00:47:36.034Z
Marks
ASP.NET_SessionId=r2srw155qi1x4p45okw0lp55
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-11T00:47:51.555Z
Grade
ASP.NET_SessionId=zrf4tgqwu3vbxtezwqtpayab
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-11T00:47:55.654Z
Marks
ASP.NET_SessionId=x2tj1rbl0gx5xbi2yscmml45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-12T00:50:04.811Z
Grade
ASP.NET_SessionId=k0wsngrfh3tyz2f4knfp0iq3
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-12T00:50:08.105Z
Marks
ASP.NET_SessionId=2udjtk55s51qqjjcf13lyduc
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-13T00:52:22.651Z
Grade
ASP.NET_SessionId=y0s0mn55t1xcrt451wywo5rm
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-13T00:52:26.449Z
Marks
ASP.NET_SessionId=1aaqqsfcue45sfb3nsdc5i45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-14T00:51:15.750Z
Grade
ASP.NET_SessionId=kogcpe45xbct5i55xlzjwsma
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-14T00:51:19.419Z
Marks
ASP.NET_SessionId=fpairculdcs5dkvutgaekp55
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-15T00:51:07.246Z
Grade
ASP.NET_SessionId=3alxciq0qycnalbq2gqayr55
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-15T00:51:10.230Z
Marks
ASP.NET_SessionId=i2z4pgr0kymzimyuqy2rhn45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-16T00:51:00.125Z
Grade
ASP.NET_SessionId=hlsriw55tvdu0oftvon2am45
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-16T00:51:03.468Z
Marks
ASP.NET_SessionId=wkqfbo55c24d2by1zc5escvq
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-17T00:51:09.251Z
Grade
{ Error: self signed certificate
at TLSSocket.onConnectSecure (_tls_wrap.js:1088:34)
at TLSSocket.emit (events.js:198:13)
at TLSSocket._finishInit (_tls_wrap.js:666:8)
code: 'DEPTH_ZERO_SELF_SIGNED_CERT',
config:
{ url:
'https://rslt.duresult.in/Students/List_Of_Declared_Results.aspx',
headers:
{ Accept: 'application/json, text/plain, */*',
'User-Agent': 'axios/0.20.0' },
transformRequest: [ [Function: transformRequest] ],
transformResponse: [ [Function: transformResponse] ],
timeout: 0,
withCredentials: true,
adapter: [Function: httpAdapter],
xsrfCookieName: 'XSRF-TOKEN',
xsrfHeaderName: 'X-XSRF-TOKEN',
maxContentLength: -1,
maxBodyLength: -1,
validateStatus: [Function: validateStatus],
method: 'get',
data: undefined },
request:
Writable {
_writableState:
WritableState {
objectMode: false,
highWaterMark: 16384,
finalCalled: false,
needDrain: false,
ending: false,
ended: false,
finished: false,
destroyed: false,
decodeStrings: true,
defaultEncoding: 'utf8',
length: 0,
writing: false,
corked: 0,
sync: true,
bufferProcessing: false,
onwrite: [Function: bound onwrite],
writecb: null,
writelen: 0,
bufferedRequest: null,
lastBufferedRequest: null,
pendingcb: 0,
prefinished: false,
errorEmitted: false,
emitClose: true,
autoDestroy: false,
bufferedRequestCount: 0,
corkedRequestsFree: [Object] },
writable: true,
_events:
[Object: null prototype] {
response: [Function: handleResponse],
error: [Function: handleRequestError] },
_eventsCount: 2,
_maxListeners: undefined,
_options:
{ maxRedirects: 21,
maxBodyLength: 10485760,
protocol: 'https:',
path: '/Students/List_Of_Declared_Results.aspx',
method: 'GET',
headers: [Object],
agent: undefined,
agents: [Object],
auth: undefined,
hostname: 'rslt.duresult.in',
port: null,
nativeProtocols: [Object],
pathname: '/Students/List_Of_Declared_Results.aspx' },
_ended: true,
_ending: true,
_redirectCount: 0,
_redirects: [],
_requestBodyLength: 0,
_requestBodyBuffers: [],
_onNativeResponse: [Function],
_currentRequest:
ClientRequest {
_events: [Object],
_eventsCount: 7,
_maxListeners: undefined,
output: [],
outputEncodings: [],
outputCallbacks: [],
outputSize: 0,
writable: true,
_last: true,
chunkedEncoding: false,
shouldKeepAlive: false,
useChunkedEncodingByDefault: false,
sendDate: false,
_removedConnection: false,
_removedContLen: false,
_removedTE: false,
_contentLength: 0,
_hasBody: true,
_trailer: '',
finished: true,
_headerSent: true,
socket: [TLSSocket],
connection: [TLSSocket],
_header:
'GET /Students/List_Of_Declared_Results.aspx HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nUser-Agent: axios/0.20.0\r\nHost: rslt.duresult.in\r\nConnection: close\r\n\r\n',
_onPendingData: [Function: noopPendingOutput],
agent: [Agent],
socketPath: undefined,
timeout: undefined,
method: 'GET',
insecureHTTPParser: undefined,
path: '/Students/List_Of_Declared_Results.aspx',
_ended: false,
res: null,
aborted: undefined,
timeoutCb: null,
upgradeOrConnect: false,
parser: null,
maxHeadersCount: null,
_redirectable: [Circular],
[Symbol(isCorked)]: false,
[Symbol(outHeadersKey)]: [Object] },
_currentUrl:
'https://rslt.duresult.in/Students/List_Of_Declared_Results.aspx' },
response: undefined,
isAxiosError: true,
toJSON: [Function: toJSON] }
{ Error: self signed certificate
at TLSSocket.onConnectSecure (_tls_wrap.js:1088:34)
at TLSSocket.emit (events.js:198:13)
at TLSSocket._finishInit (_tls_wrap.js:666:8)
code: 'DEPTH_ZERO_SELF_SIGNED_CERT',
config:
{ url: 'https://rslt.duresult.in/Students/Combine_GradeCard.aspx',
headers:
{ Accept: 'application/json, text/plain, */*',
'User-Agent': 'axios/0.20.0' },
transformRequest: [ [Function: transformRequest] ],
transformResponse: [ [Function: transformResponse] ],
timeout: 0,
withCredentials: true,
adapter: [Function: httpAdapter],
xsrfCookieName: 'XSRF-TOKEN',
xsrfHeaderName: 'X-XSRF-TOKEN',
maxContentLength: -1,
maxBodyLength: -1,
validateStatus: [Function: validateStatus],
method: 'get',
data: undefined },
request:
Writable {
_writableState:
WritableState {
objectMode: false,
highWaterMark: 16384,
finalCalled: false,
needDrain: false,
ending: false,
ended: false,
finished: false,
destroyed: false,
decodeStrings: true,
defaultEncoding: 'utf8',
length: 0,
writing: false,
corked: 0,
sync: true,
bufferProcessing: false,
onwrite: [Function: bound onwrite],
writecb: null,
writelen: 0,
bufferedRequest: null,
lastBufferedRequest: null,
pendingcb: 0,
prefinished: false,
errorEmitted: false,
emitClose: true,
autoDestroy: false,
bufferedRequestCount: 0,
corkedRequestsFree: [Object] },
writable: true,
_events:
[Object: null prototype] {
response: [Function: handleResponse],
error: [Function: handleRequestError] },
_eventsCount: 2,
_maxListeners: undefined,
_options:
{ maxRedirects: 21,
maxBodyLength: 10485760,
protocol: 'https:',
path: '/Students/Combine_GradeCard.aspx',
method: 'GET',
headers: [Object],
agent: undefined,
agents: [Object],
auth: undefined,
hostname: 'rslt.duresult.in',
port: null,
nativeProtocols: [Object],
pathname: '/Students/Combine_GradeCard.aspx' },
_ended: true,
_ending: true,
_redirectCount: 0,
_redirects: [],
_requestBodyLength: 0,
_requestBodyBuffers: [],
_onNativeResponse: [Function],
_currentRequest:
ClientRequest {
_events: [Object],
_eventsCount: 7,
_maxListeners: undefined,
output: [],
outputEncodings: [],
outputCallbacks: [],
outputSize: 0,
writable: true,
_last: true,
chunkedEncoding: false,
shouldKeepAlive: false,
useChunkedEncodingByDefault: false,
sendDate: false,
_removedConnection: false,
_removedContLen: false,
_removedTE: false,
_contentLength: 0,
_hasBody: true,
_trailer: '',
finished: true,
_headerSent: true,
socket: [TLSSocket],
connection: [TLSSocket],
_header:
'GET /Students/Combine_GradeCard.aspx HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nUser-Agent: axios/0.20.0\r\nHost: rslt.duresult.in\r\nConnection: close\r\n\r\n',
_onPendingData: [Function: noopPendingOutput],
agent: [Agent],
socketPath: undefined,
timeout: undefined,
method: 'GET',
insecureHTTPParser: undefined,
path: '/Students/Combine_GradeCard.aspx',
_ended: false,
res: null,
aborted: undefined,
timeoutCb: null,
upgradeOrConnect: false,
parser: null,
maxHeadersCount: null,
_redirectable: [Circular],
[Symbol(isCorked)]: false,
[Symbol(outHeadersKey)]: [Object] },
_currentUrl: 'https://rslt.duresult.in/Students/Combine_GradeCard.aspx' },
response: undefined,
isAxiosError: true,
toJSON: [Function: toJSON] }
undefined
2020-09-17T00:51:10.400Z
Marks
{ Error: self signed certificate
at TLSSocket.onConnectSecure (_tls_wrap.js:1088:34)
at TLSSocket.emit (events.js:198:13)
at TLSSocket._finishInit (_tls_wrap.js:666:8)
code: 'DEPTH_ZERO_SELF_SIGNED_CERT',
config:
{ url:
'https://rslt.duresult.in/Students/List_Of_Declared_Results.aspx',
headers:
{ Accept: 'application/json, text/plain, */*',
'User-Agent': 'axios/0.20.0' },
transformRequest: [ [Function: transformRequest] ],
transformResponse: [ [Function: transformResponse] ],
timeout: 0,
withCredentials: true,
adapter: [Function: httpAdapter],
xsrfCookieName: 'XSRF-TOKEN',
xsrfHeaderName: 'X-XSRF-TOKEN',
maxContentLength: -1,
maxBodyLength: -1,
validateStatus: [Function: validateStatus],
method: 'get',
data: undefined },
request:
Writable {
_writableState:
WritableState {
objectMode: false,
highWaterMark: 16384,
finalCalled: false,
needDrain: false,
ending: false,
ended: false,
finished: false,
destroyed: false,
decodeStrings: true,
defaultEncoding: 'utf8',
length: 0,
writing: false,
corked: 0,
sync: true,
bufferProcessing: false,
onwrite: [Function: bound onwrite],
writecb: null,
writelen: 0,
bufferedRequest: null,
lastBufferedRequest: null,
pendingcb: 0,
prefinished: false,
errorEmitted: false,
emitClose: true,
autoDestroy: false,
bufferedRequestCount: 0,
corkedRequestsFree: [Object] },
writable: true,
_events:
[Object: null prototype] {
response: [Function: handleResponse],
error: [Function: handleRequestError] },
_eventsCount: 2,
_maxListeners: undefined,
_options:
{ maxRedirects: 21,
maxBodyLength: 10485760,
protocol: 'https:',
path: '/Students/List_Of_Declared_Results.aspx',
method: 'GET',
headers: [Object],
agent: undefined,
agents: [Object],
auth: undefined,
hostname: 'rslt.duresult.in',
port: null,
nativeProtocols: [Object],
pathname: '/Students/List_Of_Declared_Results.aspx' },
_ended: true,
_ending: true,
_redirectCount: 0,
_redirects: [],
_requestBodyLength: 0,
_requestBodyBuffers: [],
_onNativeResponse: [Function],
_currentRequest:
ClientRequest {
_events: [Object],
_eventsCount: 7,
_maxListeners: undefined,
output: [],
outputEncodings: [],
outputCallbacks: [],
outputSize: 0,
writable: true,
_last: true,
chunkedEncoding: false,
shouldKeepAlive: false,
useChunkedEncodingByDefault: false,
sendDate: false,
_removedConnection: false,
_removedContLen: false,
_removedTE: false,
_contentLength: 0,
_hasBody: true,
_trailer: '',
finished: true,
_headerSent: true,
socket: [TLSSocket],
connection: [TLSSocket],
_header:
'GET /Students/List_Of_Declared_Results.aspx HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nUser-Agent: axios/0.20.0\r\nHost: rslt.duresult.in\r\nConnection: close\r\n\r\n',
_onPendingData: [Function: noopPendingOutput],
agent: [Agent],
socketPath: undefined,
timeout: undefined,
method: 'GET',
insecureHTTPParser: undefined,
path: '/Students/List_Of_Declared_Results.aspx',
_ended: false,
res: null,
aborted: undefined,
timeoutCb: null,
upgradeOrConnect: false,
parser: null,
maxHeadersCount: null,
_redirectable: [Circular],
[Symbol(isCorked)]: false,
[Symbol(outHeadersKey)]: [Object] },
_currentUrl:
'https://rslt.duresult.in/Students/List_Of_Declared_Results.aspx' },
response: undefined,
isAxiosError: true,
toJSON: [Function: toJSON] }
{ Error: self signed certificate
at TLSSocket.onConnectSecure (_tls_wrap.js:1088:34)
at TLSSocket.emit (events.js:198:13)
at TLSSocket._finishInit (_tls_wrap.js:666:8)
code: 'DEPTH_ZERO_SELF_SIGNED_CERT',
config:
{ url: 'https://rslt.duresult.in/Students/Combine_GradeCard.aspx',
headers:
{ Accept: 'application/json, text/plain, */*',
'User-Agent': 'axios/0.20.0' },
transformRequest: [ [Function: transformRequest] ],
transformResponse: [ [Function: transformResponse] ],
timeout: 0,
withCredentials: true,
adapter: [Function: httpAdapter],
xsrfCookieName: 'XSRF-TOKEN',
xsrfHeaderName: 'X-XSRF-TOKEN',
maxContentLength: -1,
maxBodyLength: -1,
validateStatus: [Function: validateStatus],
method: 'get',
data: undefined },
request:
Writable {
_writableState:
WritableState {
objectMode: false,
highWaterMark: 16384,
finalCalled: false,
needDrain: false,
ending: false,
ended: false,
finished: false,
destroyed: false,
decodeStrings: true,
defaultEncoding: 'utf8',
length: 0,
writing: false,
corked: 0,
sync: true,
bufferProcessing: false,
onwrite: [Function: bound onwrite],
writecb: null,
writelen: 0,
bufferedRequest: null,
lastBufferedRequest: null,
pendingcb: 0,
prefinished: false,
errorEmitted: false,
emitClose: true,
autoDestroy: false,
bufferedRequestCount: 0,
corkedRequestsFree: [Object] },
writable: true,
_events:
[Object: null prototype] {
response: [Function: handleResponse],
error: [Function: handleRequestError] },
_eventsCount: 2,
_maxListeners: undefined,
_options:
{ maxRedirects: 21,
maxBodyLength: 10485760,
protocol: 'https:',
path: '/Students/Combine_GradeCard.aspx',
method: 'GET',
headers: [Object],
agent: undefined,
agents: [Object],
auth: undefined,
hostname: 'rslt.duresult.in',
port: null,
nativeProtocols: [Object],
pathname: '/Students/Combine_GradeCard.aspx' },
_ended: true,
_ending: true,
_redirectCount: 0,
_redirects: [],
_requestBodyLength: 0,
_requestBodyBuffers: [],
_onNativeResponse: [Function],
_currentRequest:
ClientRequest {
_events: [Object],
_eventsCount: 7,
_maxListeners: undefined,
output: [],
outputEncodings: [],
outputCallbacks: [],
outputSize: 0,
writable: true,
_last: true,
chunkedEncoding: false,
shouldKeepAlive: false,
useChunkedEncodingByDefault: false,
sendDate: false,
_removedConnection: false,
_removedContLen: false,
_removedTE: false,
_contentLength: 0,
_hasBody: true,
_trailer: '',
finished: true,
_headerSent: true,
socket: [TLSSocket],
connection: [TLSSocket],
_header:
'GET /Students/Combine_GradeCard.aspx HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nUser-Agent: axios/0.20.0\r\nHost: rslt.duresult.in\r\nConnection: close\r\n\r\n',
_onPendingData: [Function: noopPendingOutput],
agent: [Agent],
socketPath: undefined,
timeout: undefined,
method: 'GET',
insecureHTTPParser: undefined,
path: '/Students/Combine_GradeCard.aspx',
_ended: false,
res: null,
aborted: undefined,
timeoutCb: null,
upgradeOrConnect: false,
parser: null,
maxHeadersCount: null,
_redirectable: [Circular],
[Symbol(isCorked)]: false,
[Symbol(outHeadersKey)]: [Object] },
_currentUrl: 'https://rslt.duresult.in/Students/Combine_GradeCard.aspx' },
response: undefined,
isAxiosError: true,
toJSON: [Function: toJSON] }
undefined
2020-09-17T03:09:39.619Z
Grade
ASP.NET_SessionId=vjkssl55pm0sqr553bskkgug
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-09-17T03:09:43.016Z
Marks
ASP.NET_SessionId=wqymfa3ve1v2m0y3gidmgb55
{ '18': [], '19': [] }
{ '18': [], '19': [] }
2020-10-19T06:27:40.975Z
Grade
ASP.NET_SessionId=ezh13lfirsu2b545fuad1a45
{ '17':
[ '507',
'512',
'519',
'522',
'531',
'551',
'553',
'554',
'555',
'562',
'564',
'566' ],
'18': [ '560' ],
'19':
[ '551',
'560',
'701',
'706',
'714',
'718',
'721',
'724',
'726',
'729',
'730',
'740',
'741',
'746',
'749',
'760',
'761',
'774' ] }
17 507 047
17 507 085
17 512 204
17 519 204
17 522 029
17 531 204
17 551 025
17 553 079
17 553 066
17 553 030
17 553 071
17 553 019
17 553 014
17 554 001
17 554 009
17 554 066
17 555 079
17 562 009
17 562 066
17 564 024
17 564 058
17 564 009
17 564 066
17 564 030
17 564 081
17 566 009
18 560 058
18 560 025
19 551 025
19 560 058
19 560 025
19 701 211
19 706 228
19 714 029
19 714 047
19 714 056
19 714 014
19 718 029
19 721 056
Error at 19 724 039
Error at 19 724 048
Error at 19 724 034
Error at 19 724 029
Error at 19 724 033
Error at 19 724 026
Error at 19 724 003
Error at 19 724 044
Error at 19 724 053
Error at 19 724 031
Error at 19 724 036
Error at 19 724 075
Error at 19 724 062
Error at 19 724 071
Error at 19 724 019
Error at 19 724 014
Error at 19 724 040
Error at 19 724 056
Error at 19 724 085
Error at 19 724 024
Error at 19 724 068
Error at 19 724 043
19 726 044
19 726 069
19 726 068
19 729 233
19 730 230
19 740 047
19 740 025
19 740 306
19 741 249
19 746 001
19 746 047
19 746 056
19 746 085
19 746 025
19 746 024
19 746 068
19 746 036
19 746 079
19 746 080
19 746 026
19 746 306
19 749 251
19 760 253
19 761 056
19 761 025
19 761 036
19 761 080
19 761 029
19 761 236
19 761 026
19 774 056
19 774 085
19 774 025
19 774 003
19 774 055
19 774 068
19 774 048
19 774 064
19 774 053
19 774 019
19 774 072
19 774 069
19 774 241
19 774 026
19 774 078
19 774 031
{ '17':
[ '507',
'512',
'519',
'522',
'531',
'551',
'553',
'554',
'555',
'562',
'564',
'566' ],
'18': [ '560' ],
'19':
[ '551',
'560',
'701',
'706',
'714',
'718',
'721',
'726',
'729',
'730',
'740',
'741',
'746',
'749',
'760',
'761',
'774' ] }
Grade 17 507 047
Grade 17 507 085
Grade 17 512 204
Grade 17 519 204
Grade 17 522 029
Grade 17 531 204
Grade 17 551 025
Grade 17 553 079
Grade 17 553 066
Grade 17 553 030
Grade 17 553 071
Grade 17 553 019
Grade 17 553 014
Grade 17 554 001
Grade 17 554 009
Grade 17 554 066
Grade 17 555 079
Grade 17 562 009
Grade 17 562 066
Grade 17 564 024
Grade 17 564 058
Grade 17 564 009
Grade 17 564 066
Grade 17 564 030
Grade 17 564 081
Grade 17 566 009
Grade 18 560 058
Grade 18 560 025
Grade 19 551 025
Grade 19 560 058
Grade 19 560 025
Grade 19 701 211
Grade 19 706 228
Grade 19 714 029
Grade 19 714 047