C
Size: a a a
C
C
MB
F
i
F
F
C
D
D
F
MB
➜ curl http://rkn.gov.ru
<html>
<head><title>504 Gateway Time-out</title></head>
<body bgcolor="white">
<center><h1>504 Gateway Time-out</h1></center>
<hr><center>nginx/1.10.2</center>
</body>
</html>
~ took 1m 1s
➜ nslookup rkn.gov.ru
Server: 127.0.0.53
Address: 127.0.0.53#53
Non-authoritative answer:
Name: rkn.gov.ru
Address: 81.177.103.94
R
➜ curl http://rkn.gov.ru
<html>
<head><title>504 Gateway Time-out</title></head>
<body bgcolor="white">
<center><h1>504 Gateway Time-out</h1></center>
<hr><center>nginx/1.10.2</center>
</body>
</html>
~ took 1m 1s
➜ nslookup rkn.gov.ru
Server: 127.0.0.53
Address: 127.0.0.53#53
Non-authoritative answer:
Name: rkn.gov.ru
Address: 81.177.103.94
R
R
public function generatePassword($master_password, $login, $domain, $password_length=16, $hash_algo='sha256')
{
$auth_string = $login.'@'.$domain;
$hashed_master_password = substr(hash($hash_algo, $master_password, false), 0, $password_length);
$encrypted_long_password = base64_encode(hash($hash_algo, $auth_string . $hashed_master_password, false) . $hashed_master_password);
$encrypted_trimmed_password = substr($encrypted_long_password, 0, $password_length);
return $encrypted_trimmed_password;
}
R
R
R