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
| Hello, | |
| this a simple solution for this problem. If you want to access a host with your ssh and receive this error : | |
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ | |
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! | |
| Someone could be eavesdropping on you right now (man-in-the-middle attack)! |
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
| <?php | |
| $arquivo = "$HOME/logs/uptime"; | |
| $abre = fopen($arquivo,"a+"); | |
| $ip = "mysite.com.br"; | |
| $comando = "/arpa/af/c/cerebro/bin/commands/httping -c 1 -g http://".$ip; | |
| $saida = shell_exec($comando); |
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
| [Unit] | |
| Description=Enable creation of task groups per TTY | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/bin/mkdir -p -m 0777 /sys/fs/cgroup/cpu/user | |
| [Install] | |
| WantedBy=multi-user.target |
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
| #!/bin/sh | |
| # ---------------------------------------------------------------------------- | |
| # Mostra o seu ip público. | |
| # Uso: zzmeuip | |
| # Ex.: zzmeuip | |
| # | |
| # Autor: Ataliba Teixeira < ataliba (a) ataliba.eti.br > | |
| # Desde: 2010-12-25 | |
| # Versão: 1.0 | |
| # Licença: GPL |
NewerOlder