Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.venv/
__pycache__/
*.py[cod]
.Python

.env
.env.*

.idea/
.vscode/

Thumbs.db
Desktop.ini
4 changes: 2 additions & 2 deletions GhostTR.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def is_in_options(num):
def option():
# BANNER TOOLS
clear()
stderr.writelines(f"""
stderr.writelines(fr"""
________ __ ______ __
/ ____/ /_ ____ _____/ /_ /_ __/________ ______/ /__
/ / __/ __ \/ __ \/ ___/ __/_____/ / / ___/ __ `/ ___/ //_/
Expand All @@ -275,7 +275,7 @@ def option():
def run_banner():
clear()
time.sleep(1)
stderr.writelines(f"""{Wh}
stderr.writelines(fr"""{Wh}
.-.
.' `. {Wh}--------------------------------
:g g : {Wh}| {Gr}GHOST - TRACKER - IP ADDRESS {Wh}|
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,23 @@ pkg install git
pkg install python3
```

### Installation on Windows
Install Python 3 from <a href="https://www.python.org/downloads/windows/">python.org</a>. During installation, enable the checkbox to add Python to PATH.

Then run:
```powershell
git clone https://github.com/HunxByts/GhostTrack.git
cd GhostTrack
python -m venv .venv
.\.venv\Scripts\python.exe -m pip install -r requirements.txt
.\.venv\Scripts\python.exe GhostTR.py
```

You can also start the tool with:
```powershell
.\run-windows.bat
```

### Usage Tool
```
git clone https://github.com/HunxByts/GhostTrack.git
Expand Down
16 changes: 16 additions & 0 deletions run-windows.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@echo off
setlocal

cd /d "%~dp0"

if not exist ".venv\Scripts\python.exe" (
echo Creating Python virtual environment...
python -m venv .venv
if errorlevel 1 exit /b 1
)

echo Installing dependencies...
".venv\Scripts\python.exe" -m pip install -r requirements.txt
if errorlevel 1 exit /b 1

".venv\Scripts\python.exe" GhostTR.py