1. linux
1.1 perl
1.1.1 Get
参考资料:
1、 [hitcon2017] SSRF Me复现
GET是Lib for WWW in Perl中的命令 目的是模拟http的GET请求。
GET file:/flag
1.2 命令行
1.2.1 echo
输出内容,利用-e使回车符生效:
hzdl@ubuntu:~$ echo -e "hello\nworld"
hello
world
hzdl@ubuntu:~$ echo "hello\nworld"
hello\nworld
写文件:
echo -e "hello\nworld">success.txt
1.3 脚本
参考资料:
1、linux中的sh脚本语法 https://tsov.net/sh-script-syntax/
1.3.1 sh脚本
#! /bin/sh
supervisord -c /app/supervisord.conf
touch log.log
tail -f log.log