gpt4 book ai didi

php - shell - 代码正确,但不起作用

转载 作者:太空狗 更新时间:2023-10-29 11:41:50 25 4
gpt4 key购买 nike

一切正常。但它给出了一个错误。我无法解决它。

try.sh:

#!/bin/sh

website="http://lastofdead.xyz"
ipaddress=$( ifconfig | grep -v 'eth0:' | grep -A 1 'eth0' | \
tail -1 | cut -d ':' -f 2 | cut -d ' ' -f 1)
mlicense=$(curl -s $website/lodscript/special/lisans.php?lisans)

if [ "$mlicense" = "$ipaddress" ];
then
echo "Positive"
else
echo "Negative"
fi

lisans.php:

<?php 
if(isset($_GET['lisans'])) {
echo "188.166.92.168" . $_GET['lisans'];
}
?>

结果:

root@ubuntu:~# bash -x s.sh
+ website=http://lastofdead.xyz
++ cut -d ' ' -f 1
++ cut -d : -f 2
++ tail -1
++ grep -A 1 eth0
++ grep -v eth0:
++ ifconfig
+ ipaddress=188.166.92.168
++ curl -s 'http://lastofdead.xyz/lodscript/special/lisans.php?lisans'
+ mlicense=188.166.92.168
+ '[' 188.166.92.168 = 188.166.92.168 ']'
+ echo Negative
Negative

/image/jNMNq.jpg

最佳答案

哦,非常感谢您发布代码。好吧,我自己试着看看这两个字符串之间的差异,结果发现问题出在一个叫做 Byte Order Mark (BOM) 的东西上。 .有关此的更多信息,请参阅此答案:https://stackoverflow.com/a/3256014 .

curl 返回的字符串,当将其通过管道传输到十六进制转储时,显示如下:

$ curl -s 'http://lastofdead.xyz/lodscript/special/lisans.php?lisans'
188.166.92.168
$ curl -s 'http://lastofdead.xyz/lodscript/special/lisans.php?lisans' | xxd -c 17 -g 1 -u
0000000: EF BB BF 31 38 38 2E 31 36 36 2E 39 32 2E 31 36 38 ...188.166.92.168

你能看到他们吗? 0xEF,0xBB,0xBF 这三个字节是 BOM 的 UTF-8 表示形式,这就是使字符串不同的原因。上面链接的问题页面显示了一些剥离它的方法,例如使用 grep,或者您可以将 curl 输出通过管道传输到 cut -c 2-,或者甚至通过简单的替换在 curl 行之后:mlicense="${mlicense:1}"。而且,为了确保我们剥离的是 BOM,我们可以使用两行替换:bom="$(echo -en '\xEF\xBB\xBF')"; mlicense="$(echo -n "${mlicense#${bom}}")",甚至将它们合二为一:mlicense="$(echo -n "${mlicense#$ (echo -en '\xEF\xBB\xBF')}")".

关于php - shell - 代码正确,但不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42468828/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com