目前,我正在使用具有以下服务的服务器进行渗透测试实验室:
Nmap scan report for 10.0.11.125
Host is up (1.3s latency).
Not shown: 998 closed ports
PORT STATE SERVICE VERSION
21/tcp open ftp vsftpd 2.0.8 or later
22/tcp open ssh OpenSSH 5.8p1 Debian 7ubuntu1 (Ubuntu Linux; protocol 2.0)
Service Info: Host: Foo; OS: Li
我遵循这个教程在我的Linux EC2服务器上安装FTP。
设法完成所有操作,但将我的FTP用户添加到组"www“,如下所示:
sudo usermod -a -G www <USERNAME>
当我这样做时,我会得到一个错误:
usermod: group 'www' does not exist
我很难找到如何添加这个组"www“。
我正在更新我的Google从53.x到56.x,这一次我在apt中使用了google。我没有对旧的谷歌Chrome版本做任何事情,因为我不知道如何处理它。我在Debian8.5中的/etc/apt/sources.list
#
deb http://ftp.fi.debian.org/debian/ jessie main
#deb http://ftp.us.debian.org/debian/ jessie main
deb-src http://ftp.fi.debian.org/debian/ jessie main
#deb-src http://ftp.us.debian.org
我正在写一个shell脚本,需要使用ftp下载补丁。有不同版本的补丁,但我想下载与模式*$ver_LINUX*或*$ver_Generic*匹配的补丁。下面的mget命令不允许我为此使用或(|)选项。谁能建议这是不是可以在ftp和如何。
ftp -inv $FTP <<EOF
quote USER $ftp_usr
quote PASS $ftp_pass
cd $patch
binary # for zip files.
ls # Just for check
mget *${ver}_LINUX.* # downloads patches like p111229_11202