Jump to content

i8igmac

Dedicated Members
  • Posts

    939
  • Joined

  • Last visited

  • Days Won

    22

Posts posted by i8igmac

  1. the best results I have found is a driven biquad with a parabolic dish... like a magnified glass can focus a beam of light, a dish can focus this beam for miles...

    With some instructions on home built parabolic curve, you could accomplish something compact...

    If you do attempt a build plz share resaults and instructions

  2. you have a server and a client...

    The server application will open a listener port 69...

    nc -l -p 69

    The client will now connect to the server ip and port...

    nc 192.168.1.101 -p 69

    If you are the server then u must port forward... if you are incapable of this task then ask your friend to be the server and port forward his router...

    I provide you with proper direction. Move forword or move on...

  3. I think you should start with something extremely simple autoit programing is superfun and great for first place to start programming little things

    after a few weeks of autoit then try ruby pearl or Python

  4. so I have been running test all day... your wifi router running ddwrt and iptables script above you can easly send traffic to kali...

    sslstrip is only effective when a client request htttp://face-book

    If the client request htttps://face-book then ssltrip will miss this request

    if you try sslstrip on android applications like facebook gmail yahoo twitter. you will notice some red flags with the certificates... fb was blood red!

    So... I found sslsniff and sslsplit... these tools seem to be the key to success...

    But I get segment faults when I test these tools...

  5. nc 192.168.69.1 23

    logged into root on ddwrt and iptables is acceptable command

    here is a basic example

    PROXY_IP=192.168.69.103
    PROXY_PORT=666
    LAN_IP=`nvram get lan_ipaddr`
    LAN_NET=$LAN_IP/`nvram get lan_netmask`
    
    iptables -t nat -A PREROUTING -i br0 -s $LAN_NET -d $LAN_NET -p tcp --dport 80 -j ACCEPT
    iptables -t nat -A PREROUTING -i br0 -s ! $PROXY_IP -p tcp --dport 80 -j DNAT --to $PROXY_IP:$PROXY_PORT
    iptables -t nat -I POSTROUTING -o br0 -s $LAN_NET -d $PROXY_IP -p tcp -j SNAT --to $LAN_IP
    iptables -I FORWARD -i br0 -o br0 -s $LAN_NET -d $PROXY_IP -p tcp --dport $PROXY_PORT -j ACCEPT
    
  6. I have been ssearching online for 'ddwrt iptables proxy'

    I have found some nice example scripts...

    I'm looking for help with iptables... maybe there is a skilled iptables guru that is actave here...

    I figured I will use burpsuit for a quick proxy

    Proxy ip 192.168.69.103:666

    ddwrt ip 192.168.69.1/255.255.255.0

  7. So, i have configured airbase-ng and iptables... i have my client connected to this fake ap...

    the torrent traffic from the client(droid phone) will pass threw with know problem, but when the droid phone tries to establish any http connection it fails...

    is this new security from android OS ?

  8. I'm in the process of rebuilding repeater with a wrt54g v8... this version does not have detachable antennas... so I'm do for a mod...

    Can I use a biquad directional to establish a source connection and then use a 9dbi omni directional for broadcasting in my home a open wifi?

    This was my old setup and I just read that you want identical antennas installed... ill share clean instructions when im done...

×
×
  • Create New...