paris/i-0ae37c2b2950f7142
by SadServersMore by SadServers
apparmor.d cron.daily e2scrub.conf gshadow iptab modprobe.d os-release rc0.d rsyslog.conf skel sysctl.conapt cron.hourly environment gshadow- issue modules pam.conf rc1.d rsyslog.d ssh sysctl.d bash.bashrc cron.monthly ethertypes gss issue modules-load.d pam.d rc2.d runit ssl systemd bash_completion cron.weekly fonts host.conf kerne motd passwd rc3.d sadscenario subgid terminfo bindresvport.blacklist crontab fstab hostname kerne mtab passwd- rc4.d screenrc subgid- timezone binfmt.d dbus-1 fstab.old hosts knock nanorc pm rc5.d security subuid tmpfiles.dca-certificates debconf.conf gai.conf hosts.allow ld.so netconfig ppp rc6.d selinux subuid- ucf.conf admin@i-0f38fefa3d5eb7b9e:~$
taipei/i-0f38fefa3d5eb7b9e 02:46
by SadServersDISC-ZERO discard zeroes data WSAME write same max bytes WWN unique storage identifier RAND adds randomness PKNAME internal parent kernel device name HCTL Host:Channel:Target:Lun for SCSI TRAN device transport type SUBSYSTEMS de-duplicated chain of subsystems REV device revision VENDOR device vendor ZONED zone model DAX dax-capable device For more details see lsblk(8). admin@i-0ffaf8917b90c1ed2:~$ man lsblk
kihei/i-0ffaf8917b90c1ed2 04:19
by SadServersgoroutine 1 [running]: main.main() ./main.go:64 +0x47d admin@i-07ceb80639215b899:~$ vim kihei admin@i-07ceb80639215b899:~$ admin@i-07ceb80639215b899:~$ admin@i-07ceb80639215b899:~$ admin@i-07ceb80639215b899:~$ admin@i-07ceb80639215b899:~$ ls -l total 5245048 drwxr-xr-x 2 admin root 4096 Sep 17 17:28 agent drwxr-xr-x 2 admin root 4096 Dec 5 20:45 data -rw-r--r-- 1 root root 5368709120 Sep 17 17:28 datafile -rwxr-xr-x 1 admin root 2207109 Sep 17 17:28 kihei admin@i-07ceb80639215b899:~$
kihei/i-07ceb80639215b899 01:05
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