我想知道这个脚本实际上做了什么。这基本上适用于 android移动坐标查找器
sudo curl -1 -s -k -x 'post' -H 'User-Agent: Dalvik/2.1.0 (Linux; U; Android 5.0.1; Nexus 5 Build/LRX22C)' -H 'Content-Type: application/x-www-form- urlencoded' \
'http://mobile.maps.yandex.net/cellid_location/?clid=1866854&lac=-1&cellid=-1&operatorid=null&countrycode=null&signalstrength=-1&wifinetworks=xxxxxxxxxxxx:-65&app=ymetro'
和
Dalvik/2.1.0 (Linux; U;Android 5.0.1; Nexus 5 Build/LRX22C)
这是移动版本和细节,我必须在我运行时一直添加。
我正在尝试我的Android MAC地址,但它不会在终端上提供任何输出。
请告诉我一些合理的答案,这实际上是剂量。
答案 0 :(得分:0)
此命令看起来像是通过互联网从网站检索信息。它确实可能是某些设备的坐标。
sudo
获得操作系统的扩展权限以执行任何操作curl
是从Internet检索数据的命令;这里它执行post
,并将User-Agent: Dalvik/2.1.0 (Linux; U; Android 5.0.1; Nexus 5 Build/LRX22C)' and 'Content-Type: application/x-www-form-urlencoded'
作为标题(-H
选项); http POST
执行到网址http://mobile.maps.yandex.net/cellid_location/?clid=1866854&lac=-1&cellid=-1&operatorid=null&countrycode=null&signalstrength=-1&wifinetworks=xxxxxxxxxxxx:-65&app=ymetro
您应该将答案视为应出现在当前目录中的文件,其中包含服务器答案的内容。
要详细了解curl
的作用,您可以查看http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Instance.start。