#44 could help but I am not root on the server I have in mind.
tail /var/log/auth.log
tail: cannot open '/var/log/auth.log' for reading: Permission denied
#44 could help but I am not `root` on the server I have in mind.
```bash
tail /var/log/auth.log
```
```
tail: cannot open '/var/log/auth.log' for reading: Permission denied
```
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 127.0.0.1:2224 0.0.0.0:* LISTEN -
tcp6 0 0 ::1:2224 :::* LISTEN -
netstat -tulpn | grep 2250
Output:
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
```bash
netstat -tulpn | grep 2224
```
<details>
<summary>Output:</summary>
```
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 127.0.0.1:2224 0.0.0.0:* LISTEN -
tcp6 0 0 ::1:2224 :::* LISTEN -
```
</details>
```bash
netstat -tulpn | grep 2250
```
<details>
<summary>Output:</summary>
```
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
```
</details>
PORT=2250KEY=CENSORED
MESSAGE="`hostname`:$PORT is back online!"NUMBER_OF_SECONDS_BETWEEN_EACH_TRY=60while ! (echo -n > /dev/tcp/localhost/$PORT) 2> /dev/null
do
date
sleep $NUMBER_OF_SECONDS_BETWEEN_EACH_TRYdone| tee -a logs.txt
curl -G https://lemnoslife.com/CENSORED/notify.php --data-urlencode "message=$MESSAGE" -d key=$KEY
one second and exponential delays do not seem appropriate.
<details>
<summary>Bash script:</summary>
```bash
PORT=2250
KEY=CENSORED
MESSAGE="`hostname`:$PORT is back online!"
NUMBER_OF_SECONDS_BETWEEN_EACH_TRY=60
while ! (echo -n > /dev/tcp/localhost/$PORT) 2> /dev/null
do
date
sleep $NUMBER_OF_SECONDS_BETWEEN_EACH_TRY
done | tee -a logs.txt
curl -G https://lemnoslife.com/CENSORED/notify.php --data-urlencode "message=$MESSAGE" -d key=$KEY
```
</details>
one second and exponential delays do not seem appropriate.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Related to #38.
Would help Benjamin_Loison/openssh/issues/68.
DuckDuckGo search Linux run command once port listen.
#44 could help but I am not
rooton the server I have in mind.Output:
Output:
DuckDuckGo and Google search run command on netstat update.
Output:
Source: Benjamin-Loison/LemnosLife-Client/issues/85#issuecomment-1636544466
Bash script:
one second and exponential delays do not seem appropriate.