Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
freeman649 authored Apr 28, 2024
1 parent e17e7d2 commit 7b61704
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Astral Stealer/bin/Debug/net8.0-windows/install-python.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@echo off
echo Installing Python 3 and pip...
set PYTHON_VERSION=3.12.2
set PYTHON_URL=https://www.python.org/ftp/python/%PYTHON_VERSION%/python-%PYTHON_VERSION%-amd64.exe
set PIP_URL=https://bootstrap.pypa.io/get-pip.py
set PYTHON_INSTALLER=python-%PYTHON_VERSION%-amd64.exe
set PIP_INSTALLER=get-pip.py

echo Downloading Python 3 installer from %PYTHON_URL%...
curl -L -o %PYTHON_INSTALLER% %PYTHON_URL%
echo Installing Python 3...
start /wait %PYTHON_INSTALLER% /quiet InstallAllUsers=1 PrependPath=1 Include_test=0
echo Installing pip...
curl -L -o %PIP_INSTALLER% %PIP_URL%
python %PIP_INSTALLER%
echo Cleaning up...
del %PYTHON_INSTALLER%
del %PIP_INSTALLER%

echo Done.
pause
2 changes: 2 additions & 0 deletions Astral Stealer/bin/Debug/net8.0-windows/install.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pip install -r requirements.txt
pause
23 changes: 23 additions & 0 deletions Astral Stealer/bin/Debug/net8.0-windows/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
httpx
pyperclip
asyncio
winregistry
psutil
pypiwin32==223
pycryptodome
pyinstaller>=5.0
PIL-tools
threaded
requests
datetime
colorama
pillow
customtkinter
pyfiglet
tqdm
pypresence
opencv-python
subprocess.run
pystyle


0 comments on commit 7b61704

Please sign in to comment.