我工作于技术支持,并收到一封包含网络钓鱼链接的电子邮件。我通过redirectdetective.com运行了链接,以找出指向的位置,它以一种我从未见过的格式向我显示了一个URL。该URL在域和文件夹层次结构之间没有正斜杠。怎么会这样?
这是URL所使用的格式。(出于安全原因,这不是实际的URL。)
public static void main(String[] args) throws IOException, InterruptedException{
/* Unzip the release */
File folder = new File("./input/");
ProcessBuilder pb = new ProcessBuilder(
"C:/Program Files/7-Zip/7z.exe",
"x",
"./input/matsimInput/release.zip",
"new");
pb.directory(folder);
pb.redirectErrorStream(true);
Process pbProcess = null;
int pbExitCode = 1;
pbProcess = pb.start();
pbExitCode = pbProcess.waitFor();
if(pbExitCode != 0) {
throw new RuntimeException("Could not unzip release for MATSim run");
}
}
我认为目标域名是domain.com.uy。为什么在该URL和其余URL之间没有斜杠?