Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
Ares — पायथन बॉटनेट और बैकडोर | Kitploit
उपकरण/GitHubGitHub/sweetsoftware/ares
पेलोड जनरेशनस्थायित्व तंत्रपोस्ट-शोषणकमांड एंड कंट्रोलरिमोट एक्सेस टूल
GitHubsweetsoftware/ares

Ares

पायथन बॉटनेट और बैकडोर

रिपॉजिटरी देखें
1.6k47348 साल पहलेKitploit द्वारा समीक्षित

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें

एरेस

एरेस एक पायथन रिमोट एक्सेस टूल है।

चेतावनी: इस सॉफ़्टवेयर का उपयोग केवल अपने वर्तमान कानून के अनुसार करें। इस सॉफ़्टवेयर के दुरुपयोग से कानूनी और नैतिक मुद्दे उत्पन्न हो सकते हैं जिनका मैं समर्थन नहीं करता और न ही इसके लिए जिम्मेदार ठहराया जा सकता हूँ।

एरेस दो मुख्य प्रोग्रामों से बना है:

  • एक कमांड एंड कंट्रोल सर्वर, जो एजेंटों को प्रशासित करने के लिए एक वेब इंटरफ़ेस है
  • एक एजेंट प्रोग्राम, जो समझौता किए गए होस्ट पर चलता है, और CNC के साथ संचार सुनिश्चित करता है

वेब इंटरफ़ेस को पायथन चलाने वाले किसी भी सर्वर पर चलाया जा सकता है। एजेंट को pyinstaller का उपयोग करके नेटिव एक्जीक्यूटेबल्स में संकलित किया जा सकता है।

सेटअप

पायथन आवश्यकताओं को स्थापित करें:

root@kitploit:~
pip install -r requirements.txt

डेटाबेस को प्रारंभ करें:

root@kitploit:~
cd server
./ares.py initdb

लिनक्स पर विंडोज एजेंटों को संकलित करने के लिए, wine सेटअप करें (वैकल्पिक):

root@kitploit:~
./wine_setup.sh

सर्वर

बिल्टिन (डीबग) सर्वर के साथ चलाएँ:

root@kitploit:~
./ares.py runserver -h 0.0.0.0 -p 8080 --threaded

या gunicorn का उपयोग करके चलाएँ:

root@kitploit:~
gunicorn ares:app -b 0.0.0.0:8080 --threads 20

सर्वर अब http://localhost:8080 पर उपलब्ध होना चाहिए

एजेंट

पायथन एजेंट चलाएँ (अपनी आवश्यकताओं के अनुसार config.py अपडेट करें):

root@kitploit:~
cd agent
./agent.py

एक नए एजेंट को स्टैंडअलोन बाइनरी में बनाएँ:

root@kitploit:~
./builder.py -p Linux --server http://localhost:8080 -o agent
./agent

समर्थित विकल्पों की सूची देखने के लिए, ./builder.py -h चलाएँ

root@kitploit:~
./agent/builder.py -h
usage: builder.py [-h] -p PLATFORM --server SERVER -o OUTPUT
                  [--hello-interval HELLO_INTERVAL] [--idle_time IDLE_TIME]
                  [--max_failed_connections MAX_FAILED_CONNECTIONS]
                  [--persistent]

Builds an Ares agent.

optional arguments:
  -h, --help            show this help message and exit
  -p PLATFORM, --platform PLATFORM
                        Target platform (Windows, Linux).
  --server SERVER       Address of the CnC server (e.g http://localhost:8080).
  -o OUTPUT, --output OUTPUT
                        Output file name.
  --hello-interval HELLO_INTERVAL
                        Delay (in seconds) between each request to the CnC.
  --idle_time IDLE_TIME
                        Inactivity time (in seconds) after which to go idle.
                        In idle mode, the agent pulls commands less often
                        (every <hello_interval> seconds).
  --max_failed_connections MAX_FAILED_CONNECTIONS
                        The agent will self destruct if no contact with the
                        CnC can be made <max_failed_connections> times in a
                        row.
  --persistent          Automatically install the agent on first run.

समर्थित एजेंट कमांड

root@kitploit:~
<any shell command>
Executes the command in a shell and return its output.

upload <local_file>
Uploads <local_file> to server.

download <url> <destination>
Downloads a file through HTTP(S).

zip <archive_name> <folder>
Creates a zip archive of the folder.

screenshot
Takes a screenshot.

python <command|file>
Runs a Python command or local file.

persist
Installs the agent.

clean
Uninstalls the agent.

exit
Kills the agent.

help
This help.
टूल डाउनलोड करें