Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya @guramchankseliani,
That’s a really strange script! Try to locate it and then read it to see what it does! I’ve not seen such a script before.
It’s possible it’s somesort of malware, just so you know or it can be a script that some of the software you have is using.
Hi there,
Indeed, the /popz script is not a standard Linux or Nginx script, which suggests that it could be either a custom script or something that has been added maliciously. To investigate:
ls -l /popzcat /popzIt’s possible that this script is being executed regularly via a cron job or another scheduling tool. Check the cron jobs for the user or system:
crontab -lsudo ls /var/spool/cron/crontabs/sudo cat /etc/crontab and sudo ls /etc/cron.d/Since the script reappears after you kill it, this could be indicative of a compromise or persistent script that is being reloaded by a backdoor or malicious process. What you might have to do is review your code and make sure that this is not the case, or try to restore from a working backup before this started occuring.
Another thing that you should do is to check your system logs in /var/log/ for any unusual activity or messages related to this script. Start with syslog and auth.log to see if there are any clues:
sudo grep -i popz /var/log/syslog
sudo grep -i popz /var/log/auth.logBasically you should review the script and if it is legitimate, try to understand its purpose and whether it’s required. If it’s causing excessive CPU load, consider optimizing it or reducing its frequency. But i the script is malicious, you should remove it immediately, and consider re-securing your server, possibly by rebuilding it if the compromise is severe or restoring it from a working backup.
Let me know how it goes!
- Bobby