User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 90
  6. 91
  7. 92
  8. 93
  9. 94
  10. 95
  11. ...
  12. 155
  13. 156
  14. 157
  15. 158

Posts by SBTlauien

  1. SBTlauien African Astronaut
    Originally posted by mashlehash You get off on another man using power, don't you?

    That's how I like 'em.
  2. SBTlauien African Astronaut
    Originally posted by mashlehash Do it faggit.

    Make me.
  3. SBTlauien African Astronaut
    Originally posted by Totse 2001 I thought you were a puppet account for CASPER

    Psh, you know I'm Lanny.
  4. SBTlauien African Astronaut
    Originally posted by mashlehash Youre no pirate.

    I'll show you pirate.
  5. SBTlauien African Astronaut
    Originally posted by mashlehash Sit down and drink the coffee like the rest of us.

    I drink coffee all day long.
  6. SBTlauien African Astronaut
    Originally posted by -SpectraL Feds come to this place and are never heard from again.

    I've no need to worry as I don't break any laws. Those of you that are worried are obviously criminal in nature. Federal agents are alright, I guess.

    Thank you for your time.
  7. SBTlauien African Astronaut
    Originally posted by Totse 2001 http://www.oregonlive.com/pacific-northwest-news/index.ssf/2011/05/the_spys_kid_part_4_confronted_by_the_fbi_spys_son_takes_mulligan.html

    That's Scott.
  8. SBTlauien African Astronaut
    Originally posted by benny vader idk, my condition prevented me from researching.

    What condition is that?
  9. SBTlauien African Astronaut
    Originally posted by -SpectraL Gotta start somewhere.

    lol.

    You can at least get the OS and arch. with executables written in C. I believe.
  10. SBTlauien African Astronaut
    Originally posted by -SpectraL Fact is, any file created on a PC desktop computer has ZERO proprietary information attached to it.

    Facts.
  11. SBTlauien African Astronaut
    Originally posted by mashlehash You sound like you have a major mental problem.

    lol. I was thinking of how crazy it'd be if I actually had psychological issues.
  12. SBTlauien African Astronaut
    Originally posted by mmQ I have to wait until 2099 ,assuming I still live here when I'm 110 years old.

    You will be, but you'll be blind.
  13. SBTlauien African Astronaut
    Originally posted by -SpectraL Jeff.

    You should be banned for leaking my PI.
  14. SBTlauien African Astronaut
    Originally posted by mashlehash What's so special about Scoot Jensen?

    I meant Scott Jensen. He's just another fan of mine.
  15. SBTlauien African Astronaut
    Originally posted by NARCassist computers can also be phones



    .

    I agree.
  16. SBTlauien African Astronaut
    Originally posted by -SpectraL A bird is a bird.
    A phone is a phone.
    A computer is a computer.

    This was your -SpectraL lesson for the day. Carry on, soldiers.

    An apple is a fruit, a banana is a fruit, and they are both food.

    An iPhone is a phone, a Gallaxy S8 is a phone, and they are both computers.
  17. SBTlauien African Astronaut
    Originally posted by -SpectraL He said a file made on a computer.

    A phone is a computer.
  18. SBTlauien African Astronaut
    Freds a fed.

    Why worry if you have nothing to hide?

    I like the feds, especially former FBI agent Scoot Jensen.
  19. SBTlauien African Astronaut
    It depends on the file and how it was made. Metadate resides in some file types made certain ways(like images made by taking pictures on a phone).
  20. SBTlauien African Astronaut
    I possess one of the Raspberry Pi's that have built in wifi. I have two wireless NICs attached to my Raspberry Pi(the internal NIC and one I attached). The internal NIC is wlan0 and the external is wlan1.

    I have the internal NIC(wlan0) set up to automatically connect to one of my phones hotspots. I then connect my PC to that phone and I SSH into my Raspberry Pi. This is how I want to access the Raspberry Pi.

    I'd like to be able to use the external NIC(wlan1) to connect to certain wifi hotspots and use them for the internet, while still using wlan0 for ssh(since that's how I'll be accessing it). These hotspot connections that wlan1 is connecting to may change from time to time.

    What type of iptable rules am I going to need to set to allow this to happen? I did a search and came across the following, but it doesn't seem to work

    iptables --flush
    iptables --delete-chain
    iptables --table nat --delete-chain

    iptables -P INPUT DROP
    iptables -P FORWARD DROP
    iptables -P OUTPUT DROP

    iptables -A INPUT -i wlan0 -p tcp --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT
    iptables -A OUTPUT -o wlan0 -p tcp --sport 22 -m state --state ESTABLISHED -j ACCEPT

    iptables --table nat --append POSTROUTING --out-interface wlan1 -j MASQUERADE

    echo 1 > /proc/sys/net/ipv4/ip_forward
    service iptables restart

    route add default gw 192.168.1.1 wlan1


    Here's some more information on my Raspberry Pi...

    $ifconfig
    lo        Link encap:Local Loopback  
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:65536 Metric:1
    RX packets:158 errors:0 dropped:0 overruns:0 frame:0
    TX packets:158 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1
    RX bytes:14100 (13.7 KiB) TX bytes:14100 (13.7 KiB)

    wlan0 Link encap:Ethernet HWaddr 12:12:12:12:13:13
    inet addr:192.168.43.211 Bcast:192.168.43.255 Mask:255.255.255.0
    inet6 addr: fe80::8b65:e176:2a95:75ea/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:5307 errors:0 dropped:662 overruns:0 frame:0
    TX packets:4497 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:539854 (527.2 KiB) TX bytes:1063866 (1.0 MiB)

    wlan1 Link encap:Ethernet HWaddr 12:12:12:12:11:11
    inet addr:192.168.43.112 Bcast:192.168.43.255 Mask:255.255.255.0
    inet6 addr: fe80::bd5b:a99c:1e0a:ab37/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:492 errors:0 dropped:0 overruns:0 frame:0
    TX packets:224 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:35039 (34.2 KiB) TX bytes:33749 (32.9 KiB)


    $cat /etc/network/interface
    auto lo

    iface lo inet loopback
    iface eth0 inet manual

    allow-hotplug wlan0
    iface wlan0 inet manual
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

    allow-hotplug wlan1
    auto wlan1
    iface wlan1 inet dhcp
    wireless-essid someRandamWifiHotspot
    wireless-mode managed


    $cat /etc/wpa_supplicant/wpa_supplicant.conf
    ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
    update_config=1
    country=GB

    network={
    ssid="oneOfMyPhones"
    psk="anEasyPassword"
    key_mgmt=WPA-PSK
    }


    $route -n
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    0.0.0.0 192.168.43.1 0.0.0.0 UG 0 0 0 wlan1
    0.0.0.0 192.168.43.1 0.0.0.0 UG 302 0 0 wlan0
    0.0.0.0 192.168.43.1 0.0.0.0 UG 303 0 0 wlan1
    192.168.43.0 0.0.0.0 255.255.255.0 U 302 0 0 wlan0
    192.168.43.0 0.0.0.0 255.255.255.0 U 303 0 0 wlan1
  1. 1
  2. 2
  3. 3
  4. ...
  5. 90
  6. 91
  7. 92
  8. 93
  9. 94
  10. 95
  11. ...
  12. 155
  13. 156
  14. 157
  15. 158
Jump to Top