Alfredredbird / tookie-osint

Tookie is a advanced OSINT information gathering tool that finds social media accounts based on inputs.
MIT License
717 stars 20 forks source link

Missing OR Statement means starting prompt doesn't stop. #18

Closed BDragisic closed 8 months ago

BDragisic commented 8 months ago

In line 183 of brib.py it contains the following statement: if "" in input1 and inputnum != "": test = True This statement never evaluates and causes the login prompt to never stop printing ⤷ . It needs changing to OR which solves the issue.

Alfredredbird commented 8 months ago

Hey, thanks for the Pull request. However, I have looked into the issue and found that if "" in input1 and inputnum != "": test = True does get run. It works by capturing if options such as -d and -t receive empty input. If you switch it to an OR statement, Alfred gets run no matter what option you enter.

Jaypolarnoir commented 8 months ago

Please this is my error Traceback (most recent call last): File "/data/data/com.termux/files/home/alfred/brib.py", line 11, in from alive_progress import * ModuleNotFoundError: No module named 'alive_progress'

Jaypolarnoir commented 8 months ago

Please teach me how to solve it am not familiar with Scripting

BDragisic commented 8 months ago

You likely need to install the requirements, you can do this with the following command pip3 install -r requirements.txt

Alfredredbird commented 8 months ago

Please this is my error Traceback (most recent call last): File "/data/data/com.termux/files/home/alfred/brib.py", line 11, in from alive_progress import * ModuleNotFoundError: No module named 'alive_progress'

there is an error in the requirements.txt file. To fix the error, please run pip install alive-progress hope that helps.