1、输入一个整数,判断它是否为回文数
例:输入:12321 输出:该数是回文数 输入:12323 输出:该数不是回文数
#include <stdio.h>
int huiwenshu(int num)
{int a[100];int i, n, j…
目录
连接至HTB服务器并启动靶机
1.How many TCP ports are listening on PermX?
使用nmap对靶机TCP端口进行开放扫描
2.What is the default domain name used by the web server on the box?
使用curl访问靶机80端口
3.On what subdomain of permx.htb is there an o…