15k words
userNMAP 1234567891011└─$ sudo nmap -sS -p- 10.129.207.139 --min-rate=3000Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-04-25 03:07 EDTNmap scan report for 10.129.207.139 (10.129.207.139)Host is up (0.38s latency).Not shown: 65532 closed tcp ports (reset)PORT STATE SERVICE22/tcp open ssh80/tcp open http8000/tcp open http-altNmap done: 1 IP address (1 host up) scanned in 59.67 seconds 关注了一下8000端口 123456789101112131415└─$ sudo nmap -sS -p8000 runner.htb --min-rate=3000 -sV -O[s...
13k words
usernmap 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596PORT STATE SERVICE VERSION22/tcp open ssh OpenSSH 8.2p1 Ubuntu 4ubuntu0.11 (Ubuntu Linux; protocol 2.0)| ssh-hostkey: | 3072 48:ad:d5:b8:3a:9f:bc:be:f7:e8:20:1e:f6:bf:de:ae (RSA)| 256 b7:89:6c:0b:20:ed:49:b2:c1:86:7c:29:92:74:1c:1f (ECDSA)|_ 256 18:cd:9d:08:a6:21:a8:b8:b6:f7:9f:8d:...
26k words
信息收集部分nmap 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198...
ctf
6.5k words
初始化创建了一个Creature的类,加以调用,这个部分没啥 1234567891011121314151617// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.13;import {Creature} from "./Creature.sol";contract Setup { Creature public immutable TARGET; constructor() payable { require(msg.value == 1 ether); TARGET = new Creature{value: 10}(); } function isSolved() public view returns (bool) { return address(TARGET).balance == 0; }} 需要关注的的是这个类...
35k words
USER 信息收集 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374└─$ sudo nmap -sS -sV -T4 -A $IP -p$(sudo nmap -sS -p- $IP --min-rate=5000|grep -i open |awk -F '/' '{print $1}'|tr -s '\n' ',') --min-rate=5000Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-02-19 06:28 ESTNmap scan report for DC.office.htb (10.10.1x.x)Host is up (0.45s latency).PORT STA...
3.8k words
TASK1The performance of the network printer server has become sluggish, causing interruptions in the workflow at the North Pole workshop. Santa has directed us to generate a support request and examine the network data to pinpoint the source of the issue. He suspects that the Grinch and his group may be involved in this situation. Could you verify if there is an IP Address that is sending an excessive amount of traffic to the printer server?网络打印机服务器的性能变得迟钝,导致北极车间的工作流程中断。圣诞老人已指示我们生成支持请求并检查网络数...