This file contains 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
/var/log/messages | |
Dec 12 16:03:39 bananapi logger: DENY sshd connection from 113.108.21.16 (CN) | |
Dec 12 16:12:59 bananapi logger: DENY sshd connection from 185.110.132.202 (IP Address not found) | |
Dec 12 16:20:12 bananapi logger: DENY sshd connection from 121.18.238.98 (CN) | |
Dec 12 16:24:57 bananapi logger: DENY sshd connection from 185.110.132.202 (IP Address not found) | |
Dec 12 16:26:20 bananapi logger: DENY sshd connection from 121.18.238.114 (CN) | |
Dec 12 16:29:10 bananapi logger: DENY sshd connection from 221.194.44.195 (CN) | |
Dec 12 16:30:55 bananapi logger: DENY sshd connection from 221.194.47.249 (CN) | |
Dec 12 16:37:06 bananapi logger: DENY sshd connection from 185.110.132.202 (IP Address not found) |
This file contains 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
<?php | |
function validar_cnpj($cnpj) | |
{ | |
$cnpj = preg_replace('/[^0-9]/', '', (string) $cnpj); | |
// Valida tamanho | |
if (strlen($cnpj) != 14) | |
return false; |
This file contains 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
<?php | |
class ImageManipulator | |
{ | |
/** | |
* @var int | |
*/ | |
protected $width; | |
/** | |
* @var int |
NewerOlder