-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvsftpdbak.log
More file actions
2512 lines (2512 loc) · 255 KB
/
vsftpdbak.log
File metadata and controls
2512 lines (2512 loc) · 255 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
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
Sat Apr 2 10:49:58 2022 [pid 2472] CONNECT: Client "::1"
Sat Apr 2 10:49:58 2022 [pid 2472] FTP response: Client "::1", "220 (vsFTPd 3.0.3)"
Sat Apr 2 10:50:03 2022 [pid 2472] FTP command: Client "::1", "USER rickybk"
Sat Apr 2 10:50:03 2022 [pid 2472] [rickybk] FTP response: Client "::1", "331 Please specify the password."
Sat Apr 2 10:50:05 2022 [pid 2472] [rickybk] FTP command: Client "::1", "PASS <password>"
Sat Apr 2 10:50:05 2022 [pid 2471] [rickybk] OK LOGIN: Client "::1"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", "230 Login successful."
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP command: Client "::1", "SYST"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", "215 UNIX Type: L8"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP command: Client "::1", "FEAT"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", "211-Features:"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " EPRT
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " EPSV
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " MDTM
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " PASV
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " REST STREAM
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " SIZE
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " TVFS
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", " UTF8
"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", "211 End"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP command: Client "::1", "PWD"
Sat Apr 2 10:50:05 2022 [pid 2473] [rickybk] FTP response: Client "::1", "257 "/home/rickybk" is the current directory"
Sat Apr 2 10:50:07 2022 [pid 2473] [rickybk] FTP command: Client "::1", "EPSV"
Sat Apr 2 10:50:07 2022 [pid 2473] [rickybk] FTP response: Client "::1", "229 Entering Extended Passive Mode (|||30043|)"
Sat Apr 2 10:50:07 2022 [pid 2473] [rickybk] FTP command: Client "::1", "LIST"
Sat Apr 2 10:50:07 2022 [pid 2473] [rickybk] FTP response: Client "::1", "150 Here comes the directory listing."
Sat Apr 2 10:50:07 2022 [pid 2473] [rickybk] FTP response: Client "::1", "226 Directory send OK."
Sat Apr 2 10:50:11 2022 [pid 2473] [rickybk] FTP command: Client "::1", "QUIT"
Sat Apr 2 10:50:11 2022 [pid 2473] [rickybk] FTP response: Client "::1", "221 Goodbye."
Sat Apr 2 10:52:03 2022 [pid 2691] CONNECT: Client "::ffff:192.168.100.83"
Sat Apr 2 10:52:03 2022 [pid 2691] FTP response: Client "::ffff:192.168.100.83", "220 (vsFTPd 3.0.3)"
Sat Apr 2 10:52:03 2022 [pid 2691] FTP command: Client "::ffff:192.168.100.83", "USER rickybk"
Sat Apr 2 10:52:03 2022 [pid 2691] [rickybk] FTP response: Client "::ffff:192.168.100.83", "331 Please specify the password."
Sat Apr 2 10:52:03 2022 [pid 2691] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASS <password>"
Sat Apr 2 10:52:03 2022 [pid 2690] [rickybk] OK LOGIN: Client "::ffff:192.168.100.83"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "230 Login successful."
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PWD"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "257 "/home/rickybk" is the current directory"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "SYST"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "215 UNIX Type: L8"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,113,117,105)."
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat Apr 2 10:52:03 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk/Documents"
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,113,117,143)."
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat Apr 2 10:52:17 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,113,117,131)."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk/Desktop"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,113,117,49)."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat Apr 2 10:52:18 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,113,117,104)."
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat Apr 2 10:52:20 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk/Downloads"
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,113,117,103)."
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat Apr 2 10:52:22 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,113,117,131)."
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat Apr 2 10:52:23 2022 [pid 2692] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat Apr 2 10:53:54 2022 vsftpd [pid 2692]: "rickybk" from "::ffff:192.168.100.83": vsf_sysutil_recv_peekSun Apr 3 17:10:11 2022 [pid 2445] CONNECT: Client "::1"
Sun Apr 3 17:10:11 2022 [pid 2445] FTP response: Client "::1", "220 (vsFTPd 3.0.3)"
Sun Apr 3 17:10:14 2022 [pid 2445] FTP command: Client "::1", "USER rickybk"
Sun Apr 3 17:10:14 2022 [pid 2445] [rickybk] FTP response: Client "::1", "331 Please specify the password."
Sun Apr 3 17:10:16 2022 [pid 2445] [rickybk] FTP command: Client "::1", "PASS <password>"
Sun Apr 3 17:10:19 2022 [pid 2444] [rickybk] FAIL LOGIN: Client "::1"
Sun Apr 3 17:10:20 2022 [pid 2445] [rickybk] FTP response: Client "::1", "530 Login incorrect."
Sun Apr 3 17:10:44 2022 [pid 2445] FTP command: Client "::1", "QUIT"
Sun Apr 3 17:10:44 2022 [pid 2445] FTP response: Client "::1", "221 Goodbye."
Sun Apr 3 17:10:53 2022 [pid 2451] CONNECT: Client "::1"
Sun Apr 3 17:10:53 2022 [pid 2451] FTP response: Client "::1", "220 (vsFTPd 3.0.3)"
Sun Apr 3 17:10:56 2022 [pid 2451] FTP command: Client "::1", "USER rickybk"
Sun Apr 3 17:10:56 2022 [pid 2451] [rickybk] FTP response: Client "::1", "331 Please specify the password."
Sun Apr 3 17:10:58 2022 [pid 2451] [rickybk] FTP command: Client "::1", "PASS <password>"
Sun Apr 3 17:10:58 2022 [pid 2450] [rickybk] OK LOGIN: Client "::1"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", "230 Login successful."
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP command: Client "::1", "SYST"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", "215 UNIX Type: L8"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP command: Client "::1", "FEAT"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", "211-Features:"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " EPRT
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " EPSV
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " MDTM
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " PASV
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " REST STREAM
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " SIZE
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " TVFS
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", " UTF8
"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", "211 End"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP command: Client "::1", "PWD"
Sun Apr 3 17:10:58 2022 [pid 2452] [rickybk] FTP response: Client "::1", "257 "/home/rickybk" is the current directory"
Sun Apr 3 17:11:07 2022 [pid 2452] [rickybk] FTP command: Client "::1", "QUIT"
Sun Apr 3 17:11:07 2022 [pid 2452] [rickybk] FTP response: Client "::1", "221 Goodbye."
Sun Apr 3 17:23:24 2022 [pid 4213] CONNECT: Client "::ffff:192.168.100.2"
Sun Apr 3 17:23:24 2022 [pid 4213] FTP response: Client "::ffff:192.168.100.2", "220 (vsFTPd 3.0.3)"
Sun Apr 3 17:23:24 2022 [pid 4213] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun Apr 3 17:23:24 2022 [pid 4213] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun Apr 3 17:23:31 2022 [pid 4213] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sun Apr 3 17:23:31 2022 [pid 4213] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun Apr 3 17:23:33 2022 [pid 4213] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sun Apr 3 17:23:33 2022 [pid 4212] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sun Apr 3 17:23:33 2022 [pid 4214] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sun Apr 3 17:23:35 2022 [pid 4214] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,207,35"
Sun Apr 3 17:23:35 2022 [pid 4214] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sun Apr 3 17:23:35 2022 [pid 4214] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sun Apr 3 17:23:42 2022 [pid 4214] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sun Apr 3 17:23:42 2022 [pid 4214] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sun Apr 3 17:28:42 2022 [pid 4214] [rickybk] FTP response: Client "::ffff:192.168.100.2", "421 Timeout."
Sun Apr 3 17:44:50 2022 [pid 4253] CONNECT: Client "::ffff:192.168.100.83"
Sun Apr 3 17:44:50 2022 [pid 4253] FTP response: Client "::ffff:192.168.100.83", "220 (vsFTPd 3.0.3)"
Sun Apr 3 17:44:50 2022 [pid 4253] FTP command: Client "::ffff:192.168.100.83", "USER rickybk"
Sun Apr 3 17:44:50 2022 [pid 4253] [rickybk] FTP response: Client "::ffff:192.168.100.83", "331 Please specify the password."
Sun Apr 3 17:44:50 2022 [pid 4253] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASS <password>"
Sun Apr 3 17:44:50 2022 [pid 4252] [rickybk] OK LOGIN: Client "::ffff:192.168.100.83"
Sun Apr 3 17:44:50 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "230 Login successful."
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PWD"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "257 "/home/rickybk" is the current directory"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "SYST"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "215 UNIX Type: L8"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,20,117,96)."
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sun Apr 3 17:44:51 2022 [pid 4254] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sun Apr 3 17:46:28 2022 vsftpd [pid 4254]: "rickybk" from "::ffff:192.168.100.83": vsf_sysutil_recv_peekSun Apr 3 17:58:13 2022 [pid 4280] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 17:58:13 2022 [pid 4280] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 17:58:13 2022 [pid 4280] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 17:58:13 2022 [pid 4280] FTP response: Client "::ffff:192.168.100.21", "530 Please login with USER and PASS."
Sun Apr 3 17:58:13 2022 [pid 4280] FTP command: Client "::ffff:192.168.100.21", "QUIT"
Sun Apr 3 17:58:13 2022 [pid 4280] FTP response: Client "::ffff:192.168.100.21", "221 Goodbye."
Sun Apr 3 17:58:13 2022 vsftpd [pid 4279]: "" from "::ffff:192.168.100.21": priv_sock_get_cmdSun Apr 3 17:58:20 2022 [pid 4284] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 17:58:20 2022 [pid 4284] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 17:58:23 2022 [pid 4284] FTP command: Client "::ffff:192.168.100.21", "USER rickybk"
Sun Apr 3 17:58:23 2022 [pid 4284] [rickybk] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 17:58:26 2022 [pid 4284] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 17:58:26 2022 [pid 4283] [rickybk] OK LOGIN: Client "::ffff:192.168.100.21"
Sun Apr 3 17:58:26 2022 [pid 4285] [rickybk] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 17:58:26 2022 [pid 4285] [rickybk] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 17:58:26 2022 [pid 4285] [rickybk] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 17:58:28 2022 [pid 4285] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 17:58:28 2022 [pid 4285] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,73)."
Sun Apr 3 17:58:28 2022 [pid 4285] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 17:58:28 2022 [pid 4285] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 17:58:28 2022 [pid 4285] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 18:03:28 2022 [pid 4285] [rickybk] FTP response: Client "::ffff:192.168.100.21", "421 Timeout."
Sun Apr 3 18:04:43 2022 [pid 4320] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 18:04:43 2022 [pid 4320] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 18:04:47 2022 [pid 4320] FTP command: Client "::ffff:192.168.100.21", "USER rickybk"
Sun Apr 3 18:04:47 2022 [pid 4320] [rickybk] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 18:04:49 2022 [pid 4320] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 18:04:49 2022 [pid 4319] [rickybk] OK LOGIN: Client "::ffff:192.168.100.21"
Sun Apr 3 18:04:49 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 18:04:49 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 18:04:49 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 18:04:51 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 18:04:51 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,144)."
Sun Apr 3 18:04:51 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 18:04:51 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 18:04:51 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 18:04:54 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "CWD Downloads/"
Sun Apr 3 18:04:54 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "250 Directory successfully changed."
Sun Apr 3 18:04:55 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 18:04:55 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,99)."
Sun Apr 3 18:04:55 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 18:04:55 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 18:04:55 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 18:05:18 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 18:05:18 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,72)."
Sun Apr 3 18:05:18 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 18:05:18 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 18:05:18 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 18:05:19 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PWD"
Sun Apr 3 18:05:19 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "257 "/home/rickybk/Downloads" is the current directory"
Sun Apr 3 18:05:22 2022 [pid 4321] [rickybk] FTP command: Client "::ffff:192.168.100.21", "QUIT"
Sun Apr 3 18:05:22 2022 [pid 4321] [rickybk] FTP response: Client "::ffff:192.168.100.21", "221 Goodbye."
Sun Apr 3 18:07:22 2022 [pid 4323] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 18:07:22 2022 [pid 4323] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 18:07:25 2022 [pid 4323] FTP command: Client "::ffff:192.168.100.21", "USER rickybk"
Sun Apr 3 18:07:25 2022 [pid 4323] [rickybk] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 18:07:27 2022 [pid 4323] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 18:07:27 2022 [pid 4322] [rickybk] OK LOGIN: Client "::ffff:192.168.100.21"
Sun Apr 3 18:07:27 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 18:07:27 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 18:07:27 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 18:07:29 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 18:07:29 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,91)."
Sun Apr 3 18:07:29 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 18:07:29 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 18:07:29 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 18:07:38 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "CWD Downloads"
Sun Apr 3 18:07:38 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "250 Directory successfully changed."
Sun Apr 3 18:07:39 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 18:07:39 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,99)."
Sun Apr 3 18:07:39 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 18:07:39 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 18:07:39 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "TYPE I"
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "200 Switching to Binary mode."
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,68)."
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "RETR borrame"
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Opening BINARY mode data connection for borrame (0 bytes)."
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] OK DOWNLOAD: Client "::ffff:192.168.100.21", "/home/rickybk/Downloads/borrame", 0.00Kbyte/sec
Sun Apr 3 18:07:43 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Transfer complete."
Sun Apr 3 18:07:48 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "TYPE A"
Sun Apr 3 18:07:48 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "200 Switching to ASCII mode."
Sun Apr 3 18:07:48 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 18:07:48 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,128)."
Sun Apr 3 18:07:48 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 18:07:48 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 18:07:48 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 18:10:13 2022 [pid 4338] CONNECT: Client "::ffff:192.168.100.2"
Sun Apr 3 18:10:13 2022 [pid 4338] FTP response: Client "::ffff:192.168.100.2", "220 (vsFTPd 3.0.3)"
Sun Apr 3 18:10:13 2022 [pid 4338] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun Apr 3 18:10:13 2022 [pid 4338] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun Apr 3 18:10:15 2022 [pid 4338] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sun Apr 3 18:10:15 2022 [pid 4338] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun Apr 3 18:10:18 2022 [pid 4338] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sun Apr 3 18:10:18 2022 [pid 4337] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sun Apr 3 18:10:18 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sun Apr 3 18:10:20 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,212,102"
Sun Apr 3 18:10:20 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sun Apr 3 18:10:20 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sun Apr 3 18:10:20 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sun Apr 3 18:10:20 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sun Apr 3 18:10:24 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "CWD Downloads"
Sun Apr 3 18:10:24 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "250 Directory successfully changed."
Sun Apr 3 18:10:25 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,212,103"
Sun Apr 3 18:10:25 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sun Apr 3 18:10:25 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sun Apr 3 18:10:25 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sun Apr 3 18:10:25 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sun Apr 3 18:10:31 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,212,104"
Sun Apr 3 18:10:31 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sun Apr 3 18:10:31 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "RETR borrame"
Sun Apr 3 18:10:31 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Opening BINARY mode data connection for borrame (0 bytes)."
Sun Apr 3 18:10:31 2022 [pid 4340] [rickybk] OK DOWNLOAD: Client "::ffff:192.168.100.2", "/home/rickybk/Downloads/borrame", 0.00Kbyte/sec
Sun Apr 3 18:10:31 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Transfer complete."
Sun Apr 3 18:11:01 2022 [pid 4340] [rickybk] FTP command: Client "::ffff:192.168.100.2", "QUIT"
Sun Apr 3 18:11:01 2022 [pid 4340] [rickybk] FTP response: Client "::ffff:192.168.100.2", "221 Goodbye."
Sun Apr 3 18:11:08 2022 [pid 4324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "QUIT"
Sun Apr 3 18:11:08 2022 [pid 4324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "221 Goodbye."
Sun Apr 3 19:38:49 2022 [pid 2166] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 19:38:49 2022 [pid 2166] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 19:38:52 2022 [pid 2166] FTP command: Client "::ffff:192.168.100.21", "USER rickybk"
Sun Apr 3 19:38:52 2022 [pid 2166] [rickybk] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 19:38:59 2022 [pid 2166] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 19:38:59 2022 [pid 2165] [rickybk] OK LOGIN: Client "::ffff:192.168.100.21"
Sun Apr 3 19:38:59 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 19:38:59 2022 [pid 2167] [rickybk] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 19:38:59 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 19:39:01 2022 [pid 2167] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 19:39:01 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,107)."
Sun Apr 3 19:39:01 2022 [pid 2167] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 19:39:01 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 19:39:01 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 19:39:07 2022 [pid 2167] [rickybk] FTP command: Client "::ffff:192.168.100.21", "CWD Downloads/"
Sun Apr 3 19:39:07 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "250 Directory successfully changed."
Sun Apr 3 19:39:08 2022 [pid 2167] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 19:39:08 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,62)."
Sun Apr 3 19:39:08 2022 [pid 2167] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 19:39:08 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 19:39:08 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 19:39:14 2022 [pid 2167] [rickybk] FTP command: Client "::ffff:192.168.100.21", "MKD borrame"
Sun Apr 3 19:39:14 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "550 Permission denied."
Sun Apr 3 19:44:14 2022 [pid 2167] [rickybk] FTP response: Client "::ffff:192.168.100.21", "421 Timeout."
Sun Apr 3 20:36:07 2022 [pid 2322] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 20:36:07 2022 [pid 2322] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 20:36:10 2022 [pid 2322] FTP command: Client "::ffff:192.168.100.21", "USER rickybk"
Sun Apr 3 20:36:10 2022 [pid 2322] [rickybk] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 20:36:13 2022 [pid 2322] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 20:36:13 2022 [pid 2321] [rickybk] OK LOGIN: Client "::ffff:192.168.100.21"
Sun Apr 3 20:36:13 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 20:36:13 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 20:36:13 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 20:36:14 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 20:36:14 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,69)."
Sun Apr 3 20:36:14 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 20:36:14 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 20:36:14 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 20:36:17 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "CWD Downloads/"
Sun Apr 3 20:36:17 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "250 Directory successfully changed."
Sun Apr 3 20:36:19 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 20:36:19 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,108)."
Sun Apr 3 20:36:19 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 20:36:19 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 20:36:19 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 20:36:23 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "MKD borrame"
Sun Apr 3 20:36:23 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "550 Create directory operation failed."
Sun Apr 3 20:36:23 2022 [pid 2324] [rickybk] FAIL MKDIR: Client "::ffff:192.168.100.21", "/home/rickybk/Downloads/borrame"
Sun Apr 3 20:36:27 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 20:36:27 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,83)."
Sun Apr 3 20:36:27 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 20:36:27 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 20:36:27 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 20:39:16 2022 [pid 2324] [rickybk] FTP command: Client "::ffff:192.168.100.21", "QUIT"
Sun Apr 3 20:39:16 2022 [pid 2324] [rickybk] FTP response: Client "::ffff:192.168.100.21", "221 Goodbye."
Sun Apr 3 20:39:23 2022 [pid 2329] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 20:39:23 2022 [pid 2329] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 20:39:26 2022 [pid 2329] FTP command: Client "::ffff:192.168.100.21", "USER rickybk"
Sun Apr 3 20:39:26 2022 [pid 2329] [rickybk] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 20:39:29 2022 [pid 2329] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 20:39:29 2022 [pid 2328] [rickybk] OK LOGIN: Client "::ffff:192.168.100.21"
Sun Apr 3 20:39:29 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 20:39:29 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 20:39:29 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 20:39:32 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 20:39:32 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,118)."
Sun Apr 3 20:39:32 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 20:39:32 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 20:39:32 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 20:39:46 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "CWD Downloads/"
Sun Apr 3 20:39:46 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "250 Directory successfully changed."
Sun Apr 3 20:39:47 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 20:39:47 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,145)."
Sun Apr 3 20:39:47 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 20:39:47 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 20:39:47 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 20:39:57 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "MKD borrame2"
Sun Apr 3 20:39:57 2022 [pid 2330] [rickybk] OK MKDIR: Client "::ffff:192.168.100.21", "/home/rickybk/Downloads/borrame2"
Sun Apr 3 20:39:57 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "257 "/home/rickybk/Downloads/borrame2" created"
Sun Apr 3 20:39:59 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 20:39:59 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,69)."
Sun Apr 3 20:39:59 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 20:39:59 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 20:39:59 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 20:42:22 2022 [pid 2330] [rickybk] FTP command: Client "::ffff:192.168.100.21", "QUIT"
Sun Apr 3 20:42:22 2022 [pid 2330] [rickybk] FTP response: Client "::ffff:192.168.100.21", "221 Goodbye."
Sun Apr 3 20:42:27 2022 [pid 2334] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 20:42:27 2022 [pid 2334] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 20:42:36 2022 [pid 2334] FTP command: Client "::ffff:192.168.100.21", "USER rickybk"
Sun Apr 3 20:42:36 2022 [pid 2334] [rickybk] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 20:42:38 2022 [pid 2334] [rickybk] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 20:42:38 2022 [pid 2333] [rickybk] OK LOGIN: Client "::ffff:192.168.100.21"
Sun Apr 3 20:42:38 2022 [pid 2335] [rickybk] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 20:42:38 2022 [pid 2335] [rickybk] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 20:42:38 2022 [pid 2335] [rickybk] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 20:47:38 2022 [pid 2335] [rickybk] FTP response: Client "::ffff:192.168.100.21", "421 Timeout."
Sun Apr 3 21:36:44 2022 [pid 2449] CONNECT: Client "::ffff:192.168.100.21"
Sun Apr 3 21:36:44 2022 [pid 2449] FTP response: Client "::ffff:192.168.100.21", "220 (vsFTPd 3.0.3)"
Sun Apr 3 21:36:47 2022 [pid 2449] FTP command: Client "::ffff:192.168.100.21", "USER anonymous"
Sun Apr 3 21:36:47 2022 [pid 2449] [anonymous] FTP response: Client "::ffff:192.168.100.21", "331 Please specify the password."
Sun Apr 3 21:36:48 2022 [pid 2449] [anonymous] FTP command: Client "::ffff:192.168.100.21", "PASS <password>"
Sun Apr 3 21:36:48 2022 [pid 2448] [ftp] OK LOGIN: Client "::ffff:192.168.100.21", anon password "?"
Sun Apr 3 21:36:48 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "230 Login successful."
Sun Apr 3 21:36:48 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "SYST"
Sun Apr 3 21:36:48 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "215 UNIX Type: L8"
Sun Apr 3 21:36:50 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 21:36:50 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,140)."
Sun Apr 3 21:36:50 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 21:36:50 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 21:36:50 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 21:36:54 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 21:36:54 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,103)."
Sun Apr 3 21:36:54 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 21:36:54 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 21:36:54 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 21:36:56 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "PWD"
Sun Apr 3 21:36:56 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "257 "/" is the current directory"
Sun Apr 3 21:37:17 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "PASV"
Sun Apr 3 21:37:17 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "227 Entering Passive Mode (192,168,100,20,117,109)."
Sun Apr 3 21:37:17 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "LIST"
Sun Apr 3 21:37:17 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "150 Here comes the directory listing."
Sun Apr 3 21:37:17 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "226 Directory send OK."
Sun Apr 3 21:37:29 2022 [pid 2450] [ftp] FTP command: Client "::ffff:192.168.100.21", "QUIT"
Sun Apr 3 21:37:29 2022 [pid 2450] [ftp] FTP response: Client "::ffff:192.168.100.21", "221 Goodbye."
Sun Apr 3 22:05:41 2022 [pid 2517] CONNECT: Client "::ffff:192.168.100.83"
Sun Apr 3 22:05:41 2022 [pid 2517] FTP response: Client "::ffff:192.168.100.83", "220 (vsFTPd 3.0.3)"
Sun Apr 3 22:05:41 2022 [pid 2517] FTP command: Client "::ffff:192.168.100.83", "USER rickybk"
Sun Apr 3 22:05:41 2022 [pid 2517] [rickybk] FTP response: Client "::ffff:192.168.100.83", "331 Please specify the password."
Sun Apr 3 22:05:41 2022 [pid 2517] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASS <password>"
Sun Apr 3 22:05:41 2022 [pid 2516] [rickybk] OK LOGIN: Client "::ffff:192.168.100.83"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "230 Login successful."
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PWD"
Sun Apr 3 22:05:41 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "257 "/home/rickybk" is the current directory"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "SYST"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "215 UNIX Type: L8"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,20,117,89)."
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sun Apr 3 22:05:42 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk/Downloads"
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,20,117,94)."
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sun Apr 3 22:05:47 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "TYPE I"
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 Switching to Binary mode."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk/Downloads"
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,20,117,144)."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,20,117,97)."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP command: Client "::ffff:192.168.100.83", "STOR DBIZ4BBupE.png"
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Ok to send data."
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] OK UPLOAD: Client "::ffff:192.168.100.83", "/home/rickybk/Downloads/DBIZ4BBupE.png", 978978 bytes, 5348.32Kbyte/sec
Sun Apr 3 22:06:05 2022 [pid 2518] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Transfer complete."
Sun Apr 3 22:07:40 2022 vsftpd [pid 2518]: "rickybk" from "::ffff:192.168.100.83": vsf_sysutil_recv_peekSun Apr 3 22:11:15 2022 [pid 2563] CONNECT: Client "::ffff:192.168.100.2"
Sun Apr 3 22:11:15 2022 [pid 2563] FTP response: Client "::ffff:192.168.100.2", "220 (vsFTPd 3.0.3)"
Sun Apr 3 22:11:15 2022 [pid 2563] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun Apr 3 22:11:15 2022 [pid 2563] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun Apr 3 22:12:36 2022 [pid 2563] FTP command: Client "::ffff:192.168.100.2", "USER anonymous"
Sun Apr 3 22:12:36 2022 [pid 2563] [anonymous] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun Apr 3 22:12:36 2022 [pid 2563] [anonymous] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sun Apr 3 22:12:36 2022 [pid 2562] [ftp] OK LOGIN: Client "::ffff:192.168.100.2", anon password "?"
Sun Apr 3 22:12:36 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sun Apr 3 22:12:40 2022 [pid 2567] [ftp] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,225,80"
Sun Apr 3 22:12:40 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sun Apr 3 22:12:40 2022 [pid 2567] [ftp] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sun Apr 3 22:12:40 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sun Apr 3 22:12:40 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sun Apr 3 22:12:45 2022 [pid 2567] [ftp] FTP command: Client "::ffff:192.168.100.2", "XPWD"
Sun Apr 3 22:12:45 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "257 "/" is the current directory"
Sun Apr 3 22:12:48 2022 [pid 2567] [ftp] FTP command: Client "::ffff:192.168.100.2", "CWD .."
Sun Apr 3 22:12:48 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "250 Directory successfully changed."
Sun Apr 3 22:12:49 2022 [pid 2567] [ftp] FTP command: Client "::ffff:192.168.100.2", "XPWD"
Sun Apr 3 22:12:49 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "257 "/" is the current directory"
Sun Apr 3 22:12:51 2022 [pid 2567] [ftp] FTP command: Client "::ffff:192.168.100.2", "QUIT"
Sun Apr 3 22:12:51 2022 [pid 2567] [ftp] FTP response: Client "::ffff:192.168.100.2", "221 Goodbye."
Sun Apr 3 22:12:53 2022 [pid 2570] CONNECT: Client "::ffff:192.168.100.2"
Sun Apr 3 22:12:53 2022 [pid 2570] FTP response: Client "::ffff:192.168.100.2", "220 (vsFTPd 3.0.3)"
Sun Apr 3 22:12:53 2022 [pid 2570] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun Apr 3 22:12:53 2022 [pid 2570] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun Apr 3 22:13:00 2022 [pid 2570] FTP command: Client "::ffff:192.168.100.2", "USER quit"
Sun Apr 3 22:13:00 2022 [pid 2570] [quit] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun Apr 3 22:13:02 2022 [pid 2570] [quit] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sun Apr 3 22:13:03 2022 [pid 2569] [quit] FAIL LOGIN: Client "::ffff:192.168.100.2"
Sun Apr 3 22:13:04 2022 [pid 2570] [quit] FTP response: Client "::ffff:192.168.100.2", "530 Login incorrect."
Sun Apr 3 22:13:04 2022 vsftpd [pid 2570]: "quit" from "::ffff:192.168.100.2": ftp_writeSun Apr 3 22:13:15 2022 [pid 2582] CONNECT: Client "::ffff:192.168.100.2"
Sun Apr 3 22:13:15 2022 [pid 2582] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sun Apr 3 22:13:15 2022 [pid 2582] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun Apr 3 22:13:15 2022 [pid 2582] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun Apr 3 22:13:20 2022 [pid 2582] FTP command: Client "::ffff:192.168.100.2", "USER"
Sun Apr 3 22:13:20 2022 [pid 2582] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun Apr 3 22:13:20 2022 vsftpd [pid 2582]: "" from "::ffff:192.168.100.2": vsf_sysutil_recv_peekSun Apr 3 22:13:20 2022 vsftpd [pid 2581]: "" from "::ffff:192.168.100.2": priv_sock_get_cmdSun Apr 3 22:13:42 2022 [pid 2596] CONNECT: Client "::ffff:192.168.100.2"
Sun Apr 3 22:13:42 2022 [pid 2596] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sun Apr 3 22:13:42 2022 [pid 2596] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun Apr 3 22:13:42 2022 [pid 2596] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun Apr 3 22:13:47 2022 [pid 2596] FTP command: Client "::ffff:192.168.100.2", "USER anonymous"
Sun Apr 3 22:13:47 2022 [pid 2596] [anonymous] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun Apr 3 22:13:47 2022 [pid 2596] [anonymous] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sun Apr 3 22:13:49 2022 [pid 2595] [anonymous] FAIL LOGIN: Client "::ffff:192.168.100.2"
Sun Apr 3 22:13:50 2022 [pid 2596] [anonymous] FTP response: Client "::ffff:192.168.100.2", "530 Login incorrect."
Sun Apr 3 22:18:50 2022 [pid 2596] FTP response: Client "::ffff:192.168.100.2", "421 Timeout."
Wed Apr 13 19:08:36 2022 [pid 2601] CONNECT: Client "::ffff:192.168.100.83"
Wed Apr 13 19:08:36 2022 [pid 2601] FTP response: Client "::ffff:192.168.100.83", "220 Welcome to OpenSuse15 FTP service."
Wed Apr 13 19:08:36 2022 [pid 2601] FTP command: Client "::ffff:192.168.100.83", "USER rickybk"
Wed Apr 13 19:08:36 2022 [pid 2601] [rickybk] FTP response: Client "::ffff:192.168.100.83", "331 Please specify the password."
Wed Apr 13 19:08:36 2022 [pid 2601] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASS <password>"
Wed Apr 13 19:08:36 2022 [pid 2600] [rickybk] OK LOGIN: Client "::ffff:192.168.100.83"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "230 Login successful."
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PWD"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "257 "/home/rickybk" is the current directory"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "SYST"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "215 UNIX Type: L8"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,20,117,74)."
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Wed Apr 13 19:08:36 2022 [pid 2602] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Wed Apr 13 19:10:12 2022 vsftpd [pid 2602]: "rickybk" from "::ffff:192.168.100.83": vsf_sysutil_recv_peekSat May 7 19:11:27 2022 [pid 2260] CONNECT: Client "::1"
Sat May 7 19:11:27 2022 [pid 2260] FTP response: Client "::1", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 19:11:33 2022 [pid 2260] FTP command: Client "::1", "USER rickybk"
Sat May 7 19:11:33 2022 [pid 2260] [rickybk] FTP response: Client "::1", "331 Please specify the password."
Sat May 7 19:11:35 2022 [pid 2260] [rickybk] FTP command: Client "::1", "PASS <password>"
Sat May 7 19:11:36 2022 [pid 2259] [rickybk] OK LOGIN: Client "::1"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", "230 Login successful."
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP command: Client "::1", "SYST"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", "215 UNIX Type: L8"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP command: Client "::1", "FEAT"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", "211-Features:"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " EPRT
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " EPSV
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " MDTM
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " PASV
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " REST STREAM
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " SIZE
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " TVFS
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", " UTF8
"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", "211 End"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP command: Client "::1", "PWD"
Sat May 7 19:11:36 2022 [pid 2261] [rickybk] FTP response: Client "::1", "257 "/home/rickybk" is the current directory"
Sat May 7 19:11:38 2022 [pid 2261] [rickybk] FTP command: Client "::1", "QUIT"
Sat May 7 19:11:38 2022 [pid 2261] [rickybk] FTP response: Client "::1", "221 Goodbye."
Sat May 7 21:24:00 2022 [pid 2513] CONNECT: Client "::ffff:192.168.100.2"
Sat May 7 21:24:00 2022 [pid 2513] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:24:00 2022 [pid 2513] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sat May 7 21:24:00 2022 [pid 2513] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sat May 7 21:24:05 2022 [pid 2513] FTP command: Client "::ffff:192.168.100.2", "USER rickykb"
Sat May 7 21:24:05 2022 [pid 2513] [rickykb] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sat May 7 21:24:08 2022 [pid 2513] [rickykb] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sat May 7 21:24:10 2022 [pid 2515] CONNECT: Client "::ffff:192.168.100.2"
Sat May 7 21:24:10 2022 [pid 2515] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:24:10 2022 [pid 2515] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sat May 7 21:24:10 2022 [pid 2515] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sat May 7 21:24:10 2022 [pid 2512] [rickykb] FAIL LOGIN: Client "::ffff:192.168.100.2"
Sat May 7 21:24:11 2022 [pid 2513] [rickykb] FTP response: Client "::ffff:192.168.100.2", "530 Login incorrect."
Sat May 7 21:24:11 2022 vsftpd [pid 2513]: "rickykb" from "::ffff:192.168.100.2": ftp_writeSat May 7 21:24:16 2022 [pid 2515] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sat May 7 21:24:16 2022 [pid 2515] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sat May 7 21:24:19 2022 [pid 2515] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sat May 7 21:24:19 2022 [pid 2514] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sat May 7 21:24:19 2022 [pid 2517] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sat May 7 21:24:21 2022 [pid 2517] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,245,22"
Sat May 7 21:24:21 2022 [pid 2517] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sat May 7 21:24:21 2022 [pid 2517] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sat May 7 21:24:29 2022 [pid 2517] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sat May 7 21:24:29 2022 [pid 2517] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sat May 7 21:24:35 2022 [pid 2517] [rickybk] FTP command: Client "::ffff:192.168.100.2", "QUIT"
Sat May 7 21:24:35 2022 [pid 2517] [rickybk] FTP response: Client "::ffff:192.168.100.2", "221 Goodbye."
Sat May 7 21:26:22 2022 [pid 2519] CONNECT: Client "::ffff:192.168.100.83"
Sat May 7 21:26:22 2022 [pid 2519] FTP response: Client "::ffff:192.168.100.83", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:26:22 2022 [pid 2519] FTP command: Client "::ffff:192.168.100.83", "USER rickybk"
Sat May 7 21:26:22 2022 [pid 2519] [rickybk] FTP response: Client "::ffff:192.168.100.83", "331 Please specify the password."
Sat May 7 21:26:22 2022 [pid 2519] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASS <password>"
Sat May 7 21:26:22 2022 [pid 2518] [rickybk] OK LOGIN: Client "::ffff:192.168.100.83"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "230 Login successful."
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PWD"
Sat May 7 21:26:22 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "257 "/home/rickybk" is the current directory"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "NOOP"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "200 NOOP ok."
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "CWD /home/rickybk"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "250 Directory successfully changed."
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "FEAT"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211-Features:"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPRT
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " EPSV
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " MDTM
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " PASV
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " REST STREAM
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " SIZE
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " TVFS
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", " UTF8
"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "211 End"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "SYST"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "215 UNIX Type: L8"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "PASV"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "227 Entering Passive Mode (192,168,100,20,117,64)."
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP command: Client "::ffff:192.168.100.83", "LIST"
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "150 Here comes the directory listing."
Sat May 7 21:26:23 2022 [pid 2520] [rickybk] FTP response: Client "::ffff:192.168.100.83", "226 Directory send OK."
Sat May 7 21:27:59 2022 vsftpd [pid 2520]: "rickybk" from "::ffff:192.168.100.83": vsf_sysutil_recv_peekSat May 7 21:28:24 2022 [pid 2522] CONNECT: Client "::ffff:192.168.100.2"
Sat May 7 21:28:24 2022 [pid 2522] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:28:24 2022 [pid 2522] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sat May 7 21:28:24 2022 [pid 2522] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sat May 7 21:28:28 2022 [pid 2522] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sat May 7 21:28:28 2022 [pid 2521] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "SYST"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "215 UNIX Type: L8"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "FEAT"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "211-Features:"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " EPRT
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " EPSV
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " MDTM
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " PASV
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " REST STREAM
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " SIZE
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " TVFS
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " UTF8
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "211 End"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "HELP SITE"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "214-The following commands are recognized."
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " ABOR ACCT ALLO APPE CDUP CWD DELE EPRT EPSV FEAT HELP LIST MDTM MKD
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " MODE NLST NOOP OPTS PASS PASV PORT PWD QUIT REIN REST RETR RMD RNFR
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " RNTO SITE SIZE SMNT STAT STOR STOU STRU SYST TYPE USER XCUP XCWD XMKD
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", " XPWD XRMD
"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "214 Help OK."
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PWD"
Sat May 7 21:28:28 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "257 "/home/rickybk" is the current directory"
Sat May 7 21:28:29 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "TYPE A"
Sat May 7 21:28:29 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 Switching to ASCII mode."
Sat May 7 21:28:29 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,245,34"
Sat May 7 21:28:29 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sat May 7 21:28:29 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "LIST"
Sat May 7 21:28:32 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sat May 7 21:28:32 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sat May 7 21:29:07 2022 [pid 2523] [rickybk] FTP command: Client "::ffff:192.168.100.2", "QUIT"
Sat May 7 21:29:07 2022 [pid 2523] [rickybk] FTP response: Client "::ffff:192.168.100.2", "221 Goodbye."
Sat May 7 21:29:19 2022 [pid 2536] CONNECT: Client "::ffff:192.168.100.2"
Sat May 7 21:29:19 2022 [pid 2536] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:29:19 2022 [pid 2536] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sat May 7 21:29:19 2022 [pid 2536] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sat May 7 21:29:23 2022 [pid 2536] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sat May 7 21:29:23 2022 [pid 2535] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "SYST"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "215 UNIX Type: L8"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "FEAT"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "211-Features:"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " EPRT
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " EPSV
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " MDTM
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " PASV
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " REST STREAM
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " SIZE
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " TVFS
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " UTF8
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "211 End"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "HELP SITE"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "214-The following commands are recognized."
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " ABOR ACCT ALLO APPE CDUP CWD DELE EPRT EPSV FEAT HELP LIST MDTM MKD
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " MODE NLST NOOP OPTS PASS PASV PORT PWD QUIT REIN REST RETR RMD RNFR
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " RNTO SITE SIZE SMNT STAT STOR STOU STRU SYST TYPE USER XCUP XCWD XMKD
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", " XPWD XRMD
"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "214 Help OK."
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PWD"
Sat May 7 21:29:23 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "257 "/home/rickybk" is the current directory"
Sat May 7 21:29:24 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "TYPE A"
Sat May 7 21:29:24 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 Switching to ASCII mode."
Sat May 7 21:29:24 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,245,38"
Sat May 7 21:29:24 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sat May 7 21:29:24 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "LIST"
Sat May 7 21:29:24 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sat May 7 21:29:24 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sat May 7 21:30:10 2022 [pid 2537] [rickybk] FTP command: Client "::ffff:192.168.100.2", "QUIT"
Sat May 7 21:30:10 2022 [pid 2537] [rickybk] FTP response: Client "::ffff:192.168.100.2", "221 Goodbye."
Sat May 7 21:54:03 2022 [pid 2721] CONNECT: Client "::ffff:192.168.100.2"
Sat May 7 21:54:03 2022 [pid 2721] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:54:03 2022 [pid 2721] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sat May 7 21:54:03 2022 [pid 2721] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sat May 7 21:54:07 2022 [pid 2721] FTP command: Client "::ffff:192.168.100.2", "USER rickyk"
Sat May 7 21:54:07 2022 [pid 2721] [rickyk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sat May 7 21:54:09 2022 vsftpd [pid 2721]: "rickyk" from "::ffff:192.168.100.2": vsf_sysutil_recv_peekSat May 7 21:54:11 2022 [pid 2724] CONNECT: Client "::ffff:192.168.100.2"
Sat May 7 21:54:11 2022 [pid 2724] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:54:11 2022 [pid 2724] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sat May 7 21:54:11 2022 [pid 2724] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sat May 7 21:54:15 2022 [pid 2724] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sat May 7 21:54:15 2022 [pid 2724] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sat May 7 21:54:17 2022 [pid 2724] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sat May 7 21:54:17 2022 [pid 2723] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sat May 7 21:54:17 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sat May 7 21:54:18 2022 [pid 2725] [rickybk] FTP command: Client "::ffff:192.168.100.2", "XPWD"
Sat May 7 21:54:18 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "257 "/home/rickybk" is the current directory"
Sat May 7 21:54:30 2022 [pid 2725] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,245,216"
Sat May 7 21:54:30 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sat May 7 21:54:30 2022 [pid 2725] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sat May 7 21:54:30 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sat May 7 21:54:30 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sat May 7 21:54:35 2022 [pid 2725] [rickybk] FTP command: Client "::ffff:192.168.100.2", "CWD ftp"
Sat May 7 21:54:35 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "250 Directory successfully changed."
Sat May 7 21:54:36 2022 [pid 2725] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,245,217"
Sat May 7 21:54:36 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sat May 7 21:54:36 2022 [pid 2725] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sat May 7 21:54:36 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sat May 7 21:54:36 2022 [pid 2725] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sat May 7 21:56:44 2022 vsftpd [pid 2725]: "rickybk" from "::ffff:192.168.100.2": vsf_sysutil_recv_peekSat May 7 21:57:49 2022 [pid 2727] CONNECT: Client "::ffff:192.168.100.2"
Sat May 7 21:57:49 2022 [pid 2727] FTP response: Client "::ffff:192.168.100.2", "220 Welcome to OpenSuse15 FTP service."
Sat May 7 21:57:49 2022 [pid 2727] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sat May 7 21:57:49 2022 [pid 2727] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sat May 7 21:57:52 2022 [pid 2727] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sat May 7 21:57:52 2022 [pid 2727] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sat May 7 21:57:54 2022 [pid 2727] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sat May 7 21:57:54 2022 [pid 2726] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sat May 7 21:57:54 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sat May 7 21:57:57 2022 [pid 2728] [rickybk] FTP command: Client "::ffff:192.168.100.2", "XPWD"
Sat May 7 21:57:57 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "257 "/home/rickybk" is the current directory"
Sat May 7 21:58:01 2022 [pid 2728] [rickybk] FTP command: Client "::ffff:192.168.100.2", "CWD ftp"
Sat May 7 21:58:01 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "250 Directory successfully changed."
Sat May 7 21:58:02 2022 [pid 2728] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,246,12"
Sat May 7 21:58:02 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sat May 7 21:58:02 2022 [pid 2728] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sat May 7 21:58:02 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sat May 7 21:58:02 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sat May 7 21:58:34 2022 [pid 2728] [rickybk] FTP command: Client "::ffff:192.168.100.2", "XMKD test"
Sat May 7 21:58:34 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "550 Create directory operation failed."
Sat May 7 21:58:34 2022 [pid 2728] [rickybk] FAIL MKDIR: Client "::ffff:192.168.100.2", "/home/rickybk/ftp/test"
Sat May 7 22:03:34 2022 [pid 2728] [rickybk] FTP response: Client "::ffff:192.168.100.2", "421 Timeout."
Sun May 8 09:49:20 2022 [pid 33157] CONNECT: Client "::ffff:192.168.100.2"
Sun May 8 09:49:20 2022 [pid 33157] FTP response: Client "::ffff:192.168.100.2", "220 Bienvenido al servidor FTP OpenSuse ASO."
Sun May 8 09:49:20 2022 [pid 33157] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun May 8 09:49:20 2022 [pid 33157] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun May 8 09:49:27 2022 [pid 33157] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sun May 8 09:49:27 2022 [pid 33157] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun May 8 09:49:30 2022 [pid 33157] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sun May 8 09:49:30 2022 [pid 33156] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sun May 8 09:49:30 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."
Sun May 8 09:49:32 2022 [pid 33158] [rickybk] FTP command: Client "::ffff:192.168.100.2", "XPWD"
Sun May 8 09:49:32 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "257 "/home/rickybk" is the current directory"
Sun May 8 09:49:37 2022 [pid 33158] [rickybk] FTP command: Client "::ffff:192.168.100.2", "CWD ftp"
Sun May 8 09:49:37 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "250 Directory successfully changed."
Sun May 8 09:49:39 2022 [pid 33158] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PORT 192,168,100,2,219,80"
Sun May 8 09:49:39 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "200 PORT command successful. Consider using PASV."
Sun May 8 09:49:39 2022 [pid 33158] [rickybk] FTP command: Client "::ffff:192.168.100.2", "NLST"
Sun May 8 09:49:39 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "150 Here comes the directory listing."
Sun May 8 09:49:39 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "226 Directory send OK."
Sun May 8 09:50:01 2022 [pid 33158] [rickybk] FTP command: Client "::ffff:192.168.100.2", "XMKD test"
Sun May 8 09:50:01 2022 [pid 33158] [rickybk] OK MKDIR: Client "::ffff:192.168.100.2", "/home/rickybk/ftp/test"
Sun May 8 09:50:01 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "257 "/home/rickybk/ftp/test" created"
Sun May 8 09:50:04 2022 [pid 33158] [rickybk] FTP command: Client "::ffff:192.168.100.2", "CWD pdf"
Sun May 8 09:50:04 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "250 Directory successfully changed."
Sun May 8 09:50:07 2022 [pid 33158] [rickybk] FTP command: Client "::ffff:192.168.100.2", "XMKD test"
Sun May 8 09:50:07 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "550 Create directory operation failed."
Sun May 8 09:50:07 2022 [pid 33158] [rickybk] FAIL MKDIR: Client "::ffff:192.168.100.2", "/home/rickybk/ftp/pdf/test"
Sun May 8 09:55:07 2022 [pid 33158] [rickybk] FTP response: Client "::ffff:192.168.100.2", "421 Timeout."
Sun May 8 10:03:13 2022 [pid 33239] CONNECT: Client "::ffff:192.168.100.2"
Sun May 8 10:03:13 2022 [pid 33239] FTP response: Client "::ffff:192.168.100.2", "220 Bienvenido al servidor FTP OpenSuse ASO."
Sun May 8 10:03:13 2022 [pid 33239] FTP command: Client "::ffff:192.168.100.2", "OPTS UTF8 ON"
Sun May 8 10:03:13 2022 [pid 33239] FTP response: Client "::ffff:192.168.100.2", "200 Always in UTF8 mode."
Sun May 8 10:03:15 2022 [pid 33239] FTP command: Client "::ffff:192.168.100.2", "USER rickybk"
Sun May 8 10:03:15 2022 [pid 33239] [rickybk] FTP response: Client "::ffff:192.168.100.2", "331 Please specify the password."
Sun May 8 10:03:18 2022 [pid 33239] [rickybk] FTP command: Client "::ffff:192.168.100.2", "PASS <password>"
Sun May 8 10:03:18 2022 [pid 33238] [rickybk] OK LOGIN: Client "::ffff:192.168.100.2"
Sun May 8 10:03:18 2022 [pid 33240] [rickybk] FTP response: Client "::ffff:192.168.100.2", "230 Login successful."