Page 1 of 4

gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sat Feb 20, 2016 4:06 pm
by ispyisail
USE AT YOUR OWN RISK

gargoyle-ispy 2016-February-20 02:32.torrent
https://goo.gl/Nyx9kD


magnet:?xt=urn:btih:537c8370d29082897f4ad6adbaddf8237f9e8f30&dn=gargoyle-ispy%202016-February-20%2002_32.7z&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80&tr=udp%3a%2f%2fopen.demonii.com%3a1337&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969


Routers
https://goo.gl/RyUetK


Update menu-firewall_adblock.txt

Update german translation for Tor

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sat Feb 20, 2016 6:43 pm
by n8b
Tested on TL-WDR3600 with wired WAN and HiLink modem.
I didn't see any problems only a very small glitch.

When I change WAN | Connect via and hit 'Save Changes' the IP of the previous connection is still in 'Current IP:'. If I update the page (F5) the 'Current IP:' is updated to the current IP.
Nothing serious :)

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 4:14 am
by proper88
before downloading and installing.
is this build compiled with option
CONFIG_PACKAGE_kmod-usb-net-cdc-ether=y
for nand targets ?
i have a wndr3700v4

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 4:33 am
by Lantis
proper88 wrote:before downloading and installing.
is this build compiled with option
CONFIG_PACKAGE_kmod-usb-net-cdc-ether=y
for nand targets ?
i have a wndr3700v4
no

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 4:53 am
by proper88
thank you for your response.

so what i have to do to make this feature active in next builds ?

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 5:22 am
by Lantis
Fork the git code, make the change, make a pull request :)
https://github.com/ericpaulbishop/gargoyle

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 11:22 am
by proper88
I have done a pull request.
In the meantime i have to wait or ?

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 1:35 pm
by chojny65
When set to 2.4 GHz and option B + G + N parameter
hwmode option "11g" and should not be
option hwmode '11ng'?

/etc/config$ cat /etc/config/wireless

config wifi-device 'radio0'
option type 'mac80211'
option hwmode '11a'
option path 'pci0000:01/0000:01:00.0'
option channel '149'
option htmode 'VHT80'

config wifi-device 'radio1'
option type 'mac80211'
option path 'platform/qca955x_wmac'
option channel '6'
option hwmode '11g'
option htmode 'HT40+'

config wifi-iface 'ap_g'
option device 'radio1'
option mode 'ap'
option network 'lan'
option disassoc_low_ack '0'
option macfilter 'allow'
option maclist 'C4:88:E5:DD:93:BA C0:18:85:48:32:24 08:11:96:01:76:BB 64:27:37:D0:D4:47 4C:80:93:14:58:E3 24:FD:52:F1:68:4B 9C:99:A0:C0:87:83 78:AB:BB:CE:3B:15 00:08:22:3B:5E:30 00:18:E7:8B:2F:0A 00:08:22:3D:0C:19 B8:EE:65:7B:A3:18 18:DC:56:F0:06:E3 7C:5C:F8:8A:44:BD E8:DE:27:1C:64:7B'
option ssid 'chojny'
option encryption 'none'

config wifi-iface 'ap_a'
option device 'radio0'
option mode 'ap'
option network 'lan'
option disassoc_low_ack '0'
option macfilter 'allow'
option maclist 'C4:88:E5:DD:93:BA C0:18:85:48:32:24 08:11:96:01:76:BB 64:27:37:D0:D4:47 4C:80:93:14:58:E3 24:FD:52:F1:68:4B 9C:99:A0:C0:87:83 78:AB:BB:CE:3B:15 00:08:22:3B:5E:30 00:18:E7:8B:2F:0A 00:08:22:3D:0C:19 B8:EE:65:7B:A3:18 18:DC:56:F0:06:E3 7C:5C:F8:8A:44:BD E8:DE:27:1C:64:7B'
option ssid 'chojny 5GHz'
option encryption 'none'

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 3:20 pm
by tvbaas
As reported earlier (by justAguy) the UI has an issue using IE11 when opening the Connection Basic tab.

I had the same issue back then when running it on my TL-wr1043nd V1.
So tried today this new release but the same issue happened again on IE11. Then tried Firefox for verification, but there everthing is working as it should.

Started an investigation of the issue and when using the F12 option in IE11 the following error is shown at line 742 in the IE11 (F12) window:
'wifi_channel_width' is undefined .
As these lines are part of the "wifi_guest_mode" option (which is a recent new option) this could be the reason why it does show up now.

The following code in Basic.js seems to be affected:

Code: Select all

setChannelWidth(Object(wifi_channel_width), "G"), setChannelWidth(Object(wifi_channel_width_5ghz), "A")
I am not a software engineer but checking the Basic.js script, I decide to replace the above code with following:

Code: Select all

setChannelWidth(document.getElementById("wifi_channel_width"), "G"), setChannelWidth(document.getElementById("wifi_channel_width_5ghz"), "A")
When opening the page now in IE11 it shows all things correct and also Firefox still works well.

So can someone verify if IE11 behavior is indeed related to the "wrong" code?

(I tried to attach some files, but the server dos not let me.)

Re: gargoyle-ispy 2016-February-20 02:32.torrent

Posted: Sun Feb 21, 2016 3:43 pm
by Lantis
proper88 wrote:I have done a pull request.
In the meantime i have to wait or ?
It looks good. There's currently 10 or so pull requests open for review. I'm sure it will be merged soon enough.