Skip to content

Commit

Permalink
bug fix and readme edit
Browse files Browse the repository at this point in the history
  • Loading branch information
MehmetYukselSekeroglu committed Jan 17, 2024
1 parent 91bba0f commit 501ab96
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<h1 aling=center>TheHive Remastred</h1>

<div align="center">
<div align="center" >

<img src="./iconfiles/logo.png" border-radius="50%;" height="500px" />
<img src="./iconfiles/logo.png" style="border-radius:50%" height="auto" width="auto"/>
</div>

<p>Advanced professional osint toolkit with TheHive Remastred</p><br>
Expand All @@ -28,8 +28,8 @@
- External module support ( coming soon )

- Region based tools
- Tc Verificator ( math algorithm ) ( dev stage )
- Tc Calculator ( math algorithm ) ( dev stage )
- Tc Verificator ( math algorithm ) ( Now Active )
- Tc Calculator ( math algorithm ) ( Now Active )


<br>
Expand Down
6 changes: 6 additions & 0 deletions guilib/main_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from guilib.FaceVerificationFromImage_controller import FaceVerificationScreen_from_image
from guilib.PhoneNumberParser_controller import PhoneNumberParserWidget
from guilib.TcNumberValidationChecker_controller import TcValidatorCheckerWidget
from guilib.TcNumberCalculator_controller import TcCalculatorWidget

from hivelibrary import env
from hivelibrary import os_information
Expand Down Expand Up @@ -95,10 +96,15 @@ def __init__(self, db_cnn:sqlite3.Connection, db_cursor:sqlite3.Cursor):
self.mainScreen.actionFace_Verification.triggered.connect(self.menuAction_FaceInsight_faceVerification)
self.mainScreen.actionPhone_number_parser.triggered.connect(self.menuAction_phoneNumberParser)
self.mainScreen.actionTC_Verification.triggered.connect(self.menuAction_TcValidator)
self.mainScreen.actionTC_Calculator.triggered.connect(self.menuAction_TcCalculator)

self.mainScreen.textBrowser_WelcomeAndToolinfo.setText(WELCOME_SCREEN_TEXT)


def menuAction_TcCalculator(self):
self.TcCalculator = TcCalculatorWidget()
self.TcCalculator.show()

def menuAction_TcValidator(self):
self.TcValidator = TcValidatorCheckerWidget()
self.TcValidator.show()
Expand Down

0 comments on commit 501ab96

Please sign in to comment.