1
iptux 2014-08-10 22:24:37 +08:00
原来是 IP 地址,这域名吓一跳
|
2
matrix32767 OP @iptux
十六进制 IP 地址? |
3
scusjs 2014-08-10 22:26:32 +08:00
楼主的头像。。。我快抠烂屏幕了
|
4
Mutoo 2014-08-10 22:26:45 +08:00
@matrix32767 正确
|
5
izoabr 2014-08-10 22:30:46 +08:00
其实不用这么多0
|
6
procen424 2014-08-10 22:33:31 +08:00
不过是变了一下ip地址的写法而已
来个更酷炫的 http://3638213122 |
8
ZJJZF 2014-08-10 22:41:21 +08:00
人体艺术。。。
|
9
procen424 2014-08-10 22:45:59 +08:00
@izoabr 这是十进制
A.B.C.D = D + C * 256 + B * 256 * 256 + A * 256 * 256 * 256 |
10
letitbesqzr 2014-08-10 22:57:39 +08:00
某些做站群的人的工具生成的..
|
11
letitbesqzr 2014-08-10 22:59:22 +08:00
http://jingyan.baidu.com/article/200957617a9e13cb0721b4e5.html 这办法 http://3638213122
|
12
izoabr 2014-08-10 23:12:23 +08:00
@procen424 那就是所有东西转换成16进制,然后连在一起转换成10进制对吧,你这公式太复杂了,还是@letitbesqzr 这个看着明了一些,对我这种文科生来说完全无法理解这种公式是怎么闹的
|
14
clowwindy 2014-08-11 00:00:16 +08:00
读了一下 inet_aton 的源码(https://android.googlesource.com/platform/bionic/+/donut-release/libc/inet/inet_aton.c),好像挺宽松的,发现了一些有趣的玩法:
$ ping 127.1 PING 127.1 (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.054 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.077 ms $ ping "0x08080808 hello world" PING 0x08080808 hello world (8.8.8.8): 56 data bytes 64 bytes from 8.8.8.8: icmp_seq=0 ttl=45 time=354.877 ms 64 bytes from 8.8.8.8: icmp_seq=1 ttl=45 time=586.866 ms |
16
kmvan 2014-08-11 00:18:32 +08:00 via Android
这不是蓝屏的代码吗?呵呵!
|
17
csx163 2014-08-11 00:43:14 +08:00
只知道nmap 127...1是可以的
|
18
qiuai 2014-08-11 07:59:04 +08:00 1
用php写了两种IP样式的计算器...
http://ip.vezii.com/ipx.php?ip=1.2.3.4&type=1 http://ip.vezii.com/ipx.php?ip=1.2.3.4&type=2 换上IP就可以了...一会写个前端页面套上... |