zoukankan      html  css  js  c++  java
  • wifipineapple获取用户上网信息

      ssh连接到wifipineapple:

    输入连接信息:ssh root@172.16.42.1
    输入密码:pineapplesareyummy

      安装依赖基本环境:

    opkg update 
    opkg install nan 
    opkg install htop 
    opkg install bash 
    opkg install netcat 
    opkg install tar 
    opkg install openssh-sftp-client 
    opkg install nmap 
    opkg install tcpdump 
    opkg install aircrack-ng 
    opkg install kismet-client 
    opkg install kismet-server 
    opkg install nbtscan 
    opkg install snort 
    opkg install karma 
    opkg install samba36-client 
    opkg install elinks 
    opkg install yafc 
    opkg install python 
    opkg install uhttpd 
    opkg install at 
    opkg install ethtool 
    opkg install ettercap 
    opkg install macchanger 
    opkg install netstat-nat 
    opkg install reaver 
    opkg install sslsniff 
    opkg install sslstrip 
    opkg install wget 
    opkg install wput 
    opkg install curl 
    opkg install libnids 
    opkg install php5 
    opkg install php5-cgi

      使用ifconfig命令,查看热点网卡端口为br-lan

      输入tcpdump的命令, 0x4745 为"GET"前两个字母"GE",0x4854 为"HTTP"前两个字母"HT":

    tcpdump  -XvvennSs 0 -i br-lan  tcp[20:2]=0x4745 or tcp
    [20:2]=0x4854

      tcpdump获取的数据是元素二进制和16进制的数据, 我们直接使用urlsnarf命令,可以捕获更详细的信息:

    urlsnarf -i br-lan
  • 相关阅读:
    如何分析页面性能?
    Java io包 ByteArrayInputStream&ByteArrayOutStream
    Java io包 inputstream&outputstream
    Java executors创建线程池和使用ThreadPoolExecutor
    Android异步任务处理
    TCP报文格式
    Java 异常
    死锁
    计算机网络-传输层
    Linux 进程同步和通信
  • 原文地址:https://www.cnblogs.com/diligenceday/p/8012450.html
Copyright © 2011-2022 走看看