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!
WordPress SendIt plugin <= 1.5.9 Blind SQL Injection Vulnerability
# Exploit Title: WordPress SendIt plugin <= 1.5.9 Blind SQL Injection Vulnerability # Google Dork: inurl:"wp-content/plugins/sendit/submit.php" # Date: 2011-08-25 # Author: evilsocket ( evilsocket [at] gmail [dot] com ) # Software Link: http://wordpress.org/extend/plugins/sendit/ # Version: 1.5.9 (tested with magic quotes OFF) --------------- Vulnerable code --------------- [ submit.php line 27 ] $user_count = $wpdb->get_var("SELECT COUNT(*) FROM $table_email where email ='$_POST[email_add]' and id_lista = '$_POST[lista]';"); As you can see, $_POST[lista] parameter is nor validated neither escaped, so you can blind sql inject it using $user_count for the boolean condition checking : [ submit.php line 29 ] if($user_count>0) : $errore_presente = "<div class=\"error\">".__('email address already present', 'sendit')."</div>"; die($errore_presente); --- PoC --- POST: email_add = some.random.regexp.valid.email@domain.ltd lista = BLIND SQL INJECTION HERE TO: http://www.site.com/wp-content/plugins/sendit/submit.php # 0day.today [2024-11-16] #