AArch64 Posted October 21, 2017 Share Posted October 21, 2017 I saw that this could be used as a hardware based VPN, could it be used as a hardware based TOR transparent proxy? Link to comment Share on other sites More sharing options...
gon Posted October 21, 2017 Share Posted October 21, 2017 yes Link to comment Share on other sites More sharing options...
Darren Kitchen Posted October 21, 2017 Share Posted October 21, 2017 Absolutely. Seb and I will soon be hosting a live payload hackathon and it's one of the top on my list to write. Should be pretty straight forward. Link to comment Share on other sites More sharing options...
AArch64 Posted October 22, 2017 Author Share Posted October 22, 2017 45 minutes ago, Darren Kitchen said: Absolutely. Seb and I will soon be hosting a live payload hackathon and it's one of the top on my list to write. Should be pretty straight forward. Great, can't wait to see it! Link to comment Share on other sites More sharing options...
Darren Kitchen Posted October 22, 2017 Share Posted October 22, 2017 This should port pretty well: https://github.com/hak5/lanturtle-wiki/blob/gh-pages/modules/tortle Link to comment Share on other sites More sharing options...
sundhaug92 Posted October 22, 2017 Share Posted October 22, 2017 1 hour ago, Darren Kitchen said: Absolutely. Seb and I will soon be hosting a live payload hackathon and it's one of the top on my list to write. Should be pretty straight forward. When? Link to comment Share on other sites More sharing options...
sundhaug92 Posted October 22, 2017 Share Posted October 22, 2017 51 minutes ago, Darren Kitchen said: This should port pretty well: https://github.com/hak5/lanturtle-wiki/blob/gh-pages/modules/tortle IIRC, seb mentioned an issue with using multiple devices behind a single Tor-proxy Link to comment Share on other sites More sharing options...
UnLo Posted October 23, 2017 Share Posted October 23, 2017 On 10/21/2017 at 7:16 PM, Darren Kitchen said: Absolutely. Seb and I will soon be hosting a live payload hackathon and it's one of the top on my list to write. Should be pretty straight forward. Ooh do keep us up-to-date on this.. Would love to join Link to comment Share on other sites More sharing options...
HeavyVin Posted October 23, 2017 Share Posted October 23, 2017 On 10/21/2017 at 7:16 PM, Darren Kitchen said: Absolutely. Seb and I will soon be hosting a live payload hackathon and it's one of the top on my list to write. Should be pretty straight forward. Would it be in CA or could some of us participate virtually? Link to comment Share on other sites More sharing options...
Foxtrot Posted October 23, 2017 Share Posted October 23, 2017 Highly likely that it will be live. Link to comment Share on other sites More sharing options...
Dave-ee Jones Posted October 23, 2017 Share Posted October 23, 2017 On 10/22/2017 at 10:16 AM, Darren Kitchen said: Absolutely. Seb and I will soon be hosting a live payload hackathon and it's one of the top on my list to write. Should be pretty straight forward. 4 hours ago, Foxtrot said: Highly likely that it will be live. I would think so, based on what Darren has said. Link to comment Share on other sites More sharing options...
Sebkinne Posted October 23, 2017 Share Posted October 23, 2017 8 minutes ago, Dave-ee Jones said: I would think so, based on what Darren has said. It will be live-streamed and we will be taking questions. We might even have people be able to join in on the call. Link to comment Share on other sites More sharing options...
Dave-ee Jones Posted October 24, 2017 Share Posted October 24, 2017 2 hours ago, Sebkinne said: It will be live-streamed and we will be taking questions. We might even have people be able to join in on the call. So, by a live-streamed 'hackathon', do you mean live-streaming you guys creating payloads and working on projects while answering questions? Link to comment Share on other sites More sharing options...
Vob Billa Posted October 25, 2017 Share Posted October 25, 2017 On 10/21/2017 at 1:04 PM, AArch64 said: I saw that this could be used as a hardware based VPN, could it be used as a hardware based TOR transparent proxy? works for me did the following: arming mode (switch 4) opkg install tor vi /etc/tor/torrc (proxy + hidden ssh service) Quote SOCKSPort 172.16.32.1:9050 SOCKSPolicy accept 172.16.32.0/24 Log notice file /mnt/tor/notices.log Log debug file /mnt/tor/debug.log RunAsDaemon 1 DataDirectory /var/lib/tor HiddenServiceDir /mnt/tor/hidden_service/ HiddenServicePort 22 127.0.0.1:22 User tor vi /root/payloads/switch1/payload.sh Quote #!/bin/bash # tor payload copied from tcpdump function finish() { sync # Indicate successful shutdown LED R SUCCESS sleep 1 # Halt the system LED OFF halt } function run() { # Set networking to TRANSPARENT mode and wait five seconds NETMODE NAT sleep 5 /etc/init.d/sshd start /etc/init.d/tor start # Wait for button to be pressed (disable button LED) NO_LED=true BUTTON finish } # This payload will only run if we have USB storage [[ ! -f /mnt/NO_MOUNT ]] && { LED ATTACK run & } || { LED FAIL move to switch1, reboot and you got tor as a proxy and hidden service on 172.16.32.1 Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.