-
Notifications
You must be signed in to change notification settings - Fork 0
/
kimoki.py
1486 lines (1296 loc) · 53.5 KB
/
kimoki.py
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
#!/usr/bin/env python3
import sys
import socket
import requests
import psutil
import netifaces
import os
import requests
# Buradan sonra `requests` modülünü kullanabilirsiniz.
from PyQt5.QtWidgets import (QApplication, QMainWindow, QVBoxLayout, QLabel, QPushButton,
QWidget, QListWidget, QTabWidget, QHBoxLayout, QMessageBox,
QListWidgetItem, QProgressBar, QMenu, QAction, QFileDialog,
QInputDialog, QSystemTrayIcon, QStatusBar, QToolTip, QSpinBox,
QComboBox, QCheckBox)
from PyQt5.QtCore import QThread, pyqtSignal, Qt, QTimer, QSettings
from PyQt5.QtGui import QPixmap, QIcon
from scapy.all import ARP, Ether, srp
import platform
import ipaddress
import subprocess
from datetime import datetime
os.environ['XDG_RUNTIME_DIR'] = '/tmp/runtime-root'
# Dil çevirilerini ekle (MainWindow sınıfından önce)
TRANSLATIONS = {
'tr': {
# Tab başlıkları
'ip_addresses': "IP Adresleri",
'open_ports': "Açık Portlar",
'lan_devices': "LAN Cihazları",
'settings': "Seçenekler",
'about': "Hakkında",
# Butonlar
'get_ip': "IP Adreslerini Getir",
'scan_ports': "Açık Portları Listele",
'scan_lan': "LAN'deki Cihazları Tara",
'scanning': "Taranıyor...",
'save': "Kaydet",
# Ayarlar
'language': "Dil",
'show_tray': "Sistem Tepsisinde Göster",
'auto_scan': "Otomatik Tarama",
'off': "Kapalı",
'min_5': "5 dakika",
'min_15': "15 dakika",
'min_30': "30 dakika",
# Sağ tık menüsü
'copy_selected': "Seçileni Kopyala",
'copy_all': "Tümünü Kopyala",
'save_results': "Sonuçları Kaydet",
# IP bilgileri
'local_ip': "Yerel IP",
'network_interface': "Ağ Arayüzü",
'subnet_mask': "Alt Ağ Maskesi",
'public_ip': "Genel IP",
'city': "Şehir",
'country': "Ülke",
'computer_name': "Bilgisayar Adı",
'hostname': "Ana Makine Adı",
'mac_address': "MAC Adresi",
'vendor': "Üretici",
'local_domain': "Yerel Alan Adı",
# Port tarama
'port_info': "En yaygın kullanılan portlar (1-1024) ve bazı özel portlar taranacaktır.",
'port': "Port",
'service': "Servis",
'unknown_service': "Bilinmeyen Servis",
'open_ports_title': "=== Açık Portlar ===",
'total_ports_found': "Toplam {} açık port bulundu.",
# LAN tarama
'no_devices': "Hiçbir cihaz bulunamadı. (Yönetici Olarak Çalıştırın.)",
'scanning_network': "Ağ taranıyor...",
'device_found': "Cihaz bulundu:",
# Durum mesajları
'scan_complete': "Tarama tamamlandı",
'scan_started': "Tarama başlatılıyor...",
'open_ports_found': "{} açık port bulundu",
'no_open_ports': "Hiçbir açık port bulunamadı",
'getting_ip': "IP adresleri alınıyor...",
'ip_received': "IP adresleri alındı",
# Sistem tepsisi
'show': "Göster",
'exit': "Çıkış",
'tray_info': "Program sistem tepsisinde çalışmaya devam edecek.",
'minimized_info': "Program küçültüldü",
# Uyarılar ve hatalar
'warning': "Uyarı",
'error': "Hata",
'no_results': "Kaydedilecek sonuç bulunamadı!",
'save_error': "Dosya kaydedilirken hata oluştu: {}",
'network_error': "Ağ hatası: {}",
'permission_error': "Yetki hatası. Programı yönetici olarak çalıştırın.",
# Kopyalama ve kaydetme
'copied_selected': "Seçili öğe panoya kopyalandı!",
'copied_all': "Tüm öğeler panoya kopyalandı!",
'saved_to': "Sonuçlar {} dosyasına kaydedildi!",
'save_dialog_title': "Sonuçları Kaydet",
# Hakkında metni
'about_text': """
<h1 style="text-align:center;">KimOKi</h1>
<p style="text-align:justify;">
Bu uygulama, IP adreslerini almak, açık portları taramak ve LAN'deki cihazları listelemek için tasarlanmıştır.
</p>
<p>Sürüm: 1.0</p>
<p>Geliştirici: ALG Yazılım Inc.©</p>
<p>www.algyazilim.com | info@algyazilim.com</p>
<p>Fatih ÖNDER (CekToR) | fatih@algyazilim.com</p>
<p>GitHub: https://github.com/cektor</p>
<p>ALG Yazılım Pardus'a Göç'ü Destekler.</p>
<p>Telif Hakkı © 2024 GNU</p>
""",
# GUI elemanları
'auto_scan_label': "Otomatik Tarama:",
'auto_scan_off': "Kapalı",
'auto_scan_5min': "5 dakika",
'auto_scan_15min': "15 dakika",
'auto_scan_30min': "30 dakika",
'port_info_label': "En yaygın kullanılan portlar (1-1024) ve bazı özel portlar taranacaktır.",
'scanning_port': "Port {} taranıyor...",
'scanning_complete': "Tarama tamamlandı",
'scanning_button': "Taranıyor...",
'scan_button': "Açık Portları Listele",
# IP bilgileri
'getting_local_info': "Yerel ağ bilgileri alınıyor...",
'getting_public_info': "Genel IP adresi alınıyor...",
'ip_info_received': "IP adresleri alındı",
'interface_not_found': "Bulunamadı",
'unknown_vendor': "Bilinmeyen Üretici",
'unknown_hostname': "Bilinmeyen Ana Makine",
# LAN tarama
'starting_lan_scan': "LAN taraması başlatılıyor...",
'lan_scan_complete': "LAN taraması tamamlandı",
'device_info': """IP: {}
MAC: {}
Üretici: {}
Ana makine adı: {}
Yerel Alan Adı: {}
Şehir: {}
Ülke: {}""",
# Dosya işlemleri
'file_name_template': "kimoki_sonuclar_{}.txt",
'text_files': "Metin Dosyaları (*.txt)",
# Sistem tepsisi
'tray_tooltip': "KimOKi - Ağ Tarama Aracı",
'minimized_tooltip': "KimOKi küçültüldü",
# Genel mesajlar
'initializing': "Başlatılıyor...",
'ready': "Hazır",
'processing': "İşleniyor...",
'completed': "Tamamlandı",
'canceled': "İptal edildi",
'unknown': "Bilinmiyor",
'not_available': "Mevcut değil",
# Tema ayarları
'theme_label': "Tema:",
'theme_light': "Açık Tema",
'theme_dark': "Koyu Tema",
# Yeniden başlatma mesajları
'restart_required': "Yeniden Başlatma Gerekli",
'language_change_restart': "Dil değişikliğinin etkili olması için uygulama yeniden başlatılacak.",
'theme_change_restart': "Tema değişikliğinin tam olarak uygulanması için uygulama yeniden başlatılacak.",
'restart_now': "Şimdi Yeniden Başlat",
# Progress bar mesajları
'progress_getting_ip': "IP adresleri alınıyor... %{}",
'progress_scanning_port': "Port %{} taranıyor...",
'progress_scanning_lan': "LAN taranıyor... %{}",
'progress_complete': "Tamamlandı",
# IP adresleri çıktıları
'output_local_ip': "Yerel IP: {}",
'output_public_ip': "Genel IP: {}",
'output_network_interface': "Ağ Arayüzü: {}",
'output_mac_address': "MAC Adresi: {}",
'output_subnet_mask': "Alt Ağ Maskesi: {}",
'output_hostname': "Bilgisayar Adı: {}",
'output_city': "Şehir: {}",
'output_country': "Ülke: {}",
'output_isp': "İnternet Servis Sağlayıcı: {}",
'output_organization': "Organizasyon: {}",
# Açık portlar çıktıları
'output_port_header': "=== Açık Portlar ===",
'output_port_entry': "Port {}: {} {}", # Port numarası, servis adı, uygulama adı
'output_port_count': "\nToplam {} açık port bulundu.",
'output_no_ports': "Hiçbir açık port bulunamadı.",
# LAN cihazları çıktıları
'output_device_header': "=== Ağdaki Cihazlar ===",
'output_device_entry': """
Cihaz {}:
IP Adresi: {}
MAC Adresi: {}
Üretici: {}
Ana Makine Adı: {}
Yerel Alan Adı: {}""",
'output_device_count': "\nToplam {} cihaz bulundu.",
'output_no_devices': "Ağda hiçbir cihaz bulunamadı.",
# Hakkında metni
'about_title': "KimOKi - Ağ Tarama Aracı",
'about_version': "Sürüm: 1.0",
'about_description': """Bu uygulama, ağ güvenliği ve yönetimi için geliştirilmiş bir araçtır.
Özellikler:
• IP adreslerini görüntüleme
• Açık portları tarama
• LAN cihazlarını keşfetme
• Otomatik tarama
• Çoklu dil desteği
• Karanlık/Açık tema""",
'about_developer': "Geliştirici: ALG Yazılım Inc.©",
'about_contact': """İletişim:
www.algyazilim.com
info@algyazilim.com""",
'about_author': "Fatih ÖNDER (CekToR)",
'about_email': "fatih@algyazilim.com",
'about_github': "GitHub: https://github.com/cektor",
'about_support': "ALG Yazılım Pardus'a Göç'ü Destekler.",
'about_copyright': "Telif Hakkı © 2024 GNU",
},
'en': {
# Tab titles
'ip_addresses': "IP Addresses",
'open_ports': "Open Ports",
'lan_devices': "LAN Devices",
'settings': "Settings",
'about': "About",
# Buttons
'get_ip': "Get IP Addresses",
'scan_ports': "List Open Ports",
'scan_lan': "Scan LAN Devices",
'scanning': "Scanning...",
'save': "Save",
# Settings
'language': "Language",
'show_tray': "Show in System Tray",
'auto_scan': "Auto Scan",
'off': "Off",
'min_5': "5 minutes",
'min_15': "15 minutes",
'min_30': "30 minutes",
# Right-click menu
'copy_selected': "Copy Selected",
'copy_all': "Copy All",
'save_results': "Save Results",
# IP information
'local_ip': "Local IP",
'network_interface': "Network Interface",
'subnet_mask': "Subnet Mask",
'public_ip': "Public IP",
'city': "City",
'country': "Country",
'computer_name': "Computer Name",
'hostname': "Hostname",
'mac_address': "MAC Address",
'vendor': "Vendor",
'local_domain': "Local Domain",
# Port scanning
'port_info': "Most common ports (1-1024) and some special ports will be scanned.",
'port': "Port",
'service': "Service",
'unknown_service': "Unknown Service",
'open_ports_title': "=== Open Ports ===",
'total_ports_found': "Total {} open ports found.",
# LAN scanning
'no_devices': "No devices found. (Run as Administrator)",
'scanning_network': "Scanning network...",
'device_found': "Device found:",
# Status messages
'scan_complete': "Scan completed",
'scan_started': "Starting scan...",
'open_ports_found': "{} open ports found",
'no_open_ports': "No open ports found",
'getting_ip': "Getting IP addresses...",
'ip_received': "IP addresses received",
# System tray
'show': "Show",
'exit': "Exit",
'tray_info': "Program will continue running in system tray.",
'minimized_info': "Program minimized",
# Warnings and errors
'warning': "Warning",
'error': "Error",
'no_results': "No results to save!",
'save_error': "Error saving file: {}",
'network_error': "Network error: {}",
'permission_error': "Permission error. Run the program as administrator.",
# Copying and saving
'copied_selected': "Selected item copied to clipboard!",
'copied_all': "All items copied to clipboard!",
'saved_to': "Results saved to {} file!",
'save_dialog_title': "Save Results",
# About text
'about_text': """
<h1 style="text-align:center;">KimOKi</h1>
<p style="text-align:justify;">
This application is designed to get IP addresses, scan open ports and list devices on LAN.
</p>
<p>Version: 1.0</p>
<p>Developer: ALG Software Inc.©</p>
<p>www.algyazilim.com | info@algyazilim.com</p>
<p>Fatih ÖNDER (CekToR) | fatih@algyazilim.com</p>
<p>GitHub: https://github.com/cektor</p>
<p>ALG Software Supports Migration to Pardus.</p>
<p>Copyright © 2024 GNU</p>
""",
# GUI elements
'auto_scan_label': "Auto Scan:",
'auto_scan_off': "Off",
'auto_scan_5min': "5 minutes",
'auto_scan_15min': "15 minutes",
'auto_scan_30min': "30 minutes",
'port_info_label': "Most common ports (1-1024) and some special ports will be scanned.",
'scanning_port': "Scanning port {}...",
'scanning_complete': "Scanning complete",
'scanning_button': "Scanning...",
'scan_button': "List Open Ports",
# IP information
'getting_local_info': "Getting local network information...",
'getting_public_info': "Getting public IP address...",
'ip_info_received': "IP addresses received",
'interface_not_found': "Not Found",
'unknown_vendor': "Unknown Vendor",
'unknown_hostname': "Unknown Hostname",
# LAN scanning
'starting_lan_scan': "Starting LAN scan...",
'lan_scan_complete': "LAN scan completed",
'device_info': """IP: {}
MAC: {}
Vendor: {}
Hostname: {}
Local Domain: {}
City: {}
Country: {}""",
# File operations
'file_name_template': "kimoki_results_{}.txt",
'text_files': "Text Files (*.txt)",
# System tray
'tray_tooltip': "KimOKi - Network Scanner",
'minimized_tooltip': "KimOKi minimized",
# General messages
'initializing': "Initializing...",
'ready': "Ready",
'processing': "Processing...",
'completed': "Completed",
'canceled': "Canceled",
'unknown': "Unknown",
'not_available': "Not available",
# Theme settings
'theme_label': "Theme:",
'theme_light': "Light Theme",
'theme_dark': "Dark Theme",
# Restart messages
'restart_required': "Restart Required",
'language_change_restart': "The application will restart for the language change to take effect.",
'theme_change_restart': "The application will restart for the theme change to be fully applied.",
'restart_now': "Restart Now",
# Progress bar messages
'progress_getting_ip': "Getting IP addresses... %{}",
'progress_scanning_port': "Scanning port %{}...",
'progress_scanning_lan': "Scanning LAN... %{}",
'progress_complete': "Completed",
# IP addresses outputs
'output_local_ip': "Local IP: {}",
'output_public_ip': "Public IP: {}",
'output_network_interface': "Network Interface: {}",
'output_mac_address': "MAC Address: {}",
'output_subnet_mask': "Subnet Mask: {}",
'output_hostname': "Computer Name: {}",
'output_city': "City: {}",
'output_country': "Country: {}",
'output_isp': "Internet Service Provider: {}",
'output_organization': "Organization: {}",
# Open ports outputs
'output_port_header': "=== Open Ports ===",
'output_port_entry': "Port {}: {} {}", # Port number, service name, application name
'output_port_count': "\nTotal {} open ports found.",
'output_no_ports': "No open ports found.",
# LAN devices outputs
'output_device_header': "=== Network Devices ===",
'output_device_entry': """
Device {}:
IP Address: {}
MAC Address: {}
Vendor: {}
Hostname: {}
Local Domain: {}""",
'output_device_count': "\nTotal {} devices found.",
'output_no_devices': "No devices found on the network.",
# About text
'about_title': "KimOKi - Network Scanner",
'about_version': "Version: 1.0",
'about_description': """This application is a tool developed for network security and management.
Features:
• View IP addresses
• Scan open ports
• Discover LAN devices
• Automatic scanning
• Multiple language support
• Dark/Light theme""",
'about_developer': "Developer: ALG Software Inc.©",
'about_contact': """Contact:
www.algyazilim.com
info@algyazilim.com""",
'about_author': "Fatih ÖNDER (CekToR)",
'about_email': "fatih@algyazilim.com",
'about_github': "GitHub: https://github.com/cektor",
'about_support': "ALG Software Supports Migration to Pardus.",
'about_copyright': "Copyright © 2024 GNU",
}
}
# MainWindow sınıfından önce tema stillerini tanımlayalım
THEMES = {
'light': """
QMainWindow, QWidget {
background-color: #f0f0f0;
color: #000000;
}
QPushButton {
background-color: #e0e0e0;
color: #000000;
border: 1px solid #c0c0c0;
border-radius: 5px;
padding: 10px 20px;
margin: 5px;
}
QPushButton:hover {
background-color: #d0d0d0;
}
QPushButton:pressed {
background-color: #c0c0c0;
}
QListWidget {
background-color: #ffffff;
color: #000000;
border: 1px solid #c0c0c0;
border-radius: 5px;
}
QLabel {
color: #000000;
}
QComboBox, QSpinBox {
background-color: #ffffff;
color: #000000;
border: 1px solid #c0c0c0;
border-radius: 3px;
padding: 5px;
}
QProgressBar {
border: 1px solid #c0c0c0;
border-radius: 5px;
text-align: center;
}
QProgressBar::chunk {
background-color: #0078d7;
}
QTabWidget::pane {
border: 1px solid #c0c0c0;
}
QTabBar::tab {
background-color: #e0e0e0;
color: #000000;
padding: 8px 20px;
}
QTabBar::tab:selected {
background-color: #f0f0f0;
}
QStatusBar {
background-color: #f0f0f0;
color: #000000;
}
""",
'dark': """
QMainWindow, QWidget {
background-color: #2b2b2b;
color: #ffffff;
}
QPushButton {
background-color: #3d3d3d;
color: #ffffff;
border: none;
border-radius: 5px;
padding: 10px 20px;
margin: 5px;
}
QPushButton:hover {
background-color: #4a4a4a;
}
QPushButton:pressed {
background-color: #2d2d2d;
}
QListWidget {
background-color: #333333;
color: #ffffff;
border: 1px solid #444444;
border-radius: 5px;
}
QLabel {
color: #ffffff;
}
QComboBox, QSpinBox {
background-color: #3d3d3d;
color: #ffffff;
border: 1px solid #444444;
border-radius: 3px;
padding: 5px;
}
QProgressBar {
border: 1px solid #444444;
border-radius: 5px;
text-align: center;
}
QProgressBar::chunk {
background-color: #3d8ec9;
}
QTabWidget::pane {
border: 1px solid #444444;
}
QTabBar::tab {
background-color: #3d3d3d;
color: #ffffff;
padding: 8px 20px;
}
QTabBar::tab:selected {
background-color: #4a4a4a;
}
QStatusBar {
background-color: #2b2b2b;
color: #ffffff;
}
QMessageBox {
background-color: #2b2b2b;
color: #ffffff;
}
QMessageBox QPushButton {
min-width: 80px;
}
"""
}
def get_logo_path():
"""Logo dosyasının yolunu döndürür."""
if hasattr(sys, "_MEIPASS"):
return os.path.join(sys._MEIPASS, "kimokilo.png")
elif os.path.exists("/usr/share/icons/hicolor/48x48/apps/kimokilo.png"):
return "/usr/share/icons/hicolor/48x48/apps/kimokilo.png"
elif os.path.exists("kimokilo.png"):
return "kimokilo.png"
return None
def get_icon_path():
"""Simge dosyasının yolunu döndürür."""
if hasattr(sys, "_MEIPASS"):
return os.path.join(sys._MEIPASS, "kimokilo.png")
elif os.path.exists("/usr/share/icons/hicolor/48x48/apps/kimokilo.png"):
return "/usr/share/icons/hicolor/48x48/apps/kimokilo.png"
return None
LOGO_PATH = get_logo_path()
ICON_PATH = get_icon_path()
def run_with_fakeroot(command):
try:
result = subprocess.run(['fakeroot'] + command,
capture_output=True,
text=True,
check=True)
return result.stdout.strip()
except subprocess.CalledProcessError as e:
print(f"Command failed with error: {e.stderr}")
return ""
def get_network_interface():
try:
interfaces = netifaces.interfaces()
for iface in interfaces:
if iface.startswith('eth') or iface.startswith('wlan'):
addresses = netifaces.ifaddresses(iface)
if netifaces.AF_INET in addresses:
ip_info = addresses[netifaces.AF_INET][0]
ip = ip_info['addr']
netmask = ip_info['netmask']
network = ipaddress.IPv4Network(f"{ip}/{netmask}", strict=False)
return str(network)
except Exception as e:
print(f"Ağ arayüzü tespit hatası: {e}")
return "192.168.1.0/24"
def scan_lan():
devices = []
try:
target_network = get_network_interface()
arp = ARP(pdst=target_network)
ether = Ether(dst="ff:ff:ff:ff:ff:ff")
packet = ether/arp
result = srp(packet, timeout=3, verbose=0)[0]
for sent, received in result:
device = {
"IP": received.psrc,
"MAC": received.hwsrc,
"Vendor": get_device_vendor(received.hwsrc),
"Hostname": get_hostname(received.psrc),
"Local": f"{received.psrc}.local"
}
device["City"], device["Country"] = get_geo_info(received.psrc)
devices.append(device)
except Exception as e:
print(f"LAN tarama hatası: {e}")
return devices
def get_device_vendor(mac_address):
try:
url = f"https://api.macvendors.com/{mac_address}"
response = requests.get(url, timeout=5)
return response.text if response.status_code == 200 else "Bilinmiyor"
except:
return "Hata oluştu"
def get_geo_info(ip):
try:
response = requests.get(f"https://ipinfo.io/{ip}/json", timeout=5)
data = response.json()
city = data.get('city', 'Bilinmiyor')
country = data.get('country', 'Bilinmiyor')
return city, country
except:
return "Bilinmiyor", "Bilinmiyor"
def get_hostname(ip):
try:
hostname = socket.gethostbyaddr(ip)[0]
except:
hostname = "Bilinmiyor"
return hostname
def get_public_ip_info():
try:
public_ip = requests.get('https://api.ipify.org', timeout=5).text
city, country = get_geo_info(public_ip)
return public_ip, city, country
except:
return "Bilinmiyor", "Bilinmiyor", "Bilinmiyor"
class FetchIPThread(QThread):
ip_fetched = pyqtSignal(dict)
progress = pyqtSignal(int, str)
def get_network_ip(self):
try:
interfaces = netifaces.interfaces()
for iface in interfaces:
# Ethernet veya WiFi arayüzlerini kontrol et
if iface.startswith(('eth', 'wlan', 'en', 'wl')): # en ve wl Linux'taki yeni isimlendirmeler için
addrs = netifaces.ifaddresses(iface)
if netifaces.AF_INET in addrs: # IPv4 adresi varsa
ip_info = addrs[netifaces.AF_INET][0]
return {
'ip': ip_info['addr'],
'interface': iface,
'netmask': ip_info.get('netmask', 'Bilinmiyor')
}
return None
except Exception as e:
print(f"Ağ IP'si alınırken hata: {e}")
return None
def run(self):
try:
self.progress.emit(10, "Yerel ağ bilgileri alınıyor...")
network_info = self.get_network_ip()
self.progress.emit(50, "Genel IP adresi alınıyor...")
public_ip, city, country = get_public_ip_info()
self.progress.emit(100, "IP adresleri alındı.")
ip_info = {
"Yerel IP": network_info['ip'] if network_info else "Bulunamadı",
"Ağ Arayüzü": network_info['interface'] if network_info else "Bulunamadı",
"Alt Ağ Maskesi": network_info['netmask'] if network_info else "Bulunamadı",
"Genel IP": public_ip,
"Şehir": city,
"Ülke": country
}
# Hostname bilgisini ekle
try:
hostname = socket.gethostname()
ip_info["Bilgisayar Adı"] = hostname
except:
ip_info["Bilgisayar Adı"] = "Bulunamadı"
self.ip_fetched.emit(ip_info)
except Exception as e:
self.ip_fetched.emit({"Hata": str(e)})
class ScanPortsThread(QThread):
ports_scanned = pyqtSignal(list)
progress = pyqtSignal(int, str)
def __init__(self):
super().__init__()
self.is_running = True
# Taranacak portların listesi
self.ports_to_scan = list(range(1, 1025)) # Well-known portlar
# Ek önemli portlar
additional_ports = [
1433, # MSSQL
1521, # Oracle
3306, # MySQL
5432, # PostgreSQL
8080, # HTTP Alternate
8443, # HTTPS Alternate
27017, # MongoDB
6379, # Redis
5672, # RabbitMQ
9200, # Elasticsearch
3389, # RDP
22, # SSH
21, # FTP
25, # SMTP
110, # POP3
143, # IMAP
443, # HTTPS
80, # HTTP
53 # DNS
]
# Listeye ek portları ekle (tekrarları önle)
self.ports_to_scan.extend(x for x in additional_ports if x not in self.ports_to_scan)
# Portları sırala
self.ports_to_scan.sort()
def stop(self):
self.is_running = False
def scan_port(self, port):
try:
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.settimeout(0.1)
result = sock.connect_ex(('127.0.0.1', port))
if result == 0:
try:
service = socket.getservbyport(port)
except:
service = "Bilinmeyen Servis"
# Çalışan uygulamayı bul
try:
for conn in psutil.net_connections(kind='inet'):
if conn.laddr.port == port:
try:
process = psutil.Process(conn.pid)
service += f" ({process.name()})"
except:
pass
break
except:
pass
return port, service
return None
except:
return None
def run(self):
open_ports = []
try:
total_ports = len(self.ports_to_scan)
scanned = 0
for port in self.ports_to_scan:
if not self.is_running:
break
scanned += 1
progress = int(scanned / total_ports * 100)
self.progress.emit(progress, f"Port {port} taranıyor...")
result = self.scan_port(port)
if result:
open_ports.append(result)
except Exception as e:
print(f"Port tarama hatası: {e}")
finally:
self.progress.emit(100, "Tarama tamamlandı")
self.ports_scanned.emit(open_ports)
class ScanLANThread(QThread):
lan_scanned = pyqtSignal(list)
progress = pyqtSignal(int, str)
def get_local_ip_and_network(self):
try:
# Aktif ağ arayüzünü bul
for iface in netifaces.interfaces():
addrs = netifaces.ifaddresses(iface)
if netifaces.AF_INET in addrs: # IPv4 adresi varsa
ip_info = addrs[netifaces.AF_INET][0]
if 'addr' in ip_info and not ip_info['addr'].startswith('127.'):
ip = ip_info['addr']
netmask = ip_info['netmask']
# IP ve alt ağı kullanarak ağ adresini hesapla
network = str(ipaddress.IPv4Network(f"{ip}/{netmask}", strict=False))
return ip, network
return None, None
except Exception as e:
print(f"Ağ bilgisi alınamadı: {e}")
return None, None
def get_hostname(self, ip):
try:
return socket.gethostbyaddr(ip)[0]
except:
return "Bilinmiyor"
def get_vendor(self, mac):
try:
# MAC adresinin ilk 6 karakterini al (üretici kodu)
oui = mac.replace(":", "").replace("-", "").upper()[:6]
url = f"https://api.macvendors.com/{oui}"
response = requests.get(url, timeout=2)
if response.status_code == 200:
return response.text
return "Bilinmiyor"
except:
return "Bilinmiyor"
def run(self):
try:
devices = []
local_ip, network = self.get_local_ip_and_network()
if not local_ip or not network:
self.lan_scanned.emit([])
return
# ARP taraması yerine ping taraması yapalım
network_obj = ipaddress.IPv4Network(network)
total_ips = len(list(network_obj.hosts()))
scanned = 0
for ip in network_obj.hosts():
ip_str = str(ip)
if str(ip) == local_ip: # Kendi IP'mizi atlayalım
continue
scanned += 1
progress = int((scanned / total_ips) * 100)
self.progress.emit(progress, f"IP {ip_str} taranıyor...")
# Ping kontrolü
try:
if platform.system().lower() == "windows":
ping_cmd = ["ping", "-n", "1", "-w", "500", ip_str]
else:
ping_cmd = ["ping", "-c", "1", "-W", "1", ip_str]
result = subprocess.run(ping_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if result.returncode == 0: # Ping başarılı
# ARP tablosundan MAC adresini al
if platform.system().lower() == "windows":
arp_cmd = ["arp", "-a", ip_str]
else:
arp_cmd = ["arp", "-n", ip_str]
arp_result = subprocess.run(arp_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
mac = "Bilinmiyor"
if arp_result.returncode == 0:
# MAC adresini ARP çıktısından ayıkla
for line in arp_result.stdout.split('\n'):
if ip_str in line:
parts = line.split()
for part in parts:
if ':' in part or '-' in part:
mac = part
break
hostname = self.get_hostname(ip_str)
vendor = self.get_vendor(mac) if mac != "Bilinmiyor" else "Bilinmiyor"
device_info = {
'IP': ip_str,
'MAC': mac,
'Vendor': vendor,
'Hostname': hostname,
'Local': socket.getfqdn(ip_str),
'City': 'Yerel Ağ',
'Country': 'Yerel Ağ'
}
devices.append(device_info)
except Exception as e:
print(f"Hata ({ip_str}): {e}")
continue
self.progress.emit(100, "Tarama tamamlandı")
self.lan_scanned.emit(devices)
except Exception as e:
print(f"LAN tarama hatası: {e}")
self.lan_scanned.emit([])
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
# QSettings nesnesini oluştur
self.settings = QSettings('ALG Software', 'KimOKi')
# Dil ve tema ayarlarını yükle
self.current_language = self.settings.value('language', 'tr')
self.current_theme = self.settings.value('theme', 'dark')
self.show_in_tray = self.settings.value('show_in_tray', 'true').lower() == 'true'
# Temayı uygula
self.apply_theme(self.current_theme)
# Pencere simgesi
if ICON_PATH:
self.setWindowIcon(QIcon(ICON_PATH))
# Pencere başlığı ve boyutu
self.setWindowTitle("KimOKi")
self.setFixedSize(800, 600)
# Progress bar
self.progress_bar = QProgressBar()
self.progress_bar.setAlignment(Qt.AlignCenter)
# Ana layout
layout = QVBoxLayout()
# Tab widget'ı oluştur
self.tab_widget = QTabWidget()
self.tab1 = QWidget()
self.tab2 = QWidget()
self.tab3 = QWidget()
self.tab4 = QWidget()
self.tab5 = QWidget()
# Tabları ayarla
self.setup_tab1()
self.setup_tab2()
self.setup_tab3()
self.setup_tab4()
self.setup_tab5()
# Tab başlıklarını ayarla
self.tab_widget.addTab(self.tab1, self.tr('ip_addresses'))
self.tab_widget.addTab(self.tab2, self.tr('open_ports'))