-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
444 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Iban Parser Özelliği Nedir Ne İşe Yarar? | ||
|
||
|
||
IBAN Para transferi için kullanılan küresel bir sistemdir bu nedenle bu sistem içerisinde belirlir tanımlayıcı unsurlar bulunmaktadır. Iban parser modülü de bu tanımlayıcı bilgileri Iban içerisinden çıkartarak insanların anlayabileceği bir formata getirmektedir. | ||
|
||
|
||
IBAN içerisinde gelen bazı bilgiler: | ||
|
||
- Ülke Kodu | ||
- Sepa Desteği | ||
- Hesap Kontrolü Desteği | ||
- Şube Kontrolü | ||
- Banka Kodu | ||
- Hesap Numarası | ||
- Şube Kodu | ||
- Müşteri Numarası | ||
- Hesap Ek Numrası | ||
|
||
|
||
Bu bilgilerden bazıları yetkili makamlar hariç bizim işimize yaramasada banka adı ,şube kodu, Müşteri numarası işimize yarar farklı ibanların aynı müşterinin mi olduğuna, şube kodu ile kişinin yaşadığı tahmini bölge tespit edilebilmektedir. Bu nedenle dolandırıcılık vs gibi olaylarda bu modülden yararlanmak zamandan kazandırır. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# IP Tracer Modülü: | ||
|
||
|
||
IP Tracer modülü arka planda `ipinfo.io` api'sinden yararlanmaktadır. Basit bir şekilde IP adresini api üzerinden sorgular ve gelen çıktıyı okunur hale getirir ek olarak coğrafi bir fikir vermesi için verilen IP kordinatlarını haritada işaretler. | ||
|
||
|
||
<img src="../img/reverseIPlookup_basic.png"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
|
||
|
||
|
||
|
||
|
||
Windows için kuruluma başlamadan önce `docker`, `git` ve `python3`paketlerini sisteme kurmamız gerekli. | ||
|
||
|
||
Docker'i indirmek için <a href="https://www.docker.com/products/docker-desktop/"> tıklayın </a> | ||
Python3'ü indirmek için <a href="https://www.python.org/downloads/release/python-3110/"> tıklayın </a> | ||
Git'i indirmek için <a href="https://git-scm.com/downloads"> tıklayın </a> | ||
|
||
|
||
Öncelikle Repomuzu GitHub dan çekerek içerisinde girelim sonra diğer adımlara geçebiliriz. | ||
|
||
```shell | ||
git clone https://github.com/MehmetYukselSekeroglu/TheHive.git | ||
cd TheHive | ||
``` | ||
|
||
|
||
## 1) Config Dosyasını Oluşturma | ||
|
||
İlk olarak `config/config.json` yapılandırma dosyamızı oluşturmamız gerekiyor. Bunun için proje klasörü içinde şu komutu çalıştırın. | ||
|
||
```shell | ||
python3 -m hivelibrary.make_config_schema | ||
``` | ||
|
||
Çıktısı aşşağıdaki gibi olmalıdır: | ||
|
||
<img src="../img/windows_installing_1.png"> | ||
|
||
|
||
|
||
## 2) Config Dosyasına Ayarlarımızı Girelim | ||
|
||
NOT: Eğer özel bir PostgreSQL parolası istemiyorsanız bu alanı atlayın. | ||
|
||
Herhangi bir metin editörü ile `config/config.json` dosyamızı açalım. Bu dosyada sadece database config içinde `password` kısmına istediğiniz veritabanı parolasını yazmanız yeterli isterseni olduğu gibi de bırakabilirsiniz. | ||
|
||
Config Dosyasının içeriği aşşağıdaki gibi otomatik oluşturulmuş olacaktır. Gerekli kısma parola yazıp kaydedip çıkabilirsiniz. | ||
|
||
<img src="../img/windows_installing_2.png"> | ||
|
||
|
||
## 3) Kuruluma başlayalım | ||
|
||
TheHive indirme işlemi için otomatik bir kurulum dosyası sağlar. Aşşağıdaki komutu proje klasörü içinde çalıştırırsanız otomatik kurulum başlayacaktır. | ||
|
||
### NOT: Docker'in açık olması gerekli! | ||
|
||
```shell | ||
python windows.py --wizard | ||
``` | ||
|
||
Kurulum tamamlandığı zaman TheHive otomatik olaraç açılacaktır. | ||
|
||
|
||
|
||
## 4) Kurulum sonrası elle başlatma | ||
|
||
İster `main.py` dosyasını çalıştırın isterseniz aşşağıdaki gibi açabilirsiniz. | ||
|
||
```shell | ||
python windows.py --start-hive | ||
``` | ||
|
||
|
||
|
||
# Windows Arayüzünden Örnek Bir Görüntü: | ||
|
||
|
||
<img src="../img/temsil2.png"> | ||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.