This service can be configured to allow login with any password for specific username. What is that username? 该服务可以配置为允许特定用户名使用任意密码登录。这个用户名是什么?
回答:
1
anonymous
或者你确实忘了,用nmap扫:
1
nmap -sC 10.129.124.138 -p 21
task3:
1 2
What is the name of the file downloaded over this service? 通过该服务下载的文件名称是什么?
那就先连上看看呗:
1
ftp anonymous@10.129.124.138
可以看到是:
1
backup.zip
task4:
1 2
What script comes with the John The Ripper toolset and generates a hash from a password protected zip archive in a format to allow for cracking attempts? John The Ripper 工具集中自带哪个脚本,可以从受密码保护的 ZIP 压缩包中生成哈希值,以便进行破解尝试?
回答:
1
zip2john
task5:
1 2
What is the password for the admin user on the website? 网站上管理员用户的密码是什么?
Options: -h, --help Show basic help message and exit -hh Show advanced help message and exit --version Show program's version number and exit -v VERBOSE Verbosity level: 0-6 (default 1)
Target: At least one of these options has to be provided to define the target(s)
-u URL, --url=URL Target URL (e.g. "http://www.site.com/vuln.php?id=1") -g GOOGLEDORK Process Google dork results as target URLs
Request: These options can be used to specify how to connect to the target URL
--data=DATA Data string to be sent through POST (e.g. "id=1") --cookie=COOKIE HTTP Cookie header value (e.g. "PHPSESSID=a8d127e..") --random-agent Use randomly selected HTTP User-Agent header value --proxy=PROXY Use a proxy to connect to the target URL --tor Use Tor anonymity network --check-tor Check to see if Tor is used properly
Injection: These options can be used to specify which parameters to test for, provide custom injection payloads and optional tampering scripts
-p TESTPARAMETER Testable parameter(s) --dbms=DBMS Force back-end DBMS to provided value
Detection: These options can be used to customize the detection phase
--level=LEVEL Level of tests to perform (1-5, default 1) --risk=RISK Risk of tests to perform (1-3, default 1)
Techniques: These options can be used to tweak testing of specific SQL injection techniques
--technique=TECH.. SQL injection techniques to use (default "BEUSTQ")
Enumeration: These options can be used to enumerate the back-end database management system information, structure and data contained in the tables
-a, --all Retrieve everything -b, --banner Retrieve DBMS banner --current-user Retrieve DBMS current user --current-db Retrieve DBMS current database --passwords Enumerate DBMS users password hashes --dbs Enumerate DBMS databases --tables Enumerate DBMS database tables --columns Enumerate DBMS database table columns --schema Enumerate DBMS schema --dump Dump DBMS database table entries --dump-all Dump all DBMS databases tables entries -D DB DBMS database to enumerate -T TBL DBMS database table(s) to enumerate -C COL DBMS database table column(s) to enumerate
Operating system access: These options can be used to access the back-end database management system underlying operating system
--os-shell Prompt for an interactive operating system shell --os-pwn Prompt for an OOB shell, Meterpreter or VNC
General: These options can be used to set some general working parameters
--batch Never ask for user input, use the default behavior --flush-session Flush session files for current target
Miscellaneous: These options do not fit into any other category
--wizard Simple wizard interface for beginner users
1 2
--os-shell 尝试获取一个交互式的操作系统 Shell(最常用的选项)。
task7+8+9:
1 2
What program can the postgres user run as root using sudo? postgres 用户可以使用 sudo 以 root 身份运行什么程序?