paris/i-0ef21dcd15d0bb4ad
by SadServersMore by SadServers
write(2, "0x47d", 50x47d) = 5 write(2, "\n", 1 ) = 1 exit_group(2) = ? +++ exited with 2 +++ admin@i-089ba5fc5735749de:~$ ls data admin@i-089ba5fc5735749de:~$ ./kihei -h Usage: ./kihei [options] -h Display help -help Display help -v Verbose mode (print extra info) -verbose Verbose mode (print extra info) admin@i-089ba5fc5735749de:~$ ./kihei -v
kihei/i-089ba5fc5735749de 01:51
by SadServerslsof: unknown protocol name (5000) in: -i 5000 lsof 4.93.2 latest revision: https://github.com/lsof-org/lsof latest FAQ: https://github.com/lsof-org/lsof/blob/master/00FAQ latest (non-formatted) man page: https://github.com/lsof-org/lsof/blob/master/L usage: [-?abhKlnNoOPRtUvVX] [+|-c c] [+|-d s] [+D D] [+|-E] [+|-e s] [+|-f[gG]] [-F [f]] [-g [s]] [-i [i]] [+|-L [l]] [+m [m]] [+|-M] [-o [o]] [-p s] [+|-r [t]] [-s [p:s]] [-S [t]] [-T [t]] [-u s] [+|-w] [-x [fl]] [--] [names] Use the ``-h'' option to get more help information. admin@i-0dd9ca4bd7a358734:~$ ^Cof -i 5000 admin@i-0dd9ca4bd7a358734:~$ ps aux | grep upnp admin 828 0.0 0.1 5264 632 pts/1 S<+ 00:54 0:00 grep upnp admin@i-0dd9ca4bd7a358734:~$ systemctl | grep upnp admin@i-0dd9ca4bd7a358734:~$ journalctl | grep upnp admin@i-0dd9ca4bd7a358734:~$ lsof -i TLS
paris/i-0dd9ca4bd7a358734 04:34
by SadServers[sudo] password for admin: 3Sorry, try again. [sudo] password for admin: adminSorry, try again. [sudo] password for admin: admin sudo: 3 incorrect password attempts admin@i-0b7facb522ba65534:~$ admin bash: admin: command not found admin@i-0b7facb522ba65534:~$ docker ps bash: docker: command not found admin@i-0b7facb522ba65534:~$ ls agent webserver.py admin@i-0b7facb522ba65534:~$ ls
paris/i-0b7facb522ba65534 01:47
by SadServers# Define the range of ports you want to test (from PORT_START to PORT_END) PORT_START=1 PORT_END=65535 # Define the target host (localhost in this case) TARGET_HOST="localhost" # Loop through the range of ports and run curl with a 1-second timeout for ((port = PORT_START; port <= PORT_END; port++)); do "$TARGET_HOST:$port" &>/dev/null if [ $? -eq 0 ]; then echo "Port $port is open" fi done