-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
Stable Version/CAT NET V2.1.0 - STABLE/Win 32-64/Installer-Win32-64.bat
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,62 @@ | ||
@echo off | ||
|
||
:: BatchGotAdmin | ||
:------------------------------------- | ||
REM --> Check for permissions | ||
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" ( | ||
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system" | ||
) ELSE ( | ||
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" | ||
) | ||
|
||
REM --> If error flag set, we do not have admin. | ||
if '%errorlevel%' NEQ '0' ( | ||
echo Requesting administrative privileges... | ||
goto UACPrompt | ||
) else ( goto gotAdmin ) | ||
|
||
:UACPrompt | ||
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" | ||
set params= %* | ||
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs" | ||
|
||
"%temp%\getadmin.vbs" | ||
del "%temp%\getadmin.vbs" | ||
exit /B | ||
|
||
:gotAdmin | ||
pushd "%CD%" | ||
CD /D "%~dp0" | ||
|
||
|
||
@echo on | ||
echo Created by IsTk0 | ||
echo Cat-Net Installer | ||
|
||
git clone https://github.com/AronkyTechnologies/Cat-Net.git | ||
|
||
cd "Stable Version/CAT NET V2.1.0 - STABLE/Windows" | ||
|
||
pip install xmlrpc | ||
pip install colorama | ||
pip install subprocess | ||
pip install sys | ||
pip install os | ||
pip install time | ||
pip install paramiko | ||
pip install ping3 | ||
pip install scapy.all | ||
pip install argparse | ||
pip install getpass | ||
pip install ftplib | ||
pip install socket | ||
pip install platform | ||
pip install psutil | ||
|
||
Rem librerie per la versione di cat net per windows | ||
pip install win32gui | ||
pip install win32con | ||
pip install pyuac | ||
pip install ctypes | ||
|
||
start Cat-Net-Launcher.bat |