This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```json | |
[ | |
{ | |
"hostname": "102.132.0.0/16", | |
"ip": "" | |
}, | |
{ | |
"hostname": "102.221.0.0/16", | |
"ip": "" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Meta (Instagram, Facebook) | |
// Узлы | |
157.240.253.174, 157.240.253.172, 157.240.253.167, 157.240.253.63, 157.240.253.32 | |
157.240.252.174, 157.240.252.172, 157.240.252.167, 157.240.252.63, 157.240.252.38 | |
57.144.112.34, 57.144.110.1, 157.240.205.174, 87.245.223.97 | |
// Подсети | |
213.102.128.0/24 | |
204.15.20.0/22 | |
199.201.0.0/16 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nano /etc/gitlab/gitlab.rb | |
// Находим это строку и выставляем значение false | |
letsencrypt['enable'] = false | |
// Сохраняем файл и выполняем реконфигурацию | |
gitlab-ctl reconfigure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MacOS | |
nc -z -v -u grayloghost.com 12311 | |
Connection to grayloghost.com port 12311 [udp/*] succeeded! | |
// Linux | |
nc -z -v -u grayloghost.com 12311 | |
Ncat: Version 7.50 ( https://nmap.org/ncat ) | |
Ncat: Connected to 10.80.80.2:12311. | |
Ncat: UDP packet sent successfully | |
Ncat: 1 bytes sent, 0 bytes received in 2.01 seconds. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nc testmysql.domain.com 3306 | |
W | |
5.5.62-0+deb8u1-log��sU/({V{)��!�X^OS2@+UIQ9hmysql_native_password | |
// -z - Не посылать данные (сканирование портов) | |
// -v - Дополнительная диагностика (verbose) | |
nc -z -v testmysql.domain.com 3306 | |
Connection to testmysql.domain.com port 3306 [tcp/mysql] succeeded! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bash | |
// Порт 3306 доступен и его слушает MySQL 5.5.62, установленный на ОС Debian 8 | |
telnet testmysql.domain.com 3306 | |
Trying 10.80.80.1... | |
Connected to testmysql.domain.com. | |
Escape character is '^]'. | |
W | |
5.5.62-0+deb8u1-log |