command-line-murders/i-0c9db6dc75d48f009
by SadServersMore by SadServers
write(2, "64", 264) = 2 write(2, " +", 2 +) = 2 write(2, "0x47d", 50x47d) = 5 write(2, "\n", 1 ) = 1 exit_group(2) = ? +++ exited with 2 +++ admin@i-0815e829d95ab34ca:~$ ./kihei -v Creating file /home/admin/data/newdatafile with size 1.5GB... panic: exit status 1 goroutine 1 [running]: main.main() ./main.go:64 +0x47d admin@i-0815e829d95ab34ca:~$
kihei/i-0815e829d95ab34ca 01:57
by SadServersroot 574 0.0 0.3 2872 1672 tty1 Ss+ 10:17 0:00 /sbin/agetty root 575 0.0 0.4 4396 2040 ttyS0 Ss+ 10:17 0:00 /sbin/agetty _chrony 577 0.0 0.7 10852 3668 ? S 10:17 0:00 /usr/sbin/chr_chrony 578 0.0 0.1 10724 556 ? S 10:17 0:00 /usr/sbin/chrroot 579 0.0 1.5 13352 7084 ? Ss 10:17 0:00 sshd: /usr/sbroot 583 0.0 3.7 26612 17396 ? Ss 10:17 0:00 /usr/bin/pythroot 662 0.0 0.0 0 0 ? I 10:17 0:00 [kworker/1:4-admin 664 0.0 0.9 6740 4464 pts/0 S<s+ 10:17 0:00 bash -l admin 668 0.1 4.1 98320 19236 pts/0 D<l+ 10:17 0:00 /usr/bin/pythadmin 671 0.0 3.1 24456 14924 pts/0 R<+ 10:17 0:00 /usr/bin/pythadmin 672 0.0 0.1 2480 568 pts/1 S<s 10:17 0:00 sh -c /bin/baadmin 673 0.0 1.0 6952 4792 pts/1 S< 10:17 0:00 /bin/bash root 717 0.0 0.0 0 0 ? R 10:18 0:00 [kworker/u4:4admin 762 0.0 0.6 8648 3212 pts/1 R<+ 10:19 0:00 ps aux admin@i-0cace07c960fab3ec:/etc$ ps aux
paris/i-0cace07c960fab3ec 03:17
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