При неудаче в запросе к БД валидные данные сохраняются в yaml-файл (script.php)
This commit is contained in:
parent
adc163edfe
commit
826ae10f10
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
||||
.log
|
||||
.log
|
||||
.yaml
|
||||
|
120
app/app.php
120
app/app.php
@ -8,54 +8,42 @@ use GuzzleHttp\Exception\ClientException;
|
||||
use GuzzleHttp\Exception\ConnectException;
|
||||
use GuzzleHttp\Exception\RequestException;
|
||||
use GuzzleHttp\Exception\ServerException;
|
||||
use GuzzleHttp\RequestOptions;
|
||||
use App\Library\ContingentParser;
|
||||
use App\Library\Database;
|
||||
use GuzzleHttp\Client;
|
||||
|
||||
$pathLogErrorHtml = 'error-html.log';
|
||||
$pathLogErrorHttp = 'error-http.log';
|
||||
|
||||
Logger::log($pathLogErrorHtml, 'start');
|
||||
Logger::log($pathLogErrorHttp, 'start');
|
||||
$pathLogErrorHttp = 'error-http-curl.log';
|
||||
|
||||
$dbOpendata = new Database(new DatabaseConfig('opendata'));
|
||||
$dbNiimko = new Database(new DatabaseConfig('niimko'));
|
||||
exit(0);
|
||||
|
||||
$sites = ContingentManager::getInstance()->getSites($dbNiimko);
|
||||
$specializations = ContingentManager::getInstance()->getSpecializations($dbNiimko);
|
||||
$sql = 'SELECT DISTINCT org_id FROM sveden_education_contingent';
|
||||
$org = $dbOpendata->selectQuery($sql);
|
||||
print_r($sites);
|
||||
$orgs = ContingentManager::getInstance()->getOrgs($dbOpendata);
|
||||
// print_r($sites);
|
||||
// print_r($specializations);
|
||||
// print_r($org);
|
||||
$orgs = [];
|
||||
foreach ($org as $o) {
|
||||
$orgs[] = $o['org_id'];
|
||||
}
|
||||
unset($org);
|
||||
|
||||
$errorSites = [];
|
||||
$filename = 'error-html.log';
|
||||
$array = file($filename);
|
||||
for ($i = 0; $i < count($array); $i++) {
|
||||
$arr = explode(' ', $array[$i]);
|
||||
if (!in_array($arr[2], $orgs)) {
|
||||
$errorSites[] = $arr[2];
|
||||
}
|
||||
}
|
||||
$filename = 'error-http.log';
|
||||
$array = file($filename);
|
||||
for ($i = 0; $i < count($array); $i++) {
|
||||
$arr = explode(' ', $array[$i]);
|
||||
if (!in_array($arr[2], $orgs)) {
|
||||
$errorSites[] = $arr[2];
|
||||
}
|
||||
}
|
||||
// $errorSites = [];
|
||||
// $filename = 'error-html.log';
|
||||
// $array = file($filename);
|
||||
// for ($i = 0; $i < count($array); $i++) {
|
||||
// $arr = explode(' ', $array[$i]);
|
||||
// if (!in_array($arr[2], $orgs)) {
|
||||
// $errorSites[] = $arr[2];
|
||||
// }
|
||||
// }
|
||||
// $filename = 'error-http.log';
|
||||
// $array = file($filename);
|
||||
// for ($i = 0; $i < count($array); $i++) {
|
||||
// $arr = explode(' ', $array[$i]);
|
||||
// if (!in_array($arr[2], $orgs)) {
|
||||
// $errorSites[] = $arr[2];
|
||||
// }
|
||||
// }
|
||||
|
||||
$status = null;
|
||||
|
||||
$start = 600;
|
||||
$start = 91;
|
||||
|
||||
for ($i = $start; $i < count($sites); $i++) {
|
||||
// Нет URL сайта вуза
|
||||
@ -69,26 +57,19 @@ for ($i = $start; $i < count($sites); $i++) {
|
||||
continue;
|
||||
}
|
||||
// С ошибками разметки игнорируем
|
||||
if (in_array($sites[$i]['org_id'], $errorSites)) {
|
||||
continue;
|
||||
}
|
||||
// if (in_array($sites[$i]['org_id'], $errorSites)) {
|
||||
// continue;
|
||||
// }
|
||||
try {
|
||||
$client = new Client([
|
||||
RequestOptions::ALLOW_REDIRECTS => [
|
||||
'max' => 10,
|
||||
'strict' => true,
|
||||
'referer' => true,
|
||||
'allow_directs' => true,
|
||||
'track_redirects' => true,
|
||||
'headers' => [
|
||||
'User-Agent' => '
|
||||
Mozilla/5.0 (X11; Linux x86_64)
|
||||
AppleWebKit/537.36 (KHTML, like Gecko)
|
||||
Chrome/124.0.0.0 YaBrowser/24.6.0.0 Safari/537.36
|
||||
',
|
||||
'Content-Type' => 'text/html;',
|
||||
'charset' => 'utf-8'
|
||||
]
|
||||
'allow_directs' => true,
|
||||
'track_redirects' => true,
|
||||
'verify' => false,
|
||||
// 'http_errors' => false,
|
||||
'headers' => [
|
||||
'User-Agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 YaBrowser/24.6.0.0 Safari/537.36',
|
||||
'Content-Type' => 'text/html;charset=utf-8',
|
||||
'timeout' => 300
|
||||
]
|
||||
]);
|
||||
|
||||
@ -96,8 +77,8 @@ for ($i = $start; $i < count($sites); $i++) {
|
||||
$url = ContingentManager::getInstance()->buildURL($url);
|
||||
print(($i+1).". Current url: $url\n");
|
||||
|
||||
$response = $client->get($url, ['timeout' => 300]);
|
||||
$status = $response->getStatusCode();
|
||||
$response = $client->get($url);
|
||||
echo $response->getStatusCode() .PHP_EOL;
|
||||
|
||||
$html = $response->getBody()->getContents();
|
||||
$parser = new ContingentParser($html, '//tr[@itemprop="eduChislen"]//');
|
||||
@ -109,34 +90,31 @@ for ($i = $start; $i < count($sites); $i++) {
|
||||
// Добавляем поле org_id
|
||||
ContingentManager::getInstance()->addOrgId($contingent, $sites[$i]['org_id']);
|
||||
print_r($contingent);
|
||||
} catch (ClientException $e) {
|
||||
$status = 0;
|
||||
} catch (RequestException $e) {
|
||||
$status = 0;
|
||||
} catch (ConnectException $e) {
|
||||
$status = 0;
|
||||
} catch (ServerException $e) {
|
||||
$status = 0;
|
||||
} finally {
|
||||
if ($status != 200) {
|
||||
$message = $sites[$i]['org_id'] . ' ' . $sites[$i]['site'];
|
||||
Logger::log($pathLogErrorHttp, $message);
|
||||
} else if (empty($contingent)) {
|
||||
if (empty($contingent)) {
|
||||
$message = $sites[$i]['org_id'] . ' ' . $sites[$i]['site'];
|
||||
Logger::log($pathLogErrorHtml, $message);
|
||||
} else {
|
||||
$set = ContingentManager::getInstance()->checkContingent($contingent);
|
||||
if ($set) {
|
||||
// Заносим в базу
|
||||
// ContingentManager::getInstance()->insertContingent($dbOpendata, $contingent);
|
||||
ContingentManager::getInstance()->insertContingent($dbOpendata, $contingent);
|
||||
} else {
|
||||
$message = $sites[$i]['org_id'] . ' ' . $sites[$i]['site'];
|
||||
Logger::log($pathLogErrorHtml, $message);
|
||||
}
|
||||
unset($contingent);
|
||||
}
|
||||
} catch (ClientException $e) {
|
||||
$message = implode(' ', $sites[$i]) . "\t" . $e->getCode() . "\t" . $e->getMessage();
|
||||
Logger::log($pathLogErrorHttp, $message);
|
||||
} catch (RequestException $e) {
|
||||
$message = implode(' ', $sites[$i]) . "\t" . $e->getCode() . "\t" . $e->getMessage();
|
||||
Logger::log($pathLogErrorHttp, $message);
|
||||
} catch (ConnectException $e) {
|
||||
$message = implode(' ', $sites[$i]) . "\t" . $e->getCode() . "\t" . $e->getMessage();
|
||||
Logger::log($pathLogErrorHttp, $message);
|
||||
} catch (ServerException $e) {
|
||||
$message = implode(' ', $sites[$i]) . "\t" . $e->getCode() . "\t" . $e->getMessage();
|
||||
Logger::log($pathLogErrorHttp, $message);
|
||||
}
|
||||
}
|
||||
|
||||
Logger::log($pathLogErrorHtml, 'stop');
|
||||
Logger::log($pathLogErrorHttp, 'stop');
|
@ -70,6 +70,17 @@ final class ContingentManager
|
||||
return $specializations;
|
||||
}
|
||||
|
||||
public function getOrgs(Database $db) : array
|
||||
{
|
||||
$sql = 'SELECT DISTINCT org_id FROM sveden_education_contingent';
|
||||
$org = $db->selectQuery($sql);
|
||||
$orgs = [];
|
||||
foreach ($org as $o) {
|
||||
$orgs[] = $o['org_id'];
|
||||
}
|
||||
return $orgs;
|
||||
}
|
||||
|
||||
public function buildURL(string $url): string
|
||||
{
|
||||
// Строит -> https://<base_uri>/sveden/education/
|
||||
|
@ -52,16 +52,15 @@ class ContingentParser
|
||||
{
|
||||
$data = $this->parse();
|
||||
$records = array();
|
||||
|
||||
if ($data == null) return [];
|
||||
|
||||
// var_dump($data['eduName']->item(0));
|
||||
// exit(0);
|
||||
|
||||
$equel = $data['eduName']->length;
|
||||
$equal = $data['eduName']->length;
|
||||
foreach ($data as $field) {
|
||||
if ($field->length == 0) {
|
||||
return [];
|
||||
}
|
||||
if ($field->length != $equel) {
|
||||
if ($field->length != $equal) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
@ -5,6 +5,7 @@ use App\Library\DatabaseConfig;
|
||||
use App\Library\Logger;
|
||||
use PDOException;
|
||||
use PDO;
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
class Database
|
||||
{
|
||||
private PDO $pdo;
|
||||
@ -66,7 +67,10 @@ class Database
|
||||
}
|
||||
$stmt->execute();
|
||||
Logger::log(self::$logFile, "Запрос выполнен успешно!");
|
||||
} catch (PDOException $e) {
|
||||
} catch (PDOException $e) {
|
||||
// При ошибке запроса сохраняем валидные данные в yaml-файл
|
||||
$yaml = Yaml::dump($params);
|
||||
file_put_contents(__DIR__ . '/not-recorded-in-db.yaml', $yaml);
|
||||
$message = "Ошибка запроса:" . $e->getMessage();
|
||||
Logger::log(self::$logFile, $message);
|
||||
}
|
||||
|
149
database.log
149
database.log
@ -67,3 +67,152 @@
|
||||
2024-08-16 11:59:25 Подключение успешно!
|
||||
2024-08-16 11:59:25 Подключение прервано!
|
||||
2024-08-16 11:59:25 Подключение прервано!
|
||||
2024-08-16 12:09:59 Подключение успешно!
|
||||
2024-08-16 12:09:59 Подключение успешно!
|
||||
2024-08-16 12:10:35 Подключение успешно!
|
||||
2024-08-16 12:10:35 Подключение успешно!
|
||||
2024-08-16 12:11:10 Подключение успешно!
|
||||
2024-08-16 12:11:10 Подключение успешно!
|
||||
2024-08-16 12:11:35 Подключение успешно!
|
||||
2024-08-16 12:11:35 Подключение успешно!
|
||||
2024-08-16 12:16:25 Подключение успешно!
|
||||
2024-08-16 12:16:25 Подключение успешно!
|
||||
2024-08-16 12:17:52 Подключение успешно!
|
||||
2024-08-16 12:17:52 Подключение успешно!
|
||||
2024-08-16 12:19:16 Подключение успешно!
|
||||
2024-08-16 12:19:16 Подключение успешно!
|
||||
2024-08-16 12:24:03 Подключение успешно!
|
||||
2024-08-16 12:24:03 Подключение успешно!
|
||||
2024-08-16 12:24:52 Подключение успешно!
|
||||
2024-08-16 12:24:52 Подключение успешно!
|
||||
2024-08-16 12:26:03 Подключение успешно!
|
||||
2024-08-16 12:26:03 Подключение успешно!
|
||||
2024-08-16 12:26:53 Подключение успешно!
|
||||
2024-08-16 12:26:53 Подключение успешно!
|
||||
2024-08-16 12:27:31 Подключение успешно!
|
||||
2024-08-16 12:27:31 Подключение успешно!
|
||||
2024-08-16 12:30:45 Подключение успешно!
|
||||
2024-08-16 12:30:45 Подключение успешно!
|
||||
2024-08-16 12:31:10 Подключение успешно!
|
||||
2024-08-16 12:31:10 Подключение успешно!
|
||||
2024-08-16 13:31:04 Подключение успешно!
|
||||
2024-08-16 13:31:04 Подключение успешно!
|
||||
2024-08-16 13:31:05 Подключение прервано!
|
||||
2024-08-16 13:31:05 Подключение прервано!
|
||||
2024-08-16 13:31:40 Подключение успешно!
|
||||
2024-08-16 13:31:40 Подключение успешно!
|
||||
2024-08-16 13:32:46 Подключение успешно!
|
||||
2024-08-16 13:32:46 Подключение успешно!
|
||||
2024-08-16 13:33:08 Подключение успешно!
|
||||
2024-08-16 13:33:08 Подключение успешно!
|
||||
2024-08-16 13:33:43 Подключение успешно!
|
||||
2024-08-16 13:33:43 Подключение успешно!
|
||||
2024-08-16 13:34:04 Подключение успешно!
|
||||
2024-08-16 13:34:04 Подключение успешно!
|
||||
2024-08-16 13:34:55 Подключение успешно!
|
||||
2024-08-16 13:34:55 Подключение успешно!
|
||||
2024-08-16 13:35:41 Подключение успешно!
|
||||
2024-08-16 13:35:41 Подключение успешно!
|
||||
2024-08-16 13:35:41 Подключение прервано!
|
||||
2024-08-16 13:35:41 Подключение прервано!
|
||||
2024-08-16 13:36:14 Подключение успешно!
|
||||
2024-08-16 13:36:14 Подключение успешно!
|
||||
2024-08-16 13:36:15 Подключение прервано!
|
||||
2024-08-16 13:36:15 Подключение прервано!
|
||||
2024-08-16 13:37:24 Подключение успешно!
|
||||
2024-08-16 13:37:24 Подключение успешно!
|
||||
2024-08-16 13:37:24 Подключение прервано!
|
||||
2024-08-16 13:37:24 Подключение прервано!
|
||||
2024-08-16 13:42:32 Подключение успешно!
|
||||
2024-08-16 13:42:32 Подключение успешно!
|
||||
2024-08-16 13:42:57 Подключение успешно!
|
||||
2024-08-16 13:42:57 Подключение успешно!
|
||||
2024-08-16 13:43:39 Подключение успешно!
|
||||
2024-08-16 13:43:39 Подключение успешно!
|
||||
2024-08-16 13:45:59 Подключение успешно!
|
||||
2024-08-16 13:45:59 Подключение успешно!
|
||||
2024-08-16 13:49:06 Подключение успешно!
|
||||
2024-08-16 13:49:06 Подключение успешно!
|
||||
2024-08-16 13:49:32 Подключение успешно!
|
||||
2024-08-16 13:49:32 Подключение успешно!
|
||||
2024-08-16 13:50:12 Подключение успешно!
|
||||
2024-08-16 13:50:12 Подключение успешно!
|
||||
2024-08-16 13:50:46 Подключение успешно!
|
||||
2024-08-16 13:50:46 Подключение успешно!
|
||||
2024-08-16 13:53:12 Подключение успешно!
|
||||
2024-08-16 13:53:12 Подключение успешно!
|
||||
2024-08-16 13:54:03 Подключение успешно!
|
||||
2024-08-16 13:54:03 Подключение успешно!
|
||||
2024-08-16 13:54:39 Подключение успешно!
|
||||
2024-08-16 13:54:39 Подключение успешно!
|
||||
2024-08-16 13:55:58 Подключение успешно!
|
||||
2024-08-16 13:55:58 Подключение успешно!
|
||||
2024-08-16 13:57:14 Подключение успешно!
|
||||
2024-08-16 13:57:14 Подключение успешно!
|
||||
2024-08-16 13:59:27 Подключение успешно!
|
||||
2024-08-16 13:59:27 Подключение успешно!
|
||||
2024-08-16 14:00:12 Подключение успешно!
|
||||
2024-08-16 14:00:12 Подключение успешно!
|
||||
2024-08-16 14:02:01 Подключение успешно!
|
||||
2024-08-16 14:02:01 Подключение успешно!
|
||||
2024-08-16 14:02:49 Подключение успешно!
|
||||
2024-08-16 14:02:49 Подключение успешно!
|
||||
2024-08-16 14:04:42 Подключение успешно!
|
||||
2024-08-16 14:04:42 Подключение успешно!
|
||||
2024-08-16 14:05:34 Подключение успешно!
|
||||
2024-08-16 14:05:34 Подключение успешно!
|
||||
2024-08-16 14:06:03 Подключение успешно!
|
||||
2024-08-16 14:06:03 Подключение успешно!
|
||||
2024-08-16 14:07:44 Подключение успешно!
|
||||
2024-08-16 14:07:44 Подключение успешно!
|
||||
2024-08-16 14:17:30 Подключение успешно!
|
||||
2024-08-16 14:17:30 Подключение успешно!
|
||||
2024-08-16 14:20:14 Подключение успешно!
|
||||
2024-08-16 14:20:14 Подключение успешно!
|
||||
2024-08-16 14:20:15 Подключение прервано!
|
||||
2024-08-16 14:20:15 Подключение прервано!
|
||||
2024-08-16 14:24:58 Подключение успешно!
|
||||
2024-08-16 14:24:58 Подключение успешно!
|
||||
2024-08-16 16:59:25 Подключение прервано!
|
||||
2024-08-16 16:59:25 Подключение прервано!
|
||||
2024-08-19 05:25:55 Подключение успешно!
|
||||
2024-08-19 05:25:55 Подключение успешно!
|
||||
2024-08-19 05:26:19 Подключение успешно!
|
||||
2024-08-19 05:26:19 Подключение успешно!
|
||||
2024-08-19 05:26:31 Запрос выполнен успешно!
|
||||
2024-08-19 05:26:33 Запрос выполнен успешно!
|
||||
2024-08-19 05:46:43 Ошибка запроса:SQLSTATE[HY000]: General error: 2006 MySQL server has gone away
|
||||
2024-08-19 05:47:34 Подключение успешно!
|
||||
2024-08-19 05:47:34 Подключение успешно!
|
||||
2024-08-19 05:48:15 Подключение успешно!
|
||||
2024-08-19 05:48:15 Подключение успешно!
|
||||
2024-08-19 05:50:37 Запрос выполнен успешно!
|
||||
2024-08-19 05:51:07 Запрос выполнен успешно!
|
||||
2024-08-19 05:51:29 Запрос выполнен успешно!
|
||||
2024-08-19 05:51:33 Запрос выполнен успешно!
|
||||
2024-08-19 05:53:43 Запрос выполнен успешно!
|
||||
2024-08-19 05:54:00 Запрос выполнен успешно!
|
||||
2024-08-19 05:54:02 Запрос выполнен успешно!
|
||||
2024-08-19 06:13:54 Ошибка запроса:SQLSTATE[HY000]: General error: 2006 MySQL server has gone away
|
||||
2024-08-19 06:13:55 Подключение прервано!
|
||||
2024-08-19 06:13:55 Подключение прервано!
|
||||
2024-08-19 06:20:43 Подключение успешно!
|
||||
2024-08-19 06:20:43 Подключение успешно!
|
||||
2024-08-19 06:40:07 Ошибка запроса:SQLSTATE[HY000]: General error: 2006 MySQL server has gone away
|
||||
2024-08-19 06:40:07 Подключение прервано!
|
||||
2024-08-19 06:40:07 Подключение прервано!
|
||||
2024-08-19 06:42:35 Подключение успешно!
|
||||
2024-08-19 06:42:35 Запрос выполнен успешно!
|
||||
2024-08-19 06:42:35 Подключение прервано!
|
||||
2024-08-19 06:44:45 Подключение успешно!
|
||||
2024-08-19 06:44:45 Подключение успешно!
|
||||
2024-08-19 06:47:35 Подключение успешно!
|
||||
2024-08-19 06:47:35 Подключение успешно!
|
||||
2024-08-19 06:49:50 Запрос выполнен успешно!
|
||||
2024-08-19 06:57:50 Запрос выполнен успешно!
|
||||
2024-08-19 07:01:55 Подключение успешно!
|
||||
2024-08-19 07:01:55 Подключение прервано!
|
||||
2024-08-19 07:02:32 Подключение успешно!
|
||||
2024-08-19 07:02:32 Подключение прервано!
|
||||
2024-08-19 07:05:50 Подключение успешно!
|
||||
2024-08-19 07:05:50 Подключение успешно!
|
||||
|
@ -502,4 +502,78 @@
|
||||
2024-08-15 15:45:42 60248 http://www.tashiit.uz/index.php/tr/
|
||||
2024-08-15 15:45:47 61220 www.kazeu.kz
|
||||
2024-08-15 15:45:54 61248 http://www.cfuv.ru/
|
||||
2024-08-16 11:59:25 start
|
||||
2024-08-16 14:51:08 556 http://www.nstu.ru
|
||||
2024-08-16 15:41:39 845 http://www.rusoil.net
|
||||
2024-08-16 16:43:11 3125 http://www.sseu.ru/
|
||||
2024-08-16 16:56:42 4158 www.imeder.ru
|
||||
|
||||
2024-08-19 06:47:38 2 http://adygnet.ru
|
||||
2024-08-19 06:47:45 6 http://www.spbguga.ru
|
||||
2024-08-19 06:47:47 7 http://www.amchs.ru
|
||||
2024-08-19 06:47:48 11 http://www.ranepa.ru
|
||||
2024-08-19 06:47:56 16 http://www.atiso.ru
|
||||
2024-08-19 06:48:12 22 http://www.asau.ru
|
||||
2024-08-19 06:49:17 26 http://www.asu.ru
|
||||
2024-08-19 06:49:24 28 http://amursma.ru
|
||||
2024-08-19 06:49:26 29 http://www.amursu.ru/index.php?lang=ru
|
||||
2024-08-19 06:50:20 37 http://narfu.ru
|
||||
2024-08-19 06:50:22 40 http://asu.edu.ru/
|
||||
2024-08-19 06:50:23 41 http://www.astu.org
|
||||
2024-08-19 06:50:24 42 http://www.aucu.ru
|
||||
2024-08-19 06:50:41 52 http://www.bagsurb.ru
|
||||
2024-08-19 06:52:11 53 http://www.bsau.ru
|
||||
2024-08-19 06:52:12 54 http://www.bashgmu.ru
|
||||
2024-08-19 06:52:14 55 http://bspu.ru/
|
||||
2024-08-19 06:52:16 57 http://bsaa.edu.ru
|
||||
2024-08-19 06:52:19 60 www.bsu.edu.ru
|
||||
2024-08-19 06:54:44 63 http://www.pgusa.ru
|
||||
2024-08-19 06:54:47 64 http://www.birsk.ru
|
||||
2024-08-19 06:54:49 65 http://www.bgpu.ru/index.jsp
|
||||
2024-08-19 06:54:52 71 http://www.tu-bryansk.ru/
|
||||
2024-08-19 06:54:53 72 http://www.bgsha.ru
|
||||
2024-08-19 06:54:56 75 http://www.vgsa.ru
|
||||
2024-08-19 06:54:57 76 http://www.vlgafc.ru/about/
|
||||
2024-08-19 06:55:01 79 http://www.vvsu.ru
|
||||
2024-08-19 06:55:03 80 http://www.viu-online.ru
|
||||
2024-08-19 06:57:23 87 http://vlgr.ranepa.ru
|
||||
2024-08-19 06:57:25 88 http://www.vgafk.ru
|
||||
2024-08-19 06:57:27 90 http://www.volgmed.ru
|
||||
2024-08-19 06:57:38 91 http://www.volgau.com
|
||||
2024-08-19 06:57:53 94 http://www.volsu.ru
|
||||
2024-08-19 06:57:58 97 http://vgavt-nn.ru/
|
||||
2024-08-19 06:58:04 105 http://www.vglta.vrn.ru
|
||||
2024-08-19 06:58:04 106 http://vsmaburdenko.ru
|
||||
2024-08-19 06:58:05 107 http://www.vsuet.ru
|
||||
2024-08-19 06:58:10 111 http://www.vorstu.ru
|
||||
2024-08-19 06:58:33 112 http://www.vsu.ru
|
||||
2024-08-19 06:59:19 114 http://www.viesm.vrn.ru
|
||||
2024-08-19 06:59:19 115 http://www.vsgaki.ru
|
||||
2024-08-19 06:59:27 120 http://www.vavt.ru
|
||||
2024-08-19 06:59:30 129 http://www.vschoolmus.ru
|
||||
2024-08-19 06:59:32 131 http://www.hse.ru/
|
||||
2024-08-19 06:59:34 133 http://shepkinskoe.ru
|
||||
2024-08-19 06:59:37 135 http://www.kigit.ru
|
||||
2024-08-19 06:59:40 142 http://www.vgsha.info/
|
||||
2024-08-19 07:10:58 149 www.gorskigau.com
|
||||
2024-08-19 07:11:20 150 http://www.gubkin.ru
|
||||
2024-08-19 07:11:21 151 http://rguts.ru
|
||||
2024-08-19 07:11:52 152 http://www.guu.ru
|
||||
2024-08-19 07:11:57 155 ippolitovka.ru
|
||||
2024-08-19 07:11:59 156 http://www.rgsai.ru
|
||||
2024-08-19 07:12:00 157 http://www.guz.ru
|
||||
2024-08-19 07:12:01 158 http://www.gstou.ru
|
||||
2024-08-19 07:12:02 167 http://www.gu-ural.ru
|
||||
2024-08-19 07:12:02 168 http://www.dgma.ru
|
||||
2024-08-19 07:12:04 173 http://dstu.ru
|
||||
2024-08-19 07:12:05 174 http://www.dgu.ru
|
||||
2024-08-19 07:12:08 179 http://www.msun.ru
|
||||
2024-08-19 07:13:24 180 http://dalgau.ru
|
||||
2024-08-19 07:13:29 181 http://www.dv-art.ru
|
||||
2024-08-19 07:15:46 192 http://dipacademy.ru/
|
||||
2024-08-19 07:15:47 195 http://www.donstu.ru
|
||||
2024-08-19 07:15:50 201 http://www.elsu.ru
|
||||
2024-08-19 07:15:50 202 http://eiubp.ru
|
||||
2024-08-19 07:15:51 203 http://www.wuiel.ru
|
||||
2024-08-19 07:15:55 205 http://ivgpu.com
|
||||
2024-08-19 07:16:07 207 http://ivgsha.ru
|
||||
2024-08-19 07:16:09 209 www.isuct.ru
|
||||
|
1202
error-http-curl.log
Normal file
1202
error-http-curl.log
Normal file
@ -0,0 +1,1202 @@
|
||||
2024-08-16 14:25:04 3 achgaa.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'achgaa.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://achgaa.ru/sveden/education/
|
||||
2024-08-16 14:25:04 13 http://www.resvuz.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://resvuz.ru/sveden/education/
|
||||
2024-08-16 14:25:04 16 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 14:25:04 18 http://www.axu.ru 404 Client error: `GET https://axu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, (truncated...)
|
||||
|
||||
2024-08-16 14:25:04 23 http://www.altgaki.org 0 cURL error 6: Could not resolve host: altgaki.org (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://altgaki.org/sveden/education/
|
||||
2024-08-16 14:25:04 24 http://www.agmu.ru/ 503 Server error: `GET https://agmu.ru/sveden/education/` resulted in a `503 Service Unavailable` response:
|
||||
<html><body><h1>503 Service Unavailable</h1>
|
||||
No server is available to handle this request.
|
||||
</body></html>
|
||||
|
||||
|
||||
|
||||
2024-08-16 14:25:05 27 http://www.agni-rt.ru 404 Client error: `GET https://agni-rt.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx</c (truncated...)
|
||||
|
||||
2024-08-16 14:25:06 33 http://www.agpu.net 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://agpu.net/sveden/education/
|
||||
2024-08-16 14:25:06 34 http://апси.рф 0 cURL error 6: Could not resolve host: xn--80aqui.xn--p1ai (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://апси.рф/sveden/education/
|
||||
2024-08-16 14:25:06 36 http://www.nsmu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nsmu.ru/sveden/education/
|
||||
2024-08-16 14:25:06 39 http://agma.astranet.ru/ 0 cURL error 6: Could not resolve host: agma.astranet.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://agma.astranet.ru/sveden/education/
|
||||
2024-08-16 14:25:06 41 http://www.astu.org 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://astu.org/sveden/education/
|
||||
2024-08-16 14:25:06 42 http://www.aucu.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://aucu.ru/sveden/education/
|
||||
2024-08-16 14:27:23 51 http://uni-altai.ru 0 cURL error 28: Failed to connect to uni-altai.ru port 443 after 136531 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://uni-altai.ru/sveden/education/
|
||||
2024-08-16 14:27:23 53 http://www.bsau.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bsau.ru/sveden/education/
|
||||
2024-08-16 14:27:23 56 http://www.bashedu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'bashedu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bashedu.ru/sveden/education/
|
||||
2024-08-16 14:27:23 59
|
||||
2024-08-16 14:27:23 60 www.bsu.edu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'bsu.edu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bsu.edu.ru/sveden/education/
|
||||
2024-08-16 14:27:23 62 http://www2.bigpi.biysk.ru/wwwsite/news.php 0 cURL error 35: OpenSSL/3.0.13: error:0A000438:SSL routines::tlsv1 alert internal error (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://www2.bigpi.biysk.ru/sveden/education/
|
||||
2024-08-16 14:27:23 66 http://www.bgpi.ru 0 cURL error 7: Failed to connect to bgpi.ru port 443 after 61 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bgpi.ru/sveden/education/
|
||||
2024-08-16 14:27:24 68 http://www.bgita.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'bgita.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bgita.ru/sveden/education/
|
||||
2024-08-16 14:27:24 78 http://www.vgmu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'vgmu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vgmu.ru/sveden/education/
|
||||
2024-08-16 14:29:38 82 http://www.vlsu.ru 0 cURL error 28: Failed to connect to vlsu.ru port 443 after 134399 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vlsu.ru/sveden/education/
|
||||
2024-08-16 14:29:38 86 http://ranhigs-nn.ru 0 cURL error 6: Could not resolve host: ranhigs-nn.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ranhigs-nn.ru/sveden/education/
|
||||
2024-08-16 14:29:38 92 http://www.vspu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vspu.ru/sveden/education/
|
||||
2024-08-16 14:29:39 93 http://www.vstu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'vstu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vstu.ru/sveden/education/
|
||||
2024-08-16 14:29:39 97 http://vgavt-nn.ru/ 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vgavt-nn.ru/sveden/education/
|
||||
2024-08-16 14:29:39 99 http://molochnoe.ru 404 Client error: `GET https://molochnoe.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html><head><title>Error 404: Page not found</title></head><body><h1>Page not found</h1><p>The page you requested was no (truncated...)
|
||||
|
||||
2024-08-16 14:29:39 101 http://www.vstu.edu.ru 0 cURL error 6: Could not resolve host: vstu.edu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vstu.edu.ru/sveden/education/
|
||||
2024-08-16 14:29:39 108 http://www.vsau.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000102:SSL routines::unsupported protocol (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vsau.ru/sveden/education/
|
||||
2024-08-16 14:29:39 110 http://www.vspu.ac.ru 0 cURL error 60: SSL certificate problem: EE certificate key too weak (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vspu.ac.ru/sveden/education/
|
||||
2024-08-16 14:29:40 111 http://www.vorstu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'vorstu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vorstu.ru/sveden/education/
|
||||
2024-08-16 14:29:40 114 http://www.viesm.vrn.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'viesm.vrn.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://viesm.vrn.ru/sveden/education/
|
||||
2024-08-16 14:29:40 116 http://esstu.ru/uportal/index.htm 404 Client error: `GET https://esstu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html><head><title>Apache Tomcat/7.0.52 (Ubuntu) - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-seri (truncated...)
|
||||
|
||||
2024-08-16 14:29:40 119 http://www.orun.ru 0 cURL error 7: Failed to connect to orun.ru port 443 after 51 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://orun.ru/sveden/education/
|
||||
2024-08-16 14:29:42 121 http://www.vgik.info 403 Client error: `GET https://vgik.info/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/htm (truncated...)
|
||||
|
||||
2024-08-16 14:29:42 135 http://www.kigit.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kigit.ru/sveden/education/
|
||||
2024-08-16 14:29:42 142 http://www.vgsha.info/ 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vgsha.info/sveden/education/
|
||||
2024-08-16 14:31:57 147 http://ggpi.org/news.php 0 cURL error 28: Failed to connect to ggpi.org port 443 after 135297 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ggpi.org/sveden/education/
|
||||
2024-08-16 14:31:58 168 http://www.dgma.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://dgma.ru/sveden/education/
|
||||
2024-08-16 14:31:58 169 http://www.daggau.rf 0 cURL error 6: Could not resolve host: daggau.rf (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://daggau.rf/sveden/education/
|
||||
2024-08-16 14:31:58 172 http://dgpu.net.ru 0 cURL error 6: Could not resolve host: dgpu.net.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://dgpu.net.ru/sveden/education/
|
||||
2024-08-16 14:31:58 175 http://www.dvags.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'dvags.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://dvags.ru/sveden/education/
|
||||
2024-08-16 14:34:13 182 http://www.fesmu.ru 0 cURL error 28: Failed to connect to fesmu.ru port 443 after 134127 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fesmu.ru/sveden/education/
|
||||
2024-08-16 14:34:13 185
|
||||
2024-08-16 14:34:13 191 http://www.diik.3dn.ru 503 Server error: `GET https://diik.3dn.ru/sveden/education/` resulted in a `503 Service Temporarily Unavailable` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" (truncated...)
|
||||
|
||||
2024-08-16 14:34:18 193 http://www.sssu.ru 0 cURL error 6: Could not resolve host: sssu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sssu.ru/sveden/education/
|
||||
2024-08-16 14:34:19 199 http://www.ims-ural.ru 404 Client error: `GET https://ims-ural.ru/sveden/education/` resulted in a `404 Категория не найдена` response:
|
||||
<!doctype html>
|
||||
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7 ie6 error-page" lang="ru"> <![endif]-->
|
||||
<!--[if (truncated...)
|
||||
|
||||
2024-08-16 14:34:21 202 http://eiubp.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://eiubp.ru/sveden/education/
|
||||
2024-08-16 14:34:21 203 http://www.wuiel.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://wuiel.ru/sveden/education/
|
||||
2024-08-16 14:34:21 210 http://ivanovo.ac.ru 0 cURL error 60: SSL certificate problem: EE certificate key too weak (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ivanovo.ac.ru/sveden/education/
|
||||
2024-08-16 14:34:21 211 http://ispu.ru 0 cURL error 7: Failed to connect to ispu.ru port 443 after 23 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ispu.ru/sveden/education/
|
||||
2024-08-16 14:34:21 244 http://иитэм.ру 0 cURL error 6: Could not resolve host: xn--h1aamx9c.xn--p1ag (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://иитэм.ру/sveden/education/
|
||||
2024-08-16 14:34:21 254 http://www.imtp.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000438:SSL routines::tlsv1 alert internal error (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://imtp.ru/sveden/education/
|
||||
2024-08-16 14:34:22 284 http://www.socius.ru 403 Client error: `GET https://socius.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/htm (truncated...)
|
||||
|
||||
2024-08-16 14:34:22 291 http://miuarh.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://miuarh.ru/sveden/education/
|
||||
2024-08-16 14:34:23 296 http://www.iubip.mashuk.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'iubip.mashuk.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://iubip.mashuk.ru/sveden/education/
|
||||
2024-08-16 14:34:24 304 http://institut-nazran.ru 404 Client error: `GET https://institut-nazran.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" (truncated...)
|
||||
|
||||
2024-08-16 14:34:25 317 www.igsha.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://igsha.ru/sveden/education/
|
||||
2024-08-16 14:34:25 318 http://bgu.ru/ 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bgu.ru/sveden/education/
|
||||
2024-08-16 14:34:25 319 http://mir.ismu.baikal.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mir.ismu.baikal.ru/sveden/education/
|
||||
2024-08-16 14:34:26 328 http://www.ksavm.senet.ru 0 cURL error 7: Failed to connect to ksavm.senet.ru port 443 after 1052 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ksavm.senet.ru/sveden/education/
|
||||
2024-08-16 14:36:40 331 http://kazanconservatoire.ru/ 0 cURL error 28: Failed to connect to kazanconservatoire.ru port 443 after 133766 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kazanconservatoire.ru/sveden/education/
|
||||
2024-08-16 14:36:40 333 http://www.kgmu.kcn.ru 0 cURL error 6: Could not resolve host: kgmu.kcn.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kgmu.kcn.ru/sveden/education/
|
||||
2024-08-16 14:36:40 336 http://www.kstu.ru 0 cURL error 7: Failed to connect to kstu.ru port 443 after 18 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kstu.ru/sveden/education/
|
||||
2024-08-16 14:36:40 342 http://www.kalmsu.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kalmsu.ru/sveden/education/
|
||||
2024-08-16 14:36:40 343 https://tksu.ru/ 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 14:36:40 347 http://www.kchgta.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'kchgta.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kchgta.ru/sveden/education/
|
||||
2024-08-16 14:41:10 349 http://www.kemsma.ru 0 cURL error 28: Failed to connect to kemsma.ru port 443 after 270125 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kemsma.ru/sveden/education/
|
||||
2024-08-16 14:41:11 351 http://www.kemsu.ru/Page/Main 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kemsu.ru/sveden/education/
|
||||
2024-08-16 14:41:16 355 http://www.dksta.ru 404 Client error: `GET https://dksta.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html>
|
||||
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
|
||||
<meta name="robots" content="none"/>
|
||||
(truncated...)
|
||||
|
||||
2024-08-16 14:41:16 362 gukolomna.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://gukolomna.ru/sveden/education/
|
||||
2024-08-16 14:41:17 365 http://www.amgpgu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://amgpgu.ru/sveden/education/
|
||||
2024-08-16 14:41:18 370 http://kguki.com/ 403 Client error: `GET https://kguki.com/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
|
||||
<!--[if IE 7]> <html class (truncated...)
|
||||
|
||||
2024-08-16 14:41:18 376 http://www.kgau.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'kgau.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kgau.ru/sveden/education/
|
||||
2024-08-16 14:41:18 378 http://www.kspu.ru 0 cURL error 7: Failed to connect to kspu.ru port 443 after 131 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kspu.ru/sveden/education/
|
||||
2024-08-16 14:41:19 381 http://www.sfu-kras.ru 403 Client error: `GET https://sfu-kras.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<html>
|
||||
<head><title>403 Forbidden</title></head>
|
||||
<body bgcolor="white">
|
||||
<center><h1>403 Forbidden</h1></center>
|
||||
<hr> (truncated...)
|
||||
|
||||
2024-08-16 14:41:19 385 http://kubstu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kubstu.ru/sveden/education/
|
||||
2024-08-16 14:41:20 394 http://www.kgsha.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kgsha.ru/sveden/education/
|
||||
2024-08-16 14:41:33 395 http://www.kurskmed.com 500 Server error: `GET https://kurskmed.com/sveden/education/` resulted in a `500 Internal Server Error` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" co (truncated...)
|
||||
|
||||
2024-08-16 14:43:46 400 http://lspu.lipetsk.ru 0 cURL error 28: Failed to connect to lspu.lipetsk.ru port 443 after 132777 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://lspu.lipetsk.ru/sveden/education/
|
||||
2024-08-16 14:43:46 401 http://www.stu.lipetsk.ru 403 Client error: `GET https://stu.lipetsk.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/ (truncated...)
|
||||
|
||||
2024-08-16 14:43:47 402 http://www.лэги48.рф 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'лэги48.рф' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://лэги48.рф/sveden/education/
|
||||
2024-08-16 14:43:47 412 http://www.taom.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000102:SSL routines::unsupported protocol (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://taom.ru/sveden/education/
|
||||
2024-08-16 14:43:50 416 http://www.ibi.spb.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'ibi.spb.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ibi.spb.ru/sveden/education/
|
||||
2024-08-16 14:46:05 423 http://www.svgu.ru 0 cURL error 28: Failed to connect to svgu.ru port 443 after 135693 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://svgu.ru/sveden/education/
|
||||
2024-08-16 14:46:05 425 http://slavinst.ru/ 0 cURL error 6: Could not resolve host: slavinst.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://slavinst.ru/sveden/education/
|
||||
2024-08-16 14:46:20 454 http://www.msgpa.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000458:SSL routines::tlsv1 unrecognized name (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://msgpa.ru/sveden/education/
|
||||
2024-08-16 14:46:20 456 http://www.msal.ru 403 Client error: `GET https://msal.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Access Blocked</title>
|
||||
</head>
|
||||
(truncated...)
|
||||
|
||||
2024-08-16 14:46:20 458 http://www.mma.ru 0 cURL error 7: Failed to connect to mma.ru port 443 after 211 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mma.ru/sveden/education/
|
||||
2024-08-16 14:46:22 464 http://www.mgpu.ru 502 Server error: `GET https://mgpu.ru/sveden/education/` resulted in a `502 Bad Gateway` response:
|
||||
<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=de (truncated...)
|
||||
|
||||
2024-08-16 14:46:22 466 http://www.madi.ru 404 Client error: `GET https://madi.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>Ошибка 404 - Неправильный запрос</tit (truncated...)
|
||||
|
||||
2024-08-16 14:46:22 475 https://www.mirea.ru 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 14:46:23 483 http://www.rgsu.net 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rgsu.net/sveden/education/
|
||||
2024-08-16 14:46:23 485 http://www.mstuca.ru 0 cURL error 6: Could not resolve host: mstuca.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mstuca.ru/sveden/education/
|
||||
2024-08-16 14:46:24 489 http://www.miigaik.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://miigaik.ru/sveden/education/
|
||||
2024-08-16 14:46:26 508 http://www.msmsu.ru 404 Client error: `GET https://msmsu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx</c (truncated...)
|
||||
|
||||
2024-08-16 14:46:30 512 http://мпгу.рф 400 Client error: `GET https://мпгу.рф/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>400 Bad Request</title>
|
||||
</head><body>
|
||||
<h1>Bad Req (truncated...)
|
||||
|
||||
2024-08-16 14:46:31 523 http://www.mspu.edu.ru 0 cURL error 60: SSL certificate problem: self-signed certificate in certificate chain (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mspu.edu.ru/sveden/education/
|
||||
2024-08-16 14:46:32 526 http://maem.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://maem.ru/sveden/education/
|
||||
2024-08-16 14:48:45 532 http://www.nizhgma.ru 0 cURL error 28: Failed to connect to nizhgma.ru port 443 after 132515 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nizhgma.ru/sveden/education/
|
||||
2024-08-16 14:48:45 536
|
||||
2024-08-16 14:48:46 541 http://www.nggu.ru 404 Client error: `GET https://nggu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html><html data-page="404"><head><meta http-equiv="content-type" content="text/html;charset=utf-8"><meta http- (truncated...)
|
||||
|
||||
2024-08-16 14:48:46 542 www.rsvpu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rsvpu.ru/sveden/education/
|
||||
2024-08-16 14:48:47 545 http://www.nkfi.ru 404 Client error: `GET https://nkfi.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
<html class="bx-core bx-no-touch bx-no-retina bx-firefox" lang="en">
<head>
<meta name="viewport" conte (truncated...)
|
||||
|
||||
2024-08-16 14:48:47 548 http://www.nsawt.ru 0 cURL error 7: Failed to connect to nsawt.ru port 443 after 112 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nsawt.ru/sveden/education/
|
||||
2024-08-16 14:48:47 549 http://www.sibstrin.ru 0 cURL error 7: Failed to connect to sibstrin.ru port 443 after 228 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sibstrin.ru/sveden/education/
|
||||
2024-08-16 14:51:14 562 http://www.norvuz.ru/index.php?lang=ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://norvuz.ru/sveden/education/
|
||||
2024-08-16 14:51:15 565 http://www.universitys.ru/sugti-obninsk 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://universitys.ru/sveden/education/
|
||||
2024-08-16 14:53:32 566 http://www.iate.obninsk.ru 0 cURL error 28: Failed to connect to iate.obninsk.ru port 443 after 136229 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://iate.obninsk.ru/sveden/education/
|
||||
2024-08-16 14:55:51 570 http://omgau.ru 0 cURL error 28: Failed to connect to omgau.ru port 443 after 139263 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://omgau.ru/sveden/education/
|
||||
2024-08-16 14:58:06 581 http://www.mgogi.ru 0 cURL error 28: Failed to connect to mgogi.ru port 443 after 135167 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mgogi.ru/sveden/education/
|
||||
2024-08-16 14:58:07 583 http://www.ogiik.orel.ru 0 cURL error 7: Failed to connect to ogiik.orel.ru port 443 after 482 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ogiik.orel.ru/sveden/education/
|
||||
2024-08-16 14:58:07 585 http://www.univ-orel.ru 0 cURL error 7: Failed to connect to univ-orel.ru port 443 after 231 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://univ-orel.ru/sveden/education/
|
||||
2024-08-16 14:58:08 590 http://pgsha.penza.net/ 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'pgsha.penza.net' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://pgsha.penza.net/sveden/education/
|
||||
2024-08-16 14:58:09 592 http://www.pnzgu.ru 404 Client error: `GET https://pnzgu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE,chro (truncated...)
|
||||
|
||||
2024-08-16 14:58:10 594 http://www.psma.ru 404 Client error: `GET https://psma.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" (truncated...)
|
||||
|
||||
2024-08-16 14:58:10 600 http://www.psu.ru 0 cURL error 7: Failed to connect to psu.ru port 443 after 268 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://psu.ru/sveden/education/
|
||||
2024-08-16 15:00:25 617 http://pglu.ru 0 cURL error 28: Failed to connect to pglu.ru port 443 after 135073 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://pglu.ru/sveden/education/
|
||||
2024-08-16 15:00:26 620 http://gaugn.info/ 0 cURL error 7: Failed to connect to gaugn.info port 443 after 318 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://gaugn.info/sveden/education/
|
||||
2024-08-16 15:00:26 626 http://www.sportedu.ru/ 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sportedu.ru/sveden/education/
|
||||
2024-08-16 15:00:26 628 http://rpa-mu.ru/ 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rpa-mu.ru/sveden/education/
|
||||
2024-08-16 15:02:41 629 http://rta.customs.ru 0 cURL error 28: Failed to connect to rta.customs.ru port 443 after 134435 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rta.customs.ru/sveden/education/
|
||||
2024-08-16 15:02:41 631 http://www.rea.ru 404 Client error: `GET https://rea.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xml (truncated...)
|
||||
|
||||
2024-08-16 15:02:58 641 http://wwww.rudn.ru/?pagec=1 0 cURL error 6: Could not resolve host: wrudn.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://wrudn.ru/sveden/education/
|
||||
2024-08-16 15:02:59 650 http://www.sfedu.ru 404 Client error: `GET https://sfedu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>An Error Occurred: Not Found</title>
|
||||
(truncated...)
|
||||
|
||||
2024-08-16 15:02:59 659 http://www.rgatu.ru/ 0 cURL error 60: SSL certificate problem: self-signed certificate in certificate chain (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rgatu.ru/sveden/education/
|
||||
2024-08-16 15:02:59 662 http://www.smrgaki.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'smrgaki.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://smrgaki.ru/sveden/education/
|
||||
2024-08-16 15:03:01 672 http://www.samgups.ru 404 Client error: `GET https://samgups.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru" class=" " >
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta nam (truncated...)
|
||||
|
||||
2024-08-16 15:03:01 674 http://www.reaviz.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://reaviz.ru/sveden/education/
|
||||
2024-08-16 15:03:01 678 http://www.spbgavm.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spbgavm.ru/sveden/education/
|
||||
2024-08-16 15:03:01 679
|
||||
2024-08-16 15:03:02 680 http://www.tart.spb.ru 0 cURL error 6: Could not resolve host: tart.spb.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tart.spb.ru/sveden/education/
|
||||
2024-08-16 15:03:02 681 http://www.lesgaft.spb.ru 0 cURL error 7: Failed to connect to lesgaft.spb.ru port 443 after 56 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://lesgaft.spb.ru/sveden/education/
|
||||
2024-08-16 15:03:04 684 http://www.conservatory.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'conservatory.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://conservatory.ru/sveden/education/
|
||||
2024-08-16 15:03:04 686 https://gpma.ru 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 15:03:04 692 http://www.spbgasu.ru/ 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spbgasu.ru/sveden/education/
|
||||
2024-08-16 15:03:05 696 http://www.smtu.ru 404 Client error: `GET https://smtu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
|
||||
<HTML><HEAD><TITLE>Not Found< (truncated...)
|
||||
|
||||
2024-08-16 15:05:20 697 http://www.spbstu.ru/ 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'spbstu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spbstu.ru/sveden/education/
|
||||
2024-08-16 15:07:35 702 http://sut.ru 0 cURL error 28: Failed to connect to www.sut.ru port 8280 after 133836 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for http://www.sut.ru:8280/sveden/education
|
||||
2024-08-16 15:07:38 705 http://www.gup.ru 404 Client error: `GET https://gup.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 7 ]> <html class="ie7 ielt9"> <![endif]-->
|
||||
<!--[if IE 8 ]> <html class="ie8 ielt9"> <![ (truncated...)
|
||||
|
||||
2024-08-16 15:07:38 714 http://unecon.ru 403 Client error: `GET https://unecon.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Access Blocked</title>
|
||||
</head>
|
||||
<body>
|
||||
Access to (truncated...)
|
||||
|
||||
2024-08-16 15:07:38 717 http://www.сгюа.рф 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://сгюа.рф/sveden/education/
|
||||
2024-08-16 15:07:38 726 http://www.nousip.ru 0 cURL error 6: Could not resolve host: nousip.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nousip.ru/sveden/education/
|
||||
2024-08-16 15:07:39 737 http://www.sibsau.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'sibsau.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sibsau.ru/sveden/education/
|
||||
2024-08-16 15:07:40 738 http://www.stu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://stu.ru/sveden/education/
|
||||
2024-08-16 15:07:41 741 http://www.ssga.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'ssga.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ssga.ru/sveden/education/
|
||||
2024-08-16 15:07:41 743 http://www.sibupk.nsk.su 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'sibupk.nsk.su' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sibupk.nsk.su/sveden/education/
|
||||
2024-08-16 15:07:42 744 http://www.sibadi.org 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sibadi.org/sveden/education/
|
||||
2024-08-16 15:07:42 747
|
||||
2024-08-16 15:07:42 749 http://www.safbd.ru 404 Client error: `GET https://safbd.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx</c (truncated...)
|
||||
|
||||
2024-08-16 15:07:42 751 http://www.smolgmu.ru 0 cURL error 7: Failed to connect to smolgmu.ru port 443 after 82 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://smolgmu.ru/sveden/education/
|
||||
2024-08-16 15:07:42 756 http://www.fa.ru/fil/smolensk 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 15:07:43 757 http://www.sgsha.ru 404 Client error: `GET https://sgsha.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF- (truncated...)
|
||||
|
||||
2024-08-16 15:07:43 771 http://www.surgpu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://surgpu.ru/sveden/education/
|
||||
2024-08-16 15:27:37 775
|
||||
2024-08-16 15:27:38 777 http://www.rachmaninov.ru 404 Client error: `GET https://rachmaninov.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<base href="https://rachmaninov.ru/">
|
||||
<meta charset="utf-8">
|
||||
<meta n (truncated...)
|
||||
|
||||
2024-08-16 15:28:08 782 http://tvergma.ru 504 Server error: `GET https://tvergma.ru/sveden/education/` resulted in a `504 Gateway Timeout` response:
|
||||
<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=de (truncated...)
|
||||
|
||||
2024-08-16 15:28:09 787 http://www.vshpi.com 0 cURL error 7: Failed to connect to vshpi.com port 443 after 940 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vshpi.com/sveden/education/
|
||||
2024-08-16 15:28:11 792 http://www.tsuab.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tsuab.ru/sveden/education/
|
||||
2024-08-16 15:28:11 798 http://tsu.tula.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tsu.tula.ru/sveden/education/
|
||||
2024-08-16 15:28:13 799 http://www.tuvsu.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tuvsu.ru/sveden/education/
|
||||
2024-08-16 15:28:15 803 http://tsiac.ru 404 Client error: `GET https://tsiac.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>404. Страница не найдена</title>
|
||||
<meta name="descrip (truncated...)
|
||||
|
||||
2024-08-16 15:28:17 808 http://www.ugsha.ru 0 cURL error 7: Failed to connect to ugsha.ru port 443 after 2375 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ugsha.ru/sveden/education/
|
||||
2024-08-16 15:28:18 828 http://www.usavm.ac.ru 0 cURL error 6: Could not resolve host: usavm.ac.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://usavm.ac.ru/sveden/education/
|
||||
2024-08-16 15:28:18 830 www.rsvpu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rsvpu.ru/sveden/education/
|
||||
2024-08-16 15:28:18 838 http://www.urep.ru 404 Client error: `GET https://urep.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 15:41:39 848 http://www.fa.ru/Pages/home.aspx 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 15:41:40 850 http://www.ael.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ael.ru/sveden/education/
|
||||
2024-08-16 15:41:41 852 http://dvgafk.com 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://dvgafk.com/sveden/education/
|
||||
2024-08-16 15:43:55 859 chifk.ru 0 cURL error 28: Failed to connect to chifk.ru port 443 after 133591 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://chifk.ru/sveden/education/
|
||||
2024-08-16 15:43:55 861 http://rbiu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'rbiu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rbiu.ru/sveden/education/
|
||||
2024-08-16 15:43:55 863 http://www.chgaki.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'chgaki.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://chgaki.ru/sveden/education/
|
||||
2024-08-16 15:43:56 866 http://www.csu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://csu.ru/sveden/education/
|
||||
2024-08-16 15:43:57 874 http://academy21.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'academy21.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://academy21.ru/sveden/education/
|
||||
2024-08-16 15:43:57 875 http://www.chgpu.edu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'chgpu.edu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://chgpu.edu.ru/sveden/education/
|
||||
2024-08-16 15:44:00 880 http://mhatschool.theatre.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'mhatschool.theatre.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mhatschool.theatre.ru/sveden/education/
|
||||
2024-08-16 15:44:00 881 http://sspu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'sspu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sspu.ru/sveden/education/
|
||||
2024-08-16 15:44:01 885 http://urgi.info 0 cURL error 7: Failed to connect to urgi.info port 443 after 327 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://urgi.info/sveden/education/
|
||||
2024-08-16 15:46:14 887 http://www.sakhgu.ru 0 cURL error 28: Failed to connect to sakhgu.ru port 443 after 133133 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sakhgu.ru/sveden/education/
|
||||
2024-08-16 15:46:14 894 https://ysmu.ru 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 15:46:15 917 www.batp.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://batp.ru/sveden/education/
|
||||
2024-08-16 15:46:15 921 http://les-sfu.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://les-sfu.ru/sveden/education/
|
||||
2024-08-16 15:46:15 932 http://www.chirt.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'chirt.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://chirt.ru/sveden/education/
|
||||
2024-08-16 15:46:16 933 http://nti.urfu.ru 404 Client error: `GET https://nti.urfu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Ошибка: Not Found</title>
|
||||
<lin (truncated...)
|
||||
|
||||
2024-08-16 15:46:16 934 http://www.univermvd.ru 404 Client error: `GET https://univermvd.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 15:46:18 935 http://www.apingtu.edu.ru 0 cURL error 6: Could not resolve host: apingtu.edu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://apingtu.edu.ru/sveden/education/
|
||||
2024-08-16 15:46:19 937 http://www.bti.secna.ru 404 Client error: `GET https://bti.secna.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 15:46:20 939 http://www.dpi-ngtu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'dpi-ngtu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://dpi-ngtu.ru/sveden/education/
|
||||
2024-08-16 15:46:20 940 http://www.rubinst.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'rubinst.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rubinst.ru/sveden/education/
|
||||
2024-08-16 15:46:21 947 http://www.of.ugntu.ru/new/ 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://of.ugntu.ru/sveden/education/
|
||||
2024-08-16 15:46:22 948 http://ugntu-str.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ugntu-str.ru/sveden/education/
|
||||
2024-08-16 15:46:22 949 http://www.sfugntu.ru 403 Client error: `GET https://sfugntu.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
|
||||
<!--[if IE 7]> <html class (truncated...)
|
||||
|
||||
2024-08-16 15:46:22 954 http://www.sstu.syzran.ru 0 cURL error 6: Could not resolve host: sstu.syzran.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sstu.syzran.ru/sveden/education/
|
||||
2024-08-16 15:46:22 969 http://www.politech.sbor.ru 0 cURL error 6: Could not resolve host: politech.sbor.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://politech.sbor.ru/sveden/education/
|
||||
2024-08-16 15:46:23 990 http://orengubkin.ru/index.php?id=9 451 Client error: `GET https://orengubkin.ru/sveden/education/` resulted in a `451 Unavailable For Legal Reasons` response:
|
||||
Country not allowed
|
||||
|
||||
2024-08-16 15:48:37 993 http://if-mstuca.ru/site/ 0 cURL error 28: Failed to connect to if-mstuca.ru port 443 after 134232 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://if-mstuca.ru/sveden/education/
|
||||
2024-08-16 15:48:38 994 http://www.rfmstuca.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rfmstuca.ru/sveden/education/
|
||||
2024-08-16 15:48:38 995 http://kfngpu.ru 403 Client error: `GET https://kfngpu.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
|
||||
<!--[if IE 7]> <html class (truncated...)
|
||||
|
||||
2024-08-16 15:48:38 1000 https://www.miu-edu.ru 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 15:48:39 1003 http://www.surikov-vuz.ru 451 Client error: `GET https://surikov-vuz.ru/sveden/education/` resulted in a `451 Unavailable For Legal Reasons` response:
|
||||
Country not allowed
|
||||
|
||||
2024-08-16 15:48:39 1005 http://spbgau-kf.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spbgau-kf.ru/sveden/education/
|
||||
2024-08-16 15:48:39 1012 http://belovo.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://belovo.ru/sveden/education/
|
||||
2024-08-16 15:48:39 1022
|
||||
2024-08-16 15:48:41 1023 http://www.ideka.ru 404 Client error: `GET https://ideka.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
<base href="https://www.ideka.ru/" />
|
||||
<title>Ошибка 404 - д (truncated...)
|
||||
|
||||
2024-08-16 15:48:41 1026 http://sf-misis.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sf-misis.ru/sveden/education/
|
||||
2024-08-16 15:48:41 1032
|
||||
2024-08-16 15:50:56 1039 http://uti.tpu.ru 0 cURL error 28: Failed to connect to uti.tpu.ru port 443 after 135270 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://uti.tpu.ru/sveden/education/
|
||||
2024-08-16 15:53:12 1041 www.bronmadi.ru 0 cURL error 28: Failed to connect to bronmadi.ru port 443 after 135166 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bronmadi.ru/sveden/education/
|
||||
2024-08-16 15:53:12 1043 http://www.lfsibsau.ru 0 cURL error 6: Could not resolve host: lfsibsau.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://lfsibsau.ru/sveden/education/
|
||||
2024-08-16 15:53:13 1045 http://www.spbrca.ru 404 Client error: `GET https://spbrca.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 7]>
|
||||
<html class="ie ie7" lang="ru-RU">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html class="ie ie8" (truncated...)
|
||||
|
||||
2024-08-16 15:55:27 1046 http://vfrta.ru 0 cURL error 28: Failed to connect to vfrta.ru port 443 after 134058 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vfrta.ru/sveden/education/
|
||||
2024-08-16 15:55:27 1047 http://www.donrta.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'donrta.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://donrta.ru/sveden/education/
|
||||
2024-08-16 15:55:28 1053 http://og-ti.ru 404 Client error: `GET https://og-ti.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<meta name="viewport" content="width=devi (truncated...)
|
||||
|
||||
2024-08-16 15:55:28 1054
|
||||
2024-08-16 15:55:28 1059
|
||||
2024-08-16 15:57:42 1311 www.vladimir.fa.ru 0 cURL error 28: Failed to connect to vladimir.fa.ru port 443 after 133809 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vladimir.fa.ru/sveden/education/
|
||||
2024-08-16 15:59:57 1316 http://www.kursk.fa.ru? 0 cURL error 28: Failed to connect to kursk.fa.ru port 443 after 135166 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kursk.fa.ru?/sveden/education/
|
||||
2024-08-16 16:02:12 1317 www.lipetsk.fa.ru 0 cURL error 28: Failed to connect to lipetsk.fa.ru port 443 after 135167 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://lipetsk.fa.ru/sveden/education/
|
||||
2024-08-16 16:04:27 1319 www.orel.fa.ru 0 cURL error 28: Failed to connect to orel.fa.ru port 443 after 135166 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://orel.fa.ru/sveden/education/
|
||||
2024-08-16 16:06:43 1320 http://www.penza.fa.ru 0 cURL error 28: Failed to connect to penza.fa.ru port 443 after 135167 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://penza.fa.ru/sveden/education/
|
||||
2024-08-16 16:08:58 1322 http://www.tula.fa.ru 0 cURL error 28: Failed to connect to tula.fa.ru port 443 after 135168 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tula.fa.ru/sveden/education/
|
||||
2024-08-16 16:08:58 1323 http://www.fa.ru/fil/ufa 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 16:08:58 1324 Кетова Ирина Александровна 0 cURL error 3: URL rejected: Malformed input to a URL function (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://Кетова Ирина Александровна/sveden/education/
|
||||
2024-08-16 16:08:58 1325 http://www.fa.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 16:09:03 1327 http://website.vzfei.ru/novorossiysk/ 0 cURL error 6: Could not resolve host: website.vzfei.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://website.vzfei.ru/sveden/education/
|
||||
2024-08-16 16:11:17 1332 http://oimsla.edu.ru 0 cURL error 28: Failed to connect to oimsla.edu.ru port 443 after 134019 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://oimsla.edu.ru/sveden/education/
|
||||
2024-08-16 16:13:32 1361 http://vfmgei.ru 0 cURL error 28: Failed to connect to vfmgei.ru port 443 after 135166 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vfmgei.ru/sveden/education/
|
||||
2024-08-16 16:13:32 1362 http://www.nfmgei.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'nfmgei.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nfmgei.ru/sveden/education/
|
||||
2024-08-16 16:13:33 1363 http://mgei.kirov.ru 404 Client error: `GET https://mgei.kirov.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:13:35 1365 http://mgei-kaluga.ru 404 Client error: `GET https://mgei-kaluga.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html >
|
||||
<!--[if IE 8]> <html class="ie8" lang="en"> <![endif]-->
|
||||
<!--[if IE 9]> <html class="ie9" lang= (truncated...)
|
||||
|
||||
2024-08-16 16:13:36 1383 http://anapa.rgsu.net/ 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://anapa.rgsu.net/sveden/education/
|
||||
2024-08-16 16:13:36 1414 http://aso-ksui.ru 403 Client error: `GET https://aso-ksui.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/htm (truncated...)
|
||||
|
||||
2024-08-16 16:13:37 1433 http://www.sfu-kras.ru 403 Client error: `GET https://sfu-kras.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<html>
|
||||
<head><title>403 Forbidden</title></head>
|
||||
<body bgcolor="white">
|
||||
<center><h1>403 Forbidden</h1></center>
|
||||
<hr> (truncated...)
|
||||
|
||||
2024-08-16 16:13:37 1436
|
||||
2024-08-16 16:13:37 1437 http://www.fa.ru/fil/krasnodar/ 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 16:15:51 1450 http://www.bgti.ru 0 cURL error 28: Failed to connect to bgti.ru port 443 after 134345 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bgti.ru/sveden/education/
|
||||
2024-08-16 16:15:55 1451 www.privlaw-ural.ru 404 Client error: `GET https://privlaw-ural.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
|
||||
<meta http-eq (truncated...)
|
||||
|
||||
2024-08-16 16:16:00 1470 www.e-stankin.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://e-stankin.ru/sveden/education/
|
||||
2024-08-16 16:16:00 1471
|
||||
2024-08-16 16:16:01 1475 http://www.namvd.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://namvd.ru/sveden/education/
|
||||
2024-08-16 16:16:01 1481 http://www.procuror.spb.ru 404 Client error: `GET https://procuror.spb.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:18:15 1486 http://www.prk.kuzstu.ru 0 cURL error 28: Failed to connect to prk.kuzstu.ru port 443 after 133698 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://prk.kuzstu.ru/sveden/education/
|
||||
2024-08-16 16:18:15 1489 http://kuzstu-nf.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kuzstu-nf.ru/sveden/education/
|
||||
2024-08-16 16:18:15 1490 http://belovokyzgty.ucoz.ru 404 Client error: `GET https://belovokyzgty.ucoz.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<title>HTTP (truncated...)
|
||||
|
||||
2024-08-16 16:18:16 1494 http://afkras.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://afkras.ru/sveden/education/
|
||||
2024-08-16 16:18:16 1524 http://www.omamvd.ru 404 Client error: `GET https://omamvd.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>html{height:100%}body{margin:0 auto;min-height:600px;min-wid (truncated...)
|
||||
|
||||
2024-08-16 16:18:17 1563 http://lawacademy.spb.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://lawacademy.spb.ru/sveden/education/
|
||||
2024-08-16 16:18:17 1564 http://rpa38.ru 0 cURL error 6: Could not resolve host: rpa38.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rpa38.ru/sveden/education/
|
||||
2024-08-16 16:18:17 1566 http://sarrpa.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sarrpa.ru/sveden/education/
|
||||
2024-08-16 16:18:18 1567 http://www.saranskrpa.ru 451 Client error: `GET https://saranskrpa.ru/sveden/education/` resulted in a `451 Unavailable For Legal Reasons` response:
|
||||
Country not allowed
|
||||
|
||||
2024-08-16 16:18:18 1570 http://tula.rpa-mu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tula.rpa-mu.ru/sveden/education/
|
||||
2024-08-16 16:18:18 1571 http://www.rpa-mu-kf.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rpa-mu-kf.ru/sveden/education/
|
||||
2024-08-16 16:18:19 1583 http://www.bfsgu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bfsgu.ru/sveden/education/
|
||||
2024-08-16 16:18:19 1585 http://narhoz-chita.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'narhoz-chita.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://narhoz-chita.ru/sveden/education/
|
||||
2024-08-16 16:18:19 1611 http://acad56.ru 0 cURL error 6: Could not resolve host: acad56.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://acad56.ru/sveden/education/
|
||||
2024-08-16 16:18:20 1617 http://МПИ.РФ 404 Client error: `GET https://МПИ.РФ/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx</c (truncated...)
|
||||
|
||||
2024-08-16 16:18:20 1618 http://www.csu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://csu.ru/sveden/education/
|
||||
2024-08-16 16:18:20 1619 http://www.ifrgufk.ru 0 cURL error 7: Failed to connect to ifrgufk.ru port 443 after 238 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ifrgufk.ru/sveden/education/
|
||||
2024-08-16 16:18:21 1622 http://www.uisi.ru 0 cURL error 52: Empty reply from server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://uisi.ru/sveden/education/
|
||||
2024-08-16 16:18:21 1623 http://www.pijs.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://pijs.ru/sveden/education/
|
||||
2024-08-16 16:18:21 1649
|
||||
2024-08-16 16:18:23 1652 www.tobii.ru 404 Client error: `GET https://tobii.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html lang="en-us" class="no-js ie6 oldie"> <![endif]-->
|
||||
<!--[if IE 7]> <html lang= (truncated...)
|
||||
|
||||
2024-08-16 16:18:23 1653 https://www.tyuiu.ru/branches/nizhnevartovsk/ 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 16:18:23 1679 http://sibsu.ru 0 cURL error 7: Failed to connect to sibsu.ru port 443 after 146 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sibsu.ru/sveden/education/
|
||||
2024-08-16 16:18:23 1686
|
||||
2024-08-16 16:18:23 1692 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:18:23 1698 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:18:23 1699 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:18:24 1700 http://www.atso.ru 0 cURL error 7: Failed to connect to atso.ru port 443 after 253 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atso.ru/sveden/education/
|
||||
2024-08-16 16:18:24 1702 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:18:24 1703 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:18:24 1704 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:18:29 1706 http://www.npi.edu 404 Client error: `GET https://npi.edu/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
|
||||
<meta name="viewport" content="width=device-w (truncated...)
|
||||
|
||||
2024-08-16 16:18:29 1709 http:// bmstu-kaluga.ru 0 cURL error 3: URL rejected: Malformed input to a URL function (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https:// bmstu-kaluga.ru/sveden/education/
|
||||
2024-08-16 16:18:30 1721 http://www.tuapse.rshu.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000102:SSL routines::unsupported protocol (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tuapse.rshu.ru/sveden/education/
|
||||
2024-08-16 16:20:46 1729 http://vis2.ru 0 cURL error 28: Failed to connect to vis2.ru port 443 after 136525 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vis2.ru/sveden/education/
|
||||
2024-08-16 16:20:47 1743 http://igsha.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://igsha.ru/sveden/education/
|
||||
2024-08-16 16:20:49 1773 http://www.gfi.edu.ru/ 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'gfi.edu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://gfi.edu.ru/sveden/education/
|
||||
2024-08-16 16:20:49 1795 http://дрти.рф 502 Server error: `GET https://дрти.рф/sveden/education/` resulted in a `502 Bad Gateway` response:
|
||||
<html>
|
||||
<head><title>502 Bad Gateway</title></head>
|
||||
<body>
|
||||
<center><h1>502 Bad Gateway</h1></center>
|
||||
<hr><center>ngin (truncated...)
|
||||
|
||||
2024-08-16 16:20:49 1814 http://www.afvags.ru 0 cURL error 6: Could not resolve host: afvags.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://afvags.ru/sveden/education/
|
||||
2024-08-16 16:20:50 1830 http://www.iwtsedov.ru 404 Client error: `GET https://iwtsedov.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:20:50 1832 http://iems.ru 0 cURL error 7: Failed to connect to iems.ru port 443 after 238 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://iems.ru/sveden/education/
|
||||
2024-08-16 16:20:50 1872 http://www.unecon.ru 403 Client error: `GET https://unecon.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Access Blocked</title>
|
||||
</head>
|
||||
<body>
|
||||
Access to (truncated...)
|
||||
|
||||
2024-08-16 16:20:51 1881 http://www.belagy.ru 0 cURL error 6: Could not resolve host: belagy.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://belagy.ru/sveden/education/
|
||||
2024-08-16 16:20:51 1888 http://www.krdu-mvd.ru 0 cURL error 60: SSL certificate problem: EE certificate key too weak (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://krdu-mvd.ru/sveden/education/
|
||||
2024-08-16 16:20:51 1906 www.bsu.edu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'bsu.edu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bsu.edu.ru/sveden/education/
|
||||
2024-08-16 16:20:51 1909 http://www.balakovo.sgap.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://balakovo.sgap.ru/sveden/education/
|
||||
2024-08-16 16:20:51 1910 http://www.af.sgap.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://af.sgap.ru/sveden/education/
|
||||
2024-08-16 16:20:51 1911 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:20:52 1928 http://www.vfmgutu.ru 404 Client error: `GET https://vfmgutu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru">
|
||||
|
||||
<head>
|
||||
|
||||
<meta name="viewport" cont (truncated...)
|
||||
|
||||
2024-08-16 16:20:53 1933 http://www.tambov.rane.ru 0 cURL error 6: Could not resolve host: tambov.rane.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tambov.rane.ru/sveden/education/
|
||||
2024-08-16 16:20:55 1947 http://www.apu.fsin.su 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'apu.fsin.su' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://apu.fsin.su/sveden/education/
|
||||
2024-08-16 16:20:55 1951 http://www.tf.rsatu.ru 0 cURL error 7: Failed to connect to tf.rsatu.ru port 443 after 166 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tf.rsatu.ru/sveden/education/
|
||||
2024-08-16 16:20:55 1957 http://nfpglu.ru 0 cURL error 6: Could not resolve host: nfpglu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nfpglu.ru/sveden/education/
|
||||
2024-08-16 16:20:56 1960 http://gelsfedu.ru 404 Client error: `GET https://gelsfedu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html xmlns:umi="http://www.umi-cms.ru/TR/umi" xmlns:xlink="http://www.w3.org/TR/xlink">
|
||||
<head>
|
||||
<meta http-equiv="X-UA-C (truncated...)
|
||||
|
||||
2024-08-16 16:20:56 1987 http://www.ysaa.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ysaa.ru/sveden/education/
|
||||
2024-08-16 16:20:57 1993 http://new.dvgups-sakh.ru 0 cURL error 6: Could not resolve host: new.dvgups-sakh.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://new.dvgups-sakh.ru/sveden/education/
|
||||
2024-08-16 16:20:57 2009 http://kizdgu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'kizdgu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kizdgu.ru/sveden/education/
|
||||
2024-08-16 16:20:58 2016 http://www.ntimgudt.ru 404 Client error: `GET https://ntimgudt.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 8]>
|
||||
<html class="ie ie8" lang="ru-RU"> <![endif]-->
|
||||
<!--[if IE 9]>
|
||||
<html class="ie ie9" (truncated...)
|
||||
|
||||
2024-08-16 16:21:08 2019 www.insagro.ru 0 cURL error 6: Could not resolve host: insagro.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://insagro.ru/sveden/education/
|
||||
2024-08-16 16:21:08 2020 http://www.vherzen.ru 403 Client error: `GET https://vherzen.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
|
||||
<!--[if IE 7]> <html class (truncated...)
|
||||
|
||||
2024-08-16 16:21:08 2063 http://www.rimsou.ryazan.ru 0 cURL error 6: Could not resolve host: rimsou.ryazan.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rimsou.ryazan.ru/sveden/education/
|
||||
2024-08-16 16:21:09 2065 http://www.kimami.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kimami.ru/sveden/education/
|
||||
2024-08-16 16:21:09 2072 http://tshi.tomsk.ru/ 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'tshi.tomsk.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tshi.tomsk.ru/sveden/education/
|
||||
2024-08-16 16:21:09 2073 www.omua.ru 404 Client error: `GET https://omua.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:21:10 2108 http://www.vostok.kai.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000458:SSL routines::tlsv1 unrecognized name (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vostok.kai.ru/sveden/education/
|
||||
2024-08-16 16:21:10 2112 http://www.spig.spb.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spig.spb.ru/sveden/education/
|
||||
2024-08-16 16:21:11 2130 http://dvf-vavt.ru 404 Client error: `GET https://dvf-vavt.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html xmlns:umi="http://www.umi-cms.ru/TR/umi" style="font-size: 14px; line-height: 18px">
|
||||
<head>
|
||||
<meta http-equiv="Cont (truncated...)
|
||||
|
||||
2024-08-16 16:23:34 2142
|
||||
2024-08-16 16:23:34 2149 http://www.csu.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://csu.ru/sveden/education/
|
||||
2024-08-16 16:23:34 2150 http://www.vfrsteu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'vfrsteu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vfrsteu.ru/sveden/education/
|
||||
2024-08-16 16:23:34 2151 http://vfrsute.ru/ 404 Client error: `GET https://vfrsute.ru/sveden/education/` resulted in a `404 NOT FOUND` response:
|
||||
<!DOCTYPE html><html lang="ru-RU"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial (truncated...)
|
||||
|
||||
2024-08-16 16:23:35 2160 http://www.orenrsute.ru 500 Server error: `GET https://orenrsute.ru/sveden/education/` resulted in a `500 Internal Server Error` response
|
||||
2024-08-16 16:23:35 2161 http://www.rea.perm.ru 404 Client error: `GET https://rea.perm.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:23:35 2162
|
||||
2024-08-16 16:23:37 2170 http://www.ifugatu.ru 404 Client error: `GET https://ifugatu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru-RU">
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv=" (truncated...)
|
||||
|
||||
2024-08-16 16:23:37 2184 http://www.hasdgu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'hasdgu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://hasdgu.ru/sveden/education/
|
||||
2024-08-16 16:25:54 2186 http://www.kumertau.ugatu.su 0 cURL error 28: Failed to connect to kumertau.ugatu.su port 443 after 136370 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kumertau.ugatu.su/sveden/education/
|
||||
2024-08-16 16:26:02 2204 http://www.mf.rmat.ru 404 Client error: `GET https://mf.rmat.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html><!--[[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7" lang="ru"><![endif]--><!--[[if IE 7]><html class="lt (truncated...)
|
||||
|
||||
2024-08-16 16:28:46 2273 http://www.nchti.ru 0 cURL error 28: Failed to connect to nchti.ru port 443 after 136315 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nchti.ru/sveden/education/
|
||||
2024-08-16 16:28:46 2274
|
||||
2024-08-16 16:28:47 2275 http://www.krasgup.ru 0 cURL error 6: Could not resolve host: krasgup.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://krasgup.ru/sveden/education/
|
||||
2024-08-16 16:28:49 2276 http://www.samara.gup.ru 404 Client error: `GET https://samara.gup.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<base href="https://samara.gup.ru/">
|
||||
< (truncated...)
|
||||
|
||||
2024-08-16 16:28:49 2285
|
||||
2024-08-16 16:28:50 2286 http://gosacad.karelia.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'gosacad.karelia.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://gosacad.karelia.ru/sveden/education/
|
||||
2024-08-16 16:28:50 2291 http://мпгу.рф 400 Client error: `GET https://мпгу.рф/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>400 Bad Request</title>
|
||||
</head><body>
|
||||
<h1>Bad Req (truncated...)
|
||||
|
||||
2024-08-16 16:28:51 2293 http://мпгу.рф 400 Client error: `GET https://мпгу.рф/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>400 Bad Request</title>
|
||||
</head><body>
|
||||
<h1>Bad Req (truncated...)
|
||||
|
||||
2024-08-16 16:28:51 2297 http://мпгу.рф 400 Client error: `GET https://мпгу.рф/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>400 Bad Request</title>
|
||||
</head><body>
|
||||
<h1>Bad Req (truncated...)
|
||||
|
||||
2024-08-16 16:28:51 2305 http://www.vfrags.ru/index.php/ru/ 0 cURL error 7: Failed to connect to vfrags.ru port 443 after 264 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vfrags.ru/sveden/education/
|
||||
2024-08-16 16:29:11 2336 http://www.miass.susu.ac.ru/NCodes/susu/ 0 cURL error 6: Could not resolve host: miass.susu.ac.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://miass.susu.ac.ru/sveden/education/
|
||||
2024-08-16 16:29:21 2338 http://www.zb-susu.ru/ 0 cURL error 6: Could not resolve host: zb-susu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://zb-susu.ru/sveden/education/
|
||||
2024-08-16 16:29:22 2339 http://www.susu-nv.ru/ 0 cURL error 7: Failed to connect to susu-nv.ru port 443 after 251 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://susu-nv.ru/sveden/education/
|
||||
2024-08-16 16:29:22 2345 http://vgavt-nn.ru/ 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vgavt-nn.ru/sveden/education/
|
||||
2024-08-16 16:29:22 2349 http://vgavt-nn.ru/ 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vgavt-nn.ru/sveden/education/
|
||||
2024-08-16 16:29:22 2350 http://www.vgavt-nn.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vgavt-nn.ru/sveden/education/
|
||||
2024-08-16 16:29:22 2351 http://lf.pstu.ru 0 cURL error 7: Failed to connect to lf.pstu.ru port 443 after 147 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://lf.pstu.ru/sveden/education/
|
||||
2024-08-16 16:29:23 2361 http://www.altame.ru 404 Client error: `GET https://altame.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html><html lang="ru" class="is_adaptive" data-panel-url="https://scp99.hosting.reg.ru:2083"><head><meta charse (truncated...)
|
||||
|
||||
2024-08-16 16:29:24 2363 http://www.smiame.ru 403 Client error: `GET https://smiame.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
|
||||
<!--[if IE 7]> <html class (truncated...)
|
||||
|
||||
2024-08-16 16:31:38 2417 http://www.atidstu.ru 0 cURL error 28: Failed to connect to atidstu.ru port 443 after 133749 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atidstu.ru/sveden/education/
|
||||
2024-08-16 16:31:43 2420 http://www.vuit.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vuit.ru/sveden/education/
|
||||
2024-08-16 16:31:43 2472 http://www.ufali.ru 0 cURL error 60: SSL certificate problem: self-signed certificate in certificate chain (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ufali.ru/sveden/education/
|
||||
2024-08-16 16:31:43 2479 http://www.mofmosu.ru 0 cURL error 7: Failed to connect to mofmosu.ru port 443 after 193 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mofmosu.ru/sveden/education/
|
||||
2024-08-16 16:32:01 2512 http://www.rsuj.ru 404 Client error: `GET https://rsuj.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:32:05 2530 http://osiart.ru 403 Client error: `GET https://osiart.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/htm (truncated...)
|
||||
|
||||
2024-08-16 16:32:06 2532 http://vipe.fsin.su 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'vipe.fsin.su' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vipe.fsin.su/sveden/education/
|
||||
2024-08-16 16:32:06 2541 http://www.ural-mvd.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000438:SSL routines::tlsv1 alert internal error (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ural-mvd.ru/sveden/education/
|
||||
2024-08-16 16:32:13 2569 http://www.sfrpa.ru 404 Client error: `GET https://sfrpa.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html><html lang="ru-RU"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Ст (truncated...)
|
||||
|
||||
2024-08-16 16:34:26 2575 http://www.mvd.stavedu.ru 0 cURL error 28: Failed to connect to mvd.stavedu.ru port 443 after 132978 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mvd.stavedu.ru/sveden/education/
|
||||
2024-08-16 16:34:26 2590 http://smolsgua.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'smolsgua.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://smolsgua.ru/sveden/education/
|
||||
2024-08-16 16:34:27 2644 http://www.nshf.sfedu.ru 404 Client error: `GET https://nshf.sfedu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:34:27 2646 http://www.nfmisis.net 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nfmisis.net/sveden/education/
|
||||
2024-08-16 16:34:27 2655
|
||||
2024-08-16 16:34:27 2709 http://www.vbgherzen.spb.ru 0 cURL error 7: Failed to connect to vbgherzen.spb.ru port 443 after 220 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vbgherzen.spb.ru/sveden/education/
|
||||
2024-08-16 16:34:36 2728 http://mfrgeu.ru/ 404 Client error: `GET https://mfrgeu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html>
|
||||
<html lang="ru-RU">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-widt (truncated...)
|
||||
|
||||
2024-08-16 16:34:36 2733 http://www.origt.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000438:SSL routines::tlsv1 alert internal error (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://origt.ru/sveden/education/
|
||||
2024-08-16 16:35:07 2742 http://mgiit.ru 0 cURL error 35: OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to mgiit.ru:443 (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mgiit.ru/sveden/education/
|
||||
2024-08-16 16:35:07 2744 www.madi21.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://madi21.ru/sveden/education/
|
||||
2024-08-16 16:35:07 2751 http://www.bfsibguti.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bfsibguti.ru/sveden/education/
|
||||
2024-08-16 16:35:08 2787 http://нггти.рф 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'нггти.рф' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://нггти.рф/sveden/education/
|
||||
2024-08-16 16:35:08 2864 http://www.oihps.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000438:SSL routines::tlsv1 alert internal error (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://oihps.ru/sveden/education/
|
||||
2024-08-16 16:38:45 2898 http://www.tiugsha.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tiugsha.ru/sveden/education/
|
||||
2024-08-16 16:38:45 2934 http://pavlovsky.rgsu.net/ 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://pavlovsky.rgsu.net/sveden/education/
|
||||
2024-08-16 16:38:46 2945 http://www.imef.ru 404 Client error: `GET https://imef.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
<title>Страница не найдена</title>
|
||||
(truncated...)
|
||||
|
||||
2024-08-16 16:38:46 2955 upi.kamensktel.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'upi.kamensktel.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://upi.kamensktel.ru/sveden/education/
|
||||
2024-08-16 16:41:03 2957 http://www.ugtu.krasnoturinsk.org 0 cURL error 28: Failed to connect to ugtu.krasnoturinsk.org port 443 after 136850 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ugtu.krasnoturinsk.org/sveden/education/
|
||||
2024-08-16 16:41:03 2974 www.i-eu 0 cURL error 6: Could not resolve host: i-eu (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://i-eu/sveden/education/
|
||||
2024-08-16 16:41:03 2980
|
||||
2024-08-16 16:41:03 2991 http://www.universitys.ru/inupbt-kaluga 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://universitys.ru/sveden/education/
|
||||
2024-08-16 16:41:04 3000 http://www.smolensk-seminaria.ru 444 Client error: `GET https://smolensk-seminaria.ru/sveden/education/` resulted in a `444 ` response
|
||||
2024-08-16 16:41:04 3013 zpit.org 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://zpit.org/sveden/education/
|
||||
2024-08-16 16:41:04 3043 http://www.fa.ru/fil/kaluga 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 16:41:04 3048
|
||||
2024-08-16 16:41:04 3055 http://isea.bratsk.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'isea.bratsk.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://isea.bratsk.ru/sveden/education/
|
||||
2024-08-16 16:41:05 3058 http://www.niyak.spb.ru 404 Client error: `GET https://niyak.spb.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:41:05 3067 http://www.tpi.ac.ru/ 0 cURL error 6: Could not resolve host: tpi.ac.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tpi.ac.ru/sveden/education/
|
||||
2024-08-16 16:41:06 3070 kazanriu.ru 404 Client error: `GET https://kazanriu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>Российский исламский институт</title>
|
||||
<met (truncated...)
|
||||
|
||||
2024-08-16 16:43:12 3164 http://www.rggu.ru 0 cURL error 60: SSL certificate problem: EE certificate key too weak (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rggu.ru/sveden/education/
|
||||
2024-08-16 16:43:12 3188 http://giep-rgeu.ru/ 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'giep-rgeu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://giep-rgeu.ru/sveden/education/
|
||||
2024-08-16 16:43:12 3207 http://мпгу.рф 400 Client error: `GET https://мпгу.рф/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>400 Bad Request</title>
|
||||
</head><body>
|
||||
<h1>Bad Req (truncated...)
|
||||
|
||||
2024-08-16 16:43:13 3216 http://www.shf-sfu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'shf-sfu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://shf-sfu.ru/sveden/education/
|
||||
2024-08-16 16:45:29 3249 http://www.kaichelny.ru 0 cURL error 28: Failed to connect to kaichelny.ru port 443 after 136179 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kaichelny.ru/sveden/education/
|
||||
2024-08-16 16:45:30 3303 http://www.sfranhgs.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'sfranhgs.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sfranhgs.ru/sveden/education/
|
||||
2024-08-16 16:45:30 3325 http://www.rfmumvd.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'rfmumvd.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rfmumvd.ru/sveden/education/
|
||||
2024-08-16 16:45:45 3333 http://spbgup.kirov.ru 0 cURL error 6: Could not resolve host: spbgup.kirov.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spbgup.kirov.ru/sveden/education/
|
||||
2024-08-16 16:45:46 3343 http://www.i-mil.ru 404 Client error: `GET https://i-mil.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru-RU">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="wid (truncated...)
|
||||
|
||||
2024-08-16 16:46:03 3374 http://www.synergy.ru 404 Client error: `GET https://synergy.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html><html lang="ru"><head itemscope itemtype="https://schema.org/WPHeader"> <script> const startRenderTime = (truncated...)
|
||||
|
||||
2024-08-16 16:46:03 3381 http://www.sfvolggasu.ru 0 cURL error 6: Could not resolve host: sfvolggasu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sfvolggasu.ru/sveden/education/
|
||||
2024-08-16 16:46:03 3410 http://www.skf-bgtu.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'skf-bgtu.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://skf-bgtu.ru/sveden/education/
|
||||
2024-08-16 16:46:03 3445 http://www.esb.raj.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'esb.raj.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://esb.raj.ru/sveden/education/
|
||||
2024-08-16 16:46:04 3446 feb.raj.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'feb.raj.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://feb.raj.ru/sveden/education/
|
||||
2024-08-16 16:46:04 3447 http://wsb.raj.ru/ 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'wsb.raj.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://wsb.raj.ru/sveden/education/
|
||||
2024-08-16 16:46:04 3449 http://vrb.raj.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'vrb.raj.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vrb.raj.ru/sveden/education/
|
||||
2024-08-16 16:46:04 3450 http://www.rb.raj.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'rb.raj.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rb.raj.ru/sveden/education/
|
||||
2024-08-16 16:46:04 3451 http://nwb.raj.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'nwb.raj.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://nwb.raj.ru/sveden/education/
|
||||
2024-08-16 16:46:05 3453 http://ub.raj.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'ub.raj.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ub.raj.ru/sveden/education/
|
||||
2024-08-16 16:46:05 3455
|
||||
2024-08-16 16:46:05 3456 http://www.skf-mgei.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://skf-mgei.ru/sveden/education/
|
||||
2024-08-16 16:48:21 3468 http://www.gu-unpk.ru 0 cURL error 28: Failed to connect to gu-unpk.ru port 443 after 136440 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://gu-unpk.ru/sveden/education/
|
||||
2024-08-16 16:48:22 3486 http://www.zfkai.ru 403 Client error: `GET https://zfkai.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/htm (truncated...)
|
||||
|
||||
2024-08-16 16:48:23 3512 http://www.rui-rpa.ru/ 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'rui-rpa.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://rui-rpa.ru/sveden/education/
|
||||
2024-08-16 16:48:23 3524
|
||||
2024-08-16 16:48:23 3540 http://www.art-gzhel.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'art-gzhel.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://art-gzhel.ru/sveden/education/
|
||||
2024-08-16 16:48:23 3580 www.df.rosnou.ru 0 cURL error 60: SSL certificate problem: certificate has expired (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://df.rosnou.ru/sveden/education/
|
||||
2024-08-16 16:48:24 3597 http://www.inzaulsu.ru 451 Client error: `GET https://inzaulsu.ru/sveden/education/` resulted in a `451 Unavailable For Legal Reasons` response:
|
||||
Country not allowed
|
||||
|
||||
2024-08-16 16:48:24 3598 http://www.вфмисис.рф 0 cURL error 6: Could not resolve host: xn--b1amao0abq.xn--p1ai (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://вфмисис.рф/sveden/education/
|
||||
2024-08-16 16:48:24 3606 www.ksai.ru 404 Client error: `GET https://ksai.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:48:24 3615 http://www.fa.ru/fil/omsk/about/Pages/default.aspx 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 16:48:25 3618 http://www.universitys.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://universitys.ru/sveden/education/
|
||||
2024-08-16 16:50:40 3623 http://bepi-edu.ru 0 cURL error 28: Failed to connect to bepi-edu.ru port 443 after 135733 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bepi-edu.ru/sveden/education/
|
||||
2024-08-16 16:50:55 3633 http://dfrpa-mu.ru 0 cURL error 6: Could not resolve host: dfrpa-mu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://dfrpa-mu.ru/sveden/education/
|
||||
2024-08-16 16:50:55 3635 http://www.akadem74.ru 0 cURL error 6: Could not resolve host: akadem74.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://akadem74.ru/sveden/education/
|
||||
2024-08-16 16:50:56 3636 http://www.sport-ural.ru 404 Client error: `GET https://sport-ural.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional (truncated...)
|
||||
|
||||
2024-08-16 16:51:56 3639 http://www.reu32.ru 504 Server error: `GET https://reu32.ru/sveden/education/` resulted in a `504 Gateway Time-out` response:
|
||||
error code: 504
|
||||
|
||||
2024-08-16 16:54:09 3651 http://www.krsk.irgups.ru 0 cURL error 28: Failed to connect to krsk.irgups.ru port 443 after 132960 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://krsk.irgups.ru/sveden/education/
|
||||
2024-08-16 16:54:10 3652 http://zab.megalink.ru 404 Client error: `GET https://zab.megalink.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmln (truncated...)
|
||||
|
||||
2024-08-16 16:56:29 3653 http://www.tolgas.ru 0 cURL error 28: Failed to connect to tolgas.ru port 443 after 138735 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tolgas.ru/sveden/education/
|
||||
2024-08-16 16:56:29 3671 http://mosumvd.com 0 cURL error 60: SSL certificate problem: EE certificate key too weak (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://mosumvd.com/sveden/education/
|
||||
2024-08-16 16:56:29 3689 http://www.imc-i.ru/ 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://imc-i.ru/sveden/education/
|
||||
2024-08-16 16:56:29 3696
|
||||
2024-08-16 16:56:29 3698 http://izhji.ru 0 cURL error 6: Could not resolve host: izhji.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://izhji.ru/sveden/education/
|
||||
2024-08-16 16:56:29 3699 http://www.kazanrpa.ru 0 cURL error 6: Could not resolve host: kazanrpa.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kazanrpa.ru/sveden/education/
|
||||
2024-08-16 16:56:30 3712 http://вгиик.рф 400 Client error: `GET https://вгиик.рф/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
<html>
|
||||
<head><title>400 Bad Request</title></head>
|
||||
<body>
|
||||
<center><h1>400 Bad Request</h1></center>
|
||||
<hr><center>clou (truncated...)
|
||||
|
||||
2024-08-16 16:56:30 3735 www.oren-psuti.ru 0 cURL error 6: Could not resolve host: oren-psuti.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://oren-psuti.ru/sveden/education/
|
||||
2024-08-16 16:56:30 3758 https://j-univer.ru/ 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 16:56:32 3770 http://kiid.ru 0 cURL error 7: Failed to connect to kiid.ru port 443 after 212 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kiid.ru/sveden/education/
|
||||
2024-08-16 16:56:33 3775 http://ngiei.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ngiei.ru/sveden/education/
|
||||
2024-08-16 16:56:33 3804
|
||||
2024-08-16 16:56:33 3816
|
||||
2024-08-16 16:56:33 3817
|
||||
2024-08-16 16:56:33 3821 https://serpukhov-varvsn.mil.ru/ 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 16:56:34 3826 http://www.academy-mozhayskogo.ru 404 Client error: `GET https://academy-mozhayskogo.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru-RU" prefix="og: http://ogp.me/ns#">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="profile" h (truncated...)
|
||||
|
||||
2024-08-16 16:56:34 3842 www.tobolskutmn.ru 0 cURL error 7: Failed to connect to tobolskutmn.ru port 443 after 186 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://tobolskutmn.ru/sveden/education/
|
||||
2024-08-16 16:56:34 3871
|
||||
2024-08-16 16:56:35 3884 аспи.рф 502 Server error: `GET https://аспи.рф/sveden/education/` resulted in a `502 Bad Gateway` response:
|
||||
<html>
|
||||
<head><title>502 Bad Gateway</title></head>
|
||||
<body>
|
||||
<center><h1>502 Bad Gateway</h1></center>
|
||||
<hr><center>ngin (truncated...)
|
||||
|
||||
2024-08-16 16:56:35 3901
|
||||
2024-08-16 16:56:35 3917 http://edu.vgasu.vrn.ru/borisoglebsk 0 cURL error 6: Could not resolve host: edu.vgasu.vrn.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://edu.vgasu.vrn.ru/sveden/education/
|
||||
2024-08-16 16:56:35 3922 www.kfbupk.ru 0 cURL error 60: SSL certificate problem: EE certificate key too weak (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kfbupk.ru/sveden/education/
|
||||
2024-08-16 16:56:35 3932
|
||||
2024-08-16 16:56:36 3940 http://www.vshni.ru 500 Server error: `GET https://vshni.ru/sveden/education/` resulted in a `500 Internal Server Error` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>500 Internal Server Error</title>
|
||||
</head><body>
|
||||
< (truncated...)
|
||||
|
||||
2024-08-16 16:56:36 3941 http://www.vshni.ru 500 Server error: `GET https://vshni.ru/sveden/education/` resulted in a `500 Internal Server Error` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>500 Internal Server Error</title>
|
||||
</head><body>
|
||||
< (truncated...)
|
||||
|
||||
2024-08-16 16:56:36 3962 http://www.kizht.ru 0 cURL error 7: Failed to connect to kizht.ru port 443 after 196 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kizht.ru/sveden/education/
|
||||
2024-08-16 16:56:36 3969
|
||||
2024-08-16 16:56:37 3971 http://www.билгу.рф 400 Client error: `GET https://билгу.рф/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>400 Bad Request</title>
|
||||
</head><body>
|
||||
<h1>Bad Req (truncated...)
|
||||
|
||||
2024-08-16 16:56:37 4023 http://klin.rgsu.net/ 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://klin.rgsu.net/sveden/education/
|
||||
2024-08-16 16:56:38 4054 http://www.bwmi.ru 0 cURL error 7: Failed to connect to bwmi.ru port 443 after 268 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bwmi.ru/sveden/education/
|
||||
2024-08-16 16:56:38 4057 niddesign.org 0 cURL error 6: Could not resolve host: niddesign.org (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://niddesign.org/sveden/education/
|
||||
2024-08-16 16:56:38 4090
|
||||
2024-08-16 16:56:38 4101
|
||||
2024-08-16 16:56:38 4114 www.skfmadi.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://skfmadi.ru/sveden/education/
|
||||
2024-08-16 16:56:38 4148 http://universitys.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://universitys.ru/sveden/education/
|
||||
2024-08-16 16:56:39 4150 www.eletsrosnou.ru 500 Server error: `GET https://eletsrosnou.ru/sveden/education/` resulted in a `500 Internal Server Error` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>500 Internal Server Error</title>
|
||||
</head><body>
|
||||
< (truncated...)
|
||||
|
||||
2024-08-16 16:56:39 4156 http://www.stirzn.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://stirzn.ru/sveden/education/
|
||||
2024-08-16 16:56:43 4165 http://www.asou-mo.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://asou-mo.ru/sveden/education/
|
||||
2024-08-16 16:56:43 4250
|
||||
2024-08-16 16:56:43 4287
|
||||
2024-08-16 16:56:43 4296 www.oivt-sguwt.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'oivt-sguwt.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://oivt-sguwt.ru/sveden/education/
|
||||
2024-08-16 16:56:43 4305 http://budfilsgpi.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://budfilsgpi.ru/sveden/education/
|
||||
2024-08-16 16:56:46 4306 http://www.yesspi.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://yesspi.ru/sveden/education/
|
||||
2024-08-16 16:56:46 4322
|
||||
2024-08-16 16:56:46 4371 http://www.7480040.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://7480040.ru/sveden/education/
|
||||
2024-08-16 16:56:47 4373 http://iuifagprf.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'iuifagprf.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://iuifagprf.ru/sveden/education/
|
||||
2024-08-16 16:56:47 4387 http://www.fa.ru/fil/vladik 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fa.ru/sveden/education/
|
||||
2024-08-16 16:56:47 4392 http://www.spb-fa.ru 0 cURL error 6: Could not resolve host: spb-fa.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spb-fa.ru/sveden/education/
|
||||
2024-08-16 16:56:47 4413
|
||||
2024-08-16 16:56:47 4424
|
||||
2024-08-16 16:56:47 4444 http://www.vigps.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vigps.ru/sveden/education/
|
||||
2024-08-16 16:56:47 4448 http://sibigps.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sibigps.ru/sveden/education/
|
||||
2024-08-16 16:56:47 4580 http://темрюк - мгуту.рф 0 cURL error 3: URL rejected: Malformed input to a URL function (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://темрюк - мгуту.рф/sveden/education/
|
||||
2024-08-16 16:56:52 4621 http://www.s-vfu.chukotka.ru/ 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://s-vfu.chukotka.ru/sveden/education/
|
||||
2024-08-16 16:56:53 4648 http://www.ulfmgutu.ru 0 cURL error 6: Could not resolve host: ulfmgutu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ulfmgutu.ru/sveden/education/
|
||||
2024-08-16 16:56:54 4676 http://iptnn.ru 0 cURL error 6: Could not resolve host: iptnn.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://iptnn.ru/sveden/education/
|
||||
2024-08-16 16:56:54 4683 http://sar.reaviz.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sar.reaviz.ru/sveden/education/
|
||||
2024-08-16 16:56:54 5002 http://daggum.ru 404 Client error: `GET https://daggum.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!doctype html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<link rel="apple-touch-icon" sizes="180x180" hre (truncated...)
|
||||
|
||||
2024-08-16 16:56:55 5007 http://www.spbiir.ru 0 cURL error 35: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spbiir.ru/sveden/education/
|
||||
2024-08-16 16:56:56 5018 http://academy.andriaka.ru/; academy-andria 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'academy.andriaka.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://academy.andriaka.ru/sveden/education/
|
||||
2024-08-16 16:56:57 5023 http://www.vggi.ru 404 Client error: `GET https://vggi.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="Cache-Control" co (truncated...)
|
||||
|
||||
2024-08-16 16:56:57 5031 https://www.filialpskovgu.ru/ 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 16:56:57 5043 http://www.vshni.ru 500 Server error: `GET https://vshni.ru/sveden/education/` resulted in a `500 Internal Server Error` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>500 Internal Server Error</title>
|
||||
</head><body>
|
||||
< (truncated...)
|
||||
|
||||
2024-08-16 16:56:58 5049 http://irkvgik.ru 0 cURL error 60: SSL: no alternative certificate subject name matches target host name 'irkvgik.ru' (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://irkvgik.ru/sveden/education/
|
||||
2024-08-16 16:56:59 5050 http://www.vgik.info 403 Client error: `GET https://vgik.info/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/htm (truncated...)
|
||||
|
||||
2024-08-16 16:56:59 5051 http://www.spkvtk.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000438:SSL routines::tlsv1 alert internal error (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://spkvtk.ru/sveden/education/
|
||||
2024-08-16 16:56:59 5060 http://www.astrisgz.ru 0 cURL error 6: Could not resolve host: astrisgz.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://astrisgz.ru/sveden/education/
|
||||
2024-08-16 16:57:00 5088 http://synergy.ru 404 Client error: `GET https://synergy.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html><html lang="ru"><head itemscope itemtype="https://schema.org/WPHeader"> <script> const startRenderTime = (truncated...)
|
||||
|
||||
2024-08-16 16:57:00 5091 http://www.msgpa.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000458:SSL routines::tlsv1 unrecognized name (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://msgpa.ru/sveden/education/
|
||||
2024-08-16 16:57:00 5116
|
||||
2024-08-16 16:57:01 5121 http://sgasu.belebey.ru 0 cURL error 60: SSL certificate problem: self-signed certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sgasu.belebey.ru/sveden/education/
|
||||
2024-08-16 16:57:01 5126
|
||||
2024-08-16 16:57:01 5127
|
||||
2024-08-16 16:57:01 5135
|
||||
2024-08-16 16:57:01 5140
|
||||
2024-08-16 16:57:01 5146 kfililal.mggeu.ru 0 cURL error 6: Could not resolve host: kfililal.mggeu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kfililal.mggeu.ru/sveden/education/
|
||||
2024-08-16 16:57:01 5151
|
||||
2024-08-16 16:57:01 5158
|
||||
2024-08-16 16:57:01 5159
|
||||
2024-08-16 16:57:01 5166 Матвеев Вадим Петрович 0 cURL error 3: URL rejected: Malformed input to a URL function (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://Матвеев Вадим Петрович/sveden/education/
|
||||
2024-08-16 16:57:01 5167
|
||||
2024-08-16 16:57:01 5168
|
||||
2024-08-16 16:57:01 5169
|
||||
2024-08-16 16:57:01 5171
|
||||
2024-08-16 16:57:01 5172
|
||||
2024-08-16 16:57:03 10000 sarpds.ru 404 Client error: `GET https://sarpds.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx</c (truncated...)
|
||||
|
||||
2024-08-16 16:57:03 10004 https://www.skoltech.ru 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 16:57:03 10006 мос-ити.рф 502 Server error: `GET https://мос-ити.рф/sveden/education/` resulted in a `502 Bad Gateway` response:
|
||||
<html>
|
||||
<head><title>502 Bad Gateway</title></head>
|
||||
<body>
|
||||
<center><h1>502 Bad Gateway</h1></center>
|
||||
<hr><center>ngin (truncated...)
|
||||
|
||||
2024-08-16 16:57:04 10007 www.samgups.ru 404 Client error: `GET https://samgups.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru" class=" " >
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta nam (truncated...)
|
||||
|
||||
2024-08-16 16:59:21 10011 http://ueu.crimea.ru 0 cURL error 28: Failed to connect to ueu.crimea.ru port 443 after 136245 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ueu.crimea.ru/sveden/education/
|
||||
2024-08-16 16:59:21 10017 http://www.atiso.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://atiso.ru/sveden/education/
|
||||
2024-08-16 16:59:23 10022 http://kamensk.rosnou.ru/ 0 cURL error 60: SSL certificate problem: EE certificate key too weak (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://kamensk.rosnou.ru/sveden/education/
|
||||
2024-08-16 16:59:23 10026 http://www.urep.ru 404 Client error: `GET https://urep.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found (truncated...)
|
||||
|
||||
2024-08-16 16:59:25 10028 www.viam.ru 404 Client error: `GET https://viam.ru/sveden/education/` resulted in a `404 Not Found` response
|
||||
2024-08-16 16:59:25 10029 https://sochi.rpa-mu.ru 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 16:59:25 10040 https://university.innopolis.ru/ 0 cURL error 6: Could not resolve host: https (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://https//sveden/education/
|
||||
2024-08-16 16:59:25 61244 http://www.reaviz.ru 0 cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://reaviz.ru/sveden/education/
|
||||
2024-08-16 16:59:25 61261
|
||||
2024-08-16 16:59:25 61268
|
||||
2024-08-19 06:45:38 23 http://www.altgaki.org 0 cURL error 6: Could not resolve host: altgaki.org (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://altgaki.org/sveden/education/
|
||||
2024-08-19 06:47:39 3 achgaa.ru 404 Client error: `GET https://achgaa.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>.c{position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;}</style>
|
||||
<meta http (truncated...)
|
||||
|
||||
2024-08-19 06:47:48 13 http://www.resvuz.ru 404 Client error: `GET https://resvuz.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<m (truncated...)
|
||||
|
||||
2024-08-19 06:47:56 18 http://www.axu.ru 404 Client error: `GET https://axu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, (truncated...)
|
||||
|
||||
2024-08-19 06:48:12 23 http://www.altgaki.org 0 cURL error 6: Could not resolve host: altgaki.org (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://altgaki.org/sveden/education/
|
||||
2024-08-19 06:48:18 24 http://www.agmu.ru/ 503 Server error: `GET https://agmu.ru/sveden/education/` resulted in a `503 Service Unavailable` response:
|
||||
<html><body><h1>503 Service Unavailable</h1>
|
||||
No server is available to handle this request.
|
||||
</body></html>
|
||||
|
||||
|
||||
|
||||
2024-08-19 06:49:18 27 http://www.agni-rt.ru 404 Client error: `GET https://agni-rt.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx</c (truncated...)
|
||||
|
||||
2024-08-19 06:49:28 33 http://www.agpu.net 0 cURL error 35: OpenSSL/3.0.13: error:0A000410:SSL routines::sslv3 alert handshake failure (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://agpu.net/sveden/education/
|
||||
2024-08-19 06:49:28 34 http://апси.рф 0 cURL error 6: Could not resolve host: xn--80aqui.xn--p1ai (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://апси.рф/sveden/education/
|
||||
2024-08-19 06:50:20 39 http://agma.astranet.ru/ 0 cURL error 6: Could not resolve host: agma.astranet.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://agma.astranet.ru/sveden/education/
|
||||
2024-08-19 06:50:39 51 http://uni-altai.ru 0 cURL error 6: Could not resolve host: uni-altai.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://uni-altai.ru/sveden/education/
|
||||
2024-08-19 06:52:14 56 http://www.bashedu.ru 400 Client error: `GET https://bashedu.ru/sveden/education/` resulted in a `400 Bad Request` response:
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Bad Request (400)</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Bad Request (400)</h1>< (truncated...)
|
||||
|
||||
2024-08-19 06:52:16 59
|
||||
2024-08-19 06:52:20 62 http://www2.bigpi.biysk.ru/wwwsite/news.php 0 cURL error 35: OpenSSL/3.0.13: error:0A000438:SSL routines::tlsv1 alert internal error (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://www2.bigpi.biysk.ru/sveden/education/
|
||||
2024-08-19 06:54:49 66 http://www.bgpi.ru 0 cURL error 7: Failed to connect to bgpi.ru port 443 after 386 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bgpi.ru/sveden/education/
|
||||
2024-08-19 06:54:50 68 http://www.bgita.ru 0 cURL error 56: Recv failure: Connection reset by peer (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://bgita.ru/sveden/education/
|
||||
2024-08-19 06:54:57 78 http://www.vgmu.ru 404 Client error: `GET https://vgmu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body bgcolor="white">
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr> (truncated...)
|
||||
|
||||
2024-08-19 06:57:17 82 http://www.vlsu.ru 0 cURL error 28: Failed to connect to vlsu.ru port 443 after 133949 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vlsu.ru/sveden/education/
|
||||
2024-08-19 06:57:22 86 http://ranhigs-nn.ru 0 cURL error 6: Could not resolve host: ranhigs-nn.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ranhigs-nn.ru/sveden/education/
|
||||
2024-08-19 06:57:51 93 http://www.vstu.ru 404 Client error: `GET https://vstu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx/1. (truncated...)
|
||||
|
||||
2024-08-19 06:57:59 99 http://molochnoe.ru 404 Client error: `GET https://molochnoe.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html><head><title>Error 404: Page not found</title></head><body><h1>Page not found</h1><p>The page you requested was no (truncated...)
|
||||
|
||||
2024-08-19 06:57:59 101 http://www.vstu.edu.ru 0 cURL error 6: Could not resolve host: vstu.edu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vstu.edu.ru/sveden/education/
|
||||
2024-08-19 06:58:05 108 http://www.vsau.ru 0 cURL error 35: OpenSSL/3.0.13: error:0A000102:SSL routines::unsupported protocol (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://vsau.ru/sveden/education/
|
||||
2024-08-19 06:58:06 110 http://www.vspu.ac.ru 403 Client error: `GET https://vspu.ac.ru/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>403 Forbidden</title>
|
||||
</head><body>
|
||||
<h1>Forbidden (truncated...)
|
||||
|
||||
2024-08-19 06:59:20 116 http://esstu.ru/uportal/index.htm 404 Client error: `GET https://esstu.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html><head><title>Apache Tomcat/7.0.52 (Ubuntu) - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-seri (truncated...)
|
||||
|
||||
2024-08-19 06:59:20 119 http://www.orun.ru 0 cURL error 7: Failed to connect to orun.ru port 443 after 405 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://orun.ru/sveden/education/
|
||||
2024-08-19 06:59:28 121 http://www.vgik.info 403 Client error: `GET https://vgik.info/sveden/education/` resulted in a `403 Forbidden` response:
|
||||
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/htm (truncated...)
|
||||
|
||||
2024-08-19 07:01:56 147 http://ggpi.org/news.php 0 cURL error 28: Failed to connect to ggpi.org port 443 after 135415 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ggpi.org/sveden/education/
|
||||
2024-08-19 07:10:50 148 http://www.gasu.ru 0 cURL error 28: Failed to connect to gasu.ru port 443 after 300001 ms: Timeout was reached (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://gasu.ru/sveden/education/
|
||||
2024-08-19 07:12:03 169 http://www.daggau.rf 0 cURL error 6: Could not resolve host: daggau.rf (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://daggau.rf/sveden/education/
|
||||
2024-08-19 07:12:03 172 http://dgpu.net.ru 0 cURL error 6: Could not resolve host: dgpu.net.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://dgpu.net.ru/sveden/education/
|
||||
2024-08-19 07:12:05 175 http://www.dvags.ru 404 Client error: `GET https://dvags.ru/sveden/education/` resulted in a `404 Not Found` response:
|
||||
<html>
|
||||
<head><title>404 Not Found</title></head>
|
||||
<body>
|
||||
<center><h1>404 Not Found</h1></center>
|
||||
<hr><center>nginx</c (truncated...)
|
||||
|
||||
2024-08-19 07:15:43 182 http://www.fesmu.ru 0 cURL error 28: Failed to connect to fesmu.ru port 443 after 133805 ms: Couldn't connect to server (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://fesmu.ru/sveden/education/
|
||||
2024-08-19 07:15:43 185
|
||||
2024-08-19 07:15:44 191 http://www.diik.3dn.ru 503 Server error: `GET https://diik.3dn.ru/sveden/education/` resulted in a `503 Service Temporarily Unavailable` response:
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" (truncated...)
|
||||
|
||||
2024-08-19 07:15:46 193 http://www.sssu.ru 0 cURL error 6: Could not resolve host: sssu.ru (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://sssu.ru/sveden/education/
|
||||
2024-08-19 07:15:47 199 http://www.ims-ural.ru 404 Client error: `GET https://ims-ural.ru/sveden/education/` resulted in a `404 Категория не найдена` response:
|
||||
<!doctype html>
|
||||
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7 ie6 error-page" lang="ru"> <![endif]-->
|
||||
<!--[if (truncated...)
|
||||
|
@ -842,5 +842,4 @@
|
||||
2024-08-16 10:38:13 61273
|
||||
2024-08-16 10:38:13 61275
|
||||
2024-08-16 10:38:13 61277
|
||||
2024-08-16 10:38:13 61279
|
||||
2024-08-16 11:59:25 start
|
||||
2024-08-16 10:38:13 61279
|
||||
|
1264
not-recorded-in-db.yaml
Normal file
1264
not-recorded-in-db.yaml
Normal file
@ -0,0 +1,1264 @@
|
||||
-
|
||||
spec_code: 31.02.02
|
||||
spec_name: 'Акушерское дело'
|
||||
edu_level: 'среднее профессиональное образование'
|
||||
edu_forms: очная
|
||||
contingent: '57'
|
||||
spec_id: '3112'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.02.03
|
||||
spec_name: 'Лабораторная диагностика'
|
||||
edu_level: 'среднее профессиональное образование'
|
||||
edu_forms: очная
|
||||
contingent: '54'
|
||||
spec_id: '3113'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 34.02.01
|
||||
spec_name: 'Сестринское дело'
|
||||
edu_level: 'среднее профессиональное образование'
|
||||
edu_forms: очная
|
||||
contingent: '236'
|
||||
spec_id: '3119'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 34.02.01
|
||||
spec_name: 'Сестринское дело'
|
||||
edu_level: 'среднее профессиональное образование'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '228'
|
||||
spec_id: '3119'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 33.02.01
|
||||
spec_name: Фармация
|
||||
edu_level: 'среднее профессиональное образование'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '20'
|
||||
spec_id: '3118'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 01.03.02
|
||||
spec_name: 'Прикладная математика и информатика'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '57'
|
||||
spec_id: '3202'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 03.03.02
|
||||
spec_name: Физика
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '54'
|
||||
spec_id: '3209'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 04.03.01
|
||||
spec_name: Химия
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '85'
|
||||
spec_id: '3211'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 05.03.06
|
||||
spec_name: 'Экология и природопользование'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '84'
|
||||
spec_id: '3218'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 06.03.01
|
||||
spec_name: Биология
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '64'
|
||||
spec_id: '3219'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 08.03.01
|
||||
spec_name: Строительство
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '143'
|
||||
spec_id: '3225'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.03.01
|
||||
spec_name: 'Информатика и вычислительная техника'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '108'
|
||||
spec_id: '3226'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.03.02
|
||||
spec_name: 'Информационные системы и технологии'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '119'
|
||||
spec_id: '3227'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.03.04
|
||||
spec_name: 'Программная инженерия'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '122'
|
||||
spec_id: '3229'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 11.03.02
|
||||
spec_name: 'Инфокоммуникационные технологии и системы связи'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '74'
|
||||
spec_id: '3232'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 13.03.02
|
||||
spec_name: 'Электроэнергетика и электротехника'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '126'
|
||||
spec_id: '3241'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 27.03.04
|
||||
spec_name: 'Управление в технических системах'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '63'
|
||||
spec_id: '3285'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 20.03.01
|
||||
spec_name: 'Техносферная безопасность'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '102'
|
||||
spec_id: '3261'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.01
|
||||
spec_name: Экономика
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '145'
|
||||
spec_id: '3310'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.02
|
||||
spec_name: Менеджмент
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '75'
|
||||
spec_id: '3311'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.03
|
||||
spec_name: 'Управление персоналом'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '72'
|
||||
spec_id: '3312'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.04
|
||||
spec_name: 'Государственное и муниципальное управление'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '78'
|
||||
spec_id: '3313'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.05
|
||||
spec_name: Бизнес-информатика
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '15'
|
||||
spec_id: '3314'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 40.03.01
|
||||
spec_name: Юриспруденция
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '250'
|
||||
spec_id: '3320'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 41.03.04
|
||||
spec_name: Политология
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '72'
|
||||
spec_id: '3324'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 42.03.01
|
||||
spec_name: 'Реклама и связи с общественностью'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '79'
|
||||
spec_id: '3327'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 44.03.01
|
||||
spec_name: 'Педагогическое образование'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '74'
|
||||
spec_id: '3335'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 45.03.02
|
||||
spec_name: Лингвистика
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '148'
|
||||
spec_id: '3341'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 46.03.01
|
||||
spec_name: История
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '77'
|
||||
spec_id: '3344'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.03.01
|
||||
spec_name: 'Физическая культура'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '82'
|
||||
spec_id: '3351'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.03.02
|
||||
spec_name: 'Физическая культура для лиц с отклонениями в состоянии здоровья (адаптивная физическая культура)'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '61'
|
||||
spec_id: '3352'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.03.03
|
||||
spec_name: 'Рекреация и спортивно-оздоровительный туризм'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '34'
|
||||
spec_id: '3353'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.03.04
|
||||
spec_name: Спорт
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '17'
|
||||
spec_id: '5428'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 51.03.02
|
||||
spec_name: 'Народная художественная культура'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '47'
|
||||
spec_id: '3359'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 51.03.04
|
||||
spec_name: 'Музеология и охрана объектов культурного и природного наследия'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '15'
|
||||
spec_id: '3361'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 51.03.05
|
||||
spec_name: 'Режиссура театрализованных представлений и праздников'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очная
|
||||
contingent: '21'
|
||||
spec_id: '3362'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 04.05.01
|
||||
spec_name: 'Фундаментальная прикладная химия'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: очная
|
||||
contingent: '27'
|
||||
spec_id: '3382'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 20.05.01
|
||||
spec_name: 'Пожарная безопасность'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: очная
|
||||
contingent: '51'
|
||||
spec_id: '3405'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.05.01
|
||||
spec_name: 'Лечебное дело'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: очная
|
||||
contingent: '776'
|
||||
spec_id: '3439'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.05.02
|
||||
spec_name: Педиатрия
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: очная
|
||||
contingent: '227'
|
||||
spec_id: '3440'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 37.05.01
|
||||
spec_name: 'Клиническая психология'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: очная
|
||||
contingent: '95'
|
||||
spec_id: '3445'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 37.05.02
|
||||
spec_name: 'Психология служебной деятельности'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: очная
|
||||
contingent: '66'
|
||||
spec_id: '3446'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.05.01
|
||||
spec_name: 'Экономическая безопасность'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: очная
|
||||
contingent: '134'
|
||||
spec_id: '3447'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 01.04.02
|
||||
spec_name: 'Прикладная математика и информатика'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '21'
|
||||
spec_id: '3477'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 03.04.02
|
||||
spec_name: Физика
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '20'
|
||||
spec_id: '3484'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 04.04.01
|
||||
spec_name: Химия
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '18'
|
||||
spec_id: '3486'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 05.04.06
|
||||
spec_name: 'Экология и природопользование'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '28'
|
||||
spec_id: '3493'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 06.04.01
|
||||
spec_name: Биология
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '20'
|
||||
spec_id: '3494'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 08.04.01
|
||||
spec_name: Строительство
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '24'
|
||||
spec_id: '3500'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.04.01
|
||||
spec_name: 'Информатика и вычислительная техника'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '17'
|
||||
spec_id: '3501'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.04.02
|
||||
spec_name: 'Информационные системы и технологии'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '19'
|
||||
spec_id: '3502'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.04.04
|
||||
spec_name: 'Программная инженерия'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '12'
|
||||
spec_id: '3504'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 11.04.02
|
||||
spec_name: 'Инфокоммуникационные технологии и системы связи'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '22'
|
||||
spec_id: '3507'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 13.04.02
|
||||
spec_name: 'Электроэнергетика и электротехника'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '33'
|
||||
spec_id: '3516'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 20.04.01
|
||||
spec_name: 'Техносферная безопасность'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '22'
|
||||
spec_id: '3537'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 27.04.01
|
||||
spec_name: 'Управление в технических системах'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '18'
|
||||
spec_id: '3558'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 37.04.01
|
||||
spec_name: Психология
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '22'
|
||||
spec_id: '3587'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.01
|
||||
spec_name: Экономика
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '46'
|
||||
spec_id: '3589'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.02
|
||||
spec_name: Менеджмент
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '30'
|
||||
spec_id: '3590'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.03
|
||||
spec_name: 'Управление персоналом'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '31'
|
||||
spec_id: '3591'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.04
|
||||
spec_name: 'Государственное и муниципальное управление'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '28'
|
||||
spec_id: '3592'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.08
|
||||
spec_name: 'Финансы и кредит'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '23'
|
||||
spec_id: '3596'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 40.04.01
|
||||
spec_name: Юриспруденция
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '36'
|
||||
spec_id: '3601'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 41.04.04
|
||||
spec_name: Политология
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '21'
|
||||
spec_id: '3605'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 44.04.01
|
||||
spec_name: 'Педагогическое образование'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '57'
|
||||
spec_id: '3615'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 45.04.02
|
||||
spec_name: Лингвистика
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '25'
|
||||
spec_id: '3620'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 46.04.01
|
||||
spec_name: История
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '23'
|
||||
spec_id: '3623'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.04.01
|
||||
spec_name: 'Физическая культура'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '15'
|
||||
spec_id: '3630'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.04.02
|
||||
spec_name: 'Физическая культура для лиц с отклонениями в состоянии здоровья (адаптивная физическая культура)'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '14'
|
||||
spec_id: '3631'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.04.03
|
||||
spec_name: Спорт
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: очная
|
||||
contingent: '17'
|
||||
spec_id: '3632'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 05.03.06
|
||||
spec_name: 'Экология и природопользование'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '40'
|
||||
spec_id: '3218'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 08.03.01
|
||||
spec_name: Строительство
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '33'
|
||||
spec_id: '3225'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.03.01
|
||||
spec_name: 'Информатика и вычислительная техника'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '87'
|
||||
spec_id: '3226'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.03.04
|
||||
spec_name: 'Программная инженерия'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '57'
|
||||
spec_id: '3229'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 11.03.02
|
||||
spec_name: 'Инфокоммуникационные технологии и системы связи'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '18'
|
||||
spec_id: '3232'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 13.03.02
|
||||
spec_name: 'Электроэнергетика и электротехника'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '160'
|
||||
spec_id: '3241'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 27.03.04
|
||||
spec_name: 'Управление в технических системах'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '20'
|
||||
spec_id: '3285'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 20.03.01
|
||||
spec_name: 'Техносферная безопасность'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '94'
|
||||
spec_id: '3261'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.01
|
||||
spec_name: Экономика
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '31'
|
||||
spec_id: '3310'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.02
|
||||
spec_name: Менеджмент
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '0'
|
||||
spec_id: '3311'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.03
|
||||
spec_name: 'Управление персоналом'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '25'
|
||||
spec_id: '3312'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.04
|
||||
spec_name: 'Государственное и муниципальное управление'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '19'
|
||||
spec_id: '3313'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 40.03.01
|
||||
spec_name: Юриспруденция
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: заочная
|
||||
contingent: '66'
|
||||
spec_id: '3320'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 20.05.01
|
||||
spec_name: 'Пожарная безопасность'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: заочная
|
||||
contingent: '18'
|
||||
spec_id: '3405'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.05.01
|
||||
spec_name: 'Экономическая безопасность'
|
||||
edu_level: 'высшее образование - специалитет'
|
||||
edu_forms: заочная
|
||||
contingent: '127'
|
||||
spec_id: '3447'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 05.04.06
|
||||
spec_name: 'Экология и природопользование'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: заочная
|
||||
contingent: '7'
|
||||
spec_id: '3493'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 20.04.01
|
||||
spec_name: 'Техносферная безопасность'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: заочная
|
||||
contingent: '21'
|
||||
spec_id: '3537'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.01
|
||||
spec_name: Экономика
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: заочная
|
||||
contingent: '23'
|
||||
spec_id: '3589'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.03
|
||||
spec_name: 'Управление персоналом'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: заочная
|
||||
contingent: '39'
|
||||
spec_id: '3591'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.04.04
|
||||
spec_name: 'Государственное и муниципальное управление'
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: заочная
|
||||
contingent: '1'
|
||||
spec_id: '3592'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 40.04.01
|
||||
spec_name: Юриспруденция
|
||||
edu_level: 'высшее образование - магистратура'
|
||||
edu_forms: заочная
|
||||
contingent: '36'
|
||||
spec_id: '3601'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 08.03.01
|
||||
spec_name: Строительство
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '8'
|
||||
spec_id: '3225'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.01
|
||||
spec_name: Экономика
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '14'
|
||||
spec_id: '3310'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.02
|
||||
spec_name: Менеджмент
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '10'
|
||||
spec_id: '3311'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.03
|
||||
spec_name: 'Управление персоналом'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '10'
|
||||
spec_id: '3312'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.03.04
|
||||
spec_name: 'Государственное и муниципальное управление'
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '7'
|
||||
spec_id: '3313'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 40.03.01
|
||||
spec_name: Юриспруденция
|
||||
edu_level: 'высшее образование - бакалавриат'
|
||||
edu_forms: очно-заочная
|
||||
contingent: '42'
|
||||
spec_id: '3320'
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 01.06.01
|
||||
spec_name: 'Математика и механика'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '1'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 04.06.01
|
||||
spec_name: 'Химические науки'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '3'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 06.06.01
|
||||
spec_name: 'Биологические науки'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '4'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 09.06.01
|
||||
spec_name: 'Информатика и вычислительная техника'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '10'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 27.06.01
|
||||
spec_name: 'Управление в технических системах'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '4'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 30.06.01
|
||||
spec_name: 'Фундаментальная медицина'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.06.01
|
||||
spec_name: 'Клиническая медицина'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '12'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 32.06.01
|
||||
spec_name: 'Медико-профилактическое дело'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '1'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 38.06.01
|
||||
spec_name: Экономика
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '7'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 40.06.01
|
||||
spec_name: Юриспруденция
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 40.06.01
|
||||
spec_name: Юриспруденция
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: заочная
|
||||
contingent: '1'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 44.06.01
|
||||
spec_name: 'Образование и педагогические науки'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '8'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 45.06.01
|
||||
spec_name: 'Языкознание и литературоведение'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '1'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 46.06.01
|
||||
spec_name: 'Исторические науки и археология'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '1'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 46.06.01
|
||||
spec_name: 'Исторические науки и археология'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: заочная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 47.06.01
|
||||
spec_name: 'Философия, этика и религиоведение'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '3'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 47.06.01
|
||||
spec_name: 'Философия, этика и религиоведение'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: заочная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 49.06.01
|
||||
spec_name: 'Физическая культура и спорт'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '3'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '1.2'
|
||||
spec_name: 'Компьютерные науки и информатика'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '5'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '1.4'
|
||||
spec_name: 'Химические науки'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '4'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '1.5'
|
||||
spec_name: 'Биологические науки'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '9'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '2.3'
|
||||
spec_name: 'Информационные технологии и телекоммуникации'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '9'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '3.1'
|
||||
spec_name: 'Клиническая медицина'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '25'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '3.3'
|
||||
spec_name: 'Медико-биологические науки'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '3'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '5.1'
|
||||
spec_name: Право
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '9'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '5.2'
|
||||
spec_name: Экономика
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '27'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '5.6'
|
||||
spec_name: 'Исторические науки'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '4'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '5.7'
|
||||
spec_name: Философия
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '7'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '5.8'
|
||||
spec_name: Педагогика
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '22'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: '5.9'
|
||||
spec_name: Филология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации - аспирантура'
|
||||
edu_forms: очная
|
||||
contingent: '5'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.01
|
||||
spec_name: 'Акушерство и гинекология'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '21'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.26
|
||||
spec_name: 'Аллергология и иммунология'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.02
|
||||
spec_name: 'Анестезиология и реаниматология'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '32'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.31
|
||||
spec_name: Гериатрия
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '1'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.17
|
||||
spec_name: 'Детская эндокринология'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '3'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.32
|
||||
spec_name: Дерматовенерология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '17'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.35
|
||||
spec_name: 'Инфекционные болезни'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '11'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.36
|
||||
spec_name: Кардиология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '17'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.05
|
||||
spec_name: 'Клиническая лабораторная диагностика'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '13'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.37
|
||||
spec_name: 'Клиническая фармакология'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '4'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.42
|
||||
spec_name: Неврология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '17'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.18
|
||||
spec_name: Неонатология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '3'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.54
|
||||
spec_name: 'Общая врачебная практика'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '5'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.57
|
||||
spec_name: Онкология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '13'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.71
|
||||
spec_name: 'Организация здравоохранения и общественное здоровье'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.58
|
||||
spec_name: Оториноларингология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '16'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.59
|
||||
spec_name: Офтальмология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '14'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.07
|
||||
spec_name: 'Патологическая анатомия'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.19
|
||||
spec_name: Педиатрия
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '21'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.21
|
||||
spec_name: Психиатрия-наркология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.09
|
||||
spec_name: Рентгенология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '18'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.63
|
||||
spec_name: 'Сердечно-сосудистая хирургия'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '2'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.48
|
||||
spec_name: 'Скорая медицинская помощь'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '5'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.49
|
||||
spec_name: Терапия
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '22'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.66
|
||||
spec_name: 'Травматология и ортопедия'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '11'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.04
|
||||
spec_name: Трансфузиология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '3'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.11
|
||||
spec_name: 'Ультразвуковая диагностика'
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '11'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.51
|
||||
spec_name: Фтизиатрия
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '4'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.50
|
||||
spec_name: Физиотерапия
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '5'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.67
|
||||
spec_name: Хирургия
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '11'
|
||||
spec_id: null
|
||||
org_id: '772'
|
||||
-
|
||||
spec_code: 31.08.53
|
||||
spec_name: Эндокринология
|
||||
edu_level: 'высшее образование - подготовка кадров высшей квалификации- ординатура'
|
||||
edu_forms: очная
|
||||
contingent: '12'
|
||||
spec_id: null
|
||||
org_id: '772'
|
54
script.php
54
script.php
@ -1,28 +1,36 @@
|
||||
<?php
|
||||
// require_once(dirname(__FILE__) ."/app/library/Database.php");
|
||||
// require_once(dirname(__FILE__) ."/app/library/DatabaseConfig.php");
|
||||
// use App\Library\Database;
|
||||
// use App\Library\DatabaseConfig;
|
||||
use App\Library\ContingentManager;
|
||||
use App\Library\Database;
|
||||
use App\Library\DatabaseConfig;
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
// При ошибке в запросе к БД. Распарсингованные данные
|
||||
// сохраняются в yaml-файле. Скрипт парсит этот файл и заносит в БД
|
||||
require_once "vendor/autoload.php";
|
||||
|
||||
// $dbOpendata = new Database(new DatabaseConfig('opendata'));
|
||||
// $sql = 'SELECT DISTINCT org_id FROM sveden_education_contingent';
|
||||
// $org = $dbOpendata->selectQuery($sql);
|
||||
// $orgs = [];
|
||||
// foreach ($org as $o) {
|
||||
// $orgs[] = $o['org_id'];
|
||||
// }
|
||||
// unset($org);
|
||||
function array_depth(array $array) {
|
||||
$max_depth = 1;
|
||||
|
||||
// print_r($orgs);
|
||||
foreach ($array as $value) {
|
||||
if (is_array($value)) {
|
||||
$depth = array_depth($value) + 1;
|
||||
|
||||
// $filename = 'error-html.log';
|
||||
// $array = file($filename);
|
||||
// for ($i = 0; $i < count($array); $i++) {
|
||||
// $arr = explode(' ', $array[$i]);
|
||||
// if (!in_array($arr[2], $orgs)) {
|
||||
// //file_put_contents(__DIR__ . '/error-html2.log', $array[$i], FILE_APPEND);
|
||||
// }
|
||||
// }
|
||||
if ($depth > $max_depth) {
|
||||
$max_depth = $depth;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var_dump("eduLеvel" != "eduLevel");
|
||||
var_dump("eduCode" == "eduCode");
|
||||
return $max_depth;
|
||||
}
|
||||
|
||||
$data = Yaml::parse(file_get_contents(__DIR__ . '/not-recorded-in-db.yaml'));
|
||||
// $db = new Database(new DatabaseConfig('opendata'));
|
||||
// $orgs = ContingentManager::getInstance()->getOrgs($dbOpendata);
|
||||
|
||||
if(array_depth($data) == 2){
|
||||
// ContingentManager::getInstance()->insertContingent($db, $arr);
|
||||
} else {
|
||||
foreach ($data as $value) {
|
||||
// ContingentManager::getInstance()->insertContingent($db, $value);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user