diff --git a/plugins/dynamix/VPNmanager.page b/plugins/dynamix/VPNmanager.page deleted file mode 100644 index ee5113182..000000000 --- a/plugins/dynamix/VPNmanager.page +++ /dev/null @@ -1,5 +0,0 @@ -Menu="NetworkServices" -Type="xmenu" -Title="VPN Manager" -Icon="icon-vpn" -Tabs="false" \ No newline at end of file diff --git a/plugins/dynamix/WG0.page b/plugins/dynamix/WG0.page deleted file mode 100644 index 0b9dd07b6..000000000 --- a/plugins/dynamix/WG0.page +++ /dev/null @@ -1,1508 +0,0 @@ -Menu="VPNmanager:100" -Title="Tunnel wg0" -Tag="icon-vpn" ---- - -0) { - $entries = array_filter(array_map('trim',preg_split('/\[(Interface|Peer)\]/',file_get_contents($conf)))); - foreach ($entries as $key => $entry) { - $i = $key-1; - if ($i) $peer_wg[] = $i; - $rows = explode("\n",$entry); - foreach ($rows as $row) { - [$id,$data] = array_map('trim',explode('=',$row,2)); - switch ($id) { - case 'PostUp': - case 'PostDown': - break; - case 'Address': - foreach (array_map('trim',explode(',',$data)) as $ip) { - if (strpos($ip,'.')!==false) $wg["Address:$i"] = $ip; - elseif (strpos($ip,':')!==false) $wg["Address6:$i"] = $ip; - } - break; - case 'Endpoint': - if ($data[0]=='[') { - [$ip,$port] = explode(']:',$data); - $ip = substr($ip,1); - } else { - [$ip,$port] = explode(':',$data); - } - $wg["Endpoint:$i"] = $ip; - $wg["ListenPort:$i"] = $port; - break; - default: - if ($id[0]=='#') $wg["Name:$i"] = substr($id,1); else $wg["$id:$i"] = $data; - break; - } - } - } - $file = true; - } - if (file_exists($cfg)) { - $more = parse_ini_file($cfg); - foreach ($more as $key => $data) { - [$id,$i] = explode(':',$key); - if ($id!='Address') continue; - switch ($more['PROT:0']) { - case '46': - [$ip4,$ip6] = array_map('trim',explode(',',$data)); - $more[$key] = $ip4; - $more["Address6:$i"] = $ip6; - break; - case '6': - unset($more[$key]); - $more["Address6:$i"] = $data; - break; - } - } - $wg = array_merge($wg,$more); - [$subnet,$mask] = explode('/',$wg['Network:0']); - [$subnet6,$mask6] = explode('/',$wg['Network6:0']); - $netbase[$vtun] = ip2long($subnet) & (0x100000000-2**(32-$mask)); - $netbase6[$vtun] = $subnet6 ?: $netpool6[$vtun]; - } else { - $netbase[$vtun] = ip2long($netpool[$vtun]); - $netbase6[$vtun] = $netpool6[$vtun]; - } - foreach ($peer_wg as $i) if ((int)$wg["TYPE:$i"]==7) {$vpn = true; break;} - return [$conf,$cfg,$file,$vpn]; -} -$public = strpos($_SERVER['HTTP_HOST'],'unraid.net')!==false && $remote['wanaccess']=='yes' ? (substr($_SERVER['HTTP_HOST'],0,4)!='www.'?'www.':'').explode(':',$_SERVER['HTTP_HOST'])[0] : ''; -$active = (array)explode(' ',exec('wg show interfaces')); -$autostart = (array)explode(' ',@file_get_contents("$etc/autostart")); -$build = false; -$script = "$docroot/webGui/scripts/upnp_port"; -$template = "$docroot/webGui/WGX.page"; -$tower = $var['NAME']; -$server = $eth0['IPADDR:0']; -$server6 = $eth0['IPADDR6:0']; - -$link = file_exists('/sys/class/net/br0') ? 'br0' : (file_exists('/sys/class/net/bond0') ? 'bond0' : 'eth0'); -$postUp0 = "$script add $link WireGuard- $server udp"; -$postUp1 = "logger -t wireguard 'Tunnel WireGuard- started'"; -$postUp2 = "iptables -t nat -A POSTROUTING -s -o $link -j MASQUERADE"; -$postUp3 = "iptables -N WIREGUARD_DROP_;iptables -A WIREGUARD -o $link -j WIREGUARD_DROP_"; -$postUpX = "iptables -A WIREGUARD_DROP_ -s -d -j DROP"; -$postUpZ = "iptables -A WIREGUARD_DROP_ -s -j ACCEPT;iptables -A WIREGUARD_DROP_ -j RETURN"; -$postUp26 = "ip6tables -t nat -A POSTROUTING -s -o $link -j MASQUERADE"; -$postUp36 = "ip6tables -N WIREGUARD_DROP_;ip6tables -A WIREGUARD -o $link -j WIREGUARD_DROP_"; -$postUpX6 = "ip6tables -A WIREGUARD_DROP_ -s -d -j DROP"; -$postUpZ6 = "ip6tables -A WIREGUARD_DROP_ -s -j ACCEPT;ip6tables -A WIREGUARD_DROP_ -j RETURN"; -$postDown0 = "$script del $link udp"; -$postDown1 = "logger -t wireguard 'Tunnel WireGuard- stopped'"; -$postDown2 = "iptables -t nat -D POSTROUTING -s -o $link -j MASQUERADE"; -$postDown3 = "iptables -F WIREGUARD_DROP_;iptables -D WIREGUARD -o $link -j WIREGUARD_DROP_;iptables -X WIREGUARD_DROP_"; -$postDown26= "ip6tables -t nat -D POSTROUTING -s -o $link -j MASQUERADE"; -$postDown36= "ip6tables -F WIREGUARD_DROP_;ip6tables -D WIREGUARD -o $link -j WIREGUARD_DROP_;ip6tables -X WIREGUARD_DROP_"; - -$tld = file_get_contents("$docroot/webGui/include/tld.key"); -$validDNS = "([0-9a-z]([0-9a-z\-]{0,61}[0-9a-z])?\.)+($tld)"; -$validIP4 = "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}"; -$validIP6 = "(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|(:|([0-9a-fA-F]{1,4}:)+):(([0-9a-fA-F]{1,4}:)*[0-9a-fA-F]{1,4})?)"; -$maskIP4 = "([0-9]|[12][0-9]|3[0-2])?"; -$maskIP6 = "([0-9]|[1-9][[0-9]|1[01][0-9]|12[0-8])?"; - -$validText = "^($validDNS|$validIP4|$validIP6)$"; -$validList = "^(($validIP4/?$maskIP4|$validIP6/?$maskIP6)(, *)?)+$"; -$validDNSServerList = "^(($validIP4|$validIP6)(, *)?)+$"; -$validname = "^[0-9a-zA-Z \-_]*$"; - -$netbase = $netpool = $netport = []; -$netbase6 = $netpool6 = []; -$check_wg0 = in_array('wg0',$active) ? 'true' : 'false'; -$start_wg0 = in_array('wg0',$autostart); -$peer_wg0 = $wg0 = []; - -$netpool['wg0'] = '10.253.0.0'; -$netpool6['wg0'] = 'fc00:253:0:0::'; -$netport['wg0'] = 51820; - -// read current configuration -[$conf_wg0, $cfg_wg0, $this_wg0, $vpn_wg0] = readConf($peer_wg0, $wg0, 'wg0'); - -// gather IPv4 and IPv6 addresses for available interfaces -$endpoints = []; -$ethX = 'eth0'; -while (isset($$ethX)) { - if (!empty($$ethX['IPADDR:0'])) $endpoints[] = $$ethX['IPADDR:0']; - if (!empty($$eth0['IPADDR6:0'])) $endpoints[] = $$ethX['IPADDR6:0']; - $ethX = 'eth'.(substr($ethX,3)+1); -} - -// remove obsolete tunnels -foreach (glob("$docroot/webGui/WG[1-9]*.page",GLOB_NOSORT) as $wgX) { - if (!in_array(strtolower(basename($wgX,'.page')), $vtuns)) { - unlink($wgX); - $build = true; - } -} -// add additional tunnels -foreach ($vtuns as $wgX) { - if ($wgX == 'wg0') continue; - $file = "$docroot/webGui/".strtoupper($wgX).".page"; - if (!file_exists($file)) { - $X = filter_var($wgX,FILTER_SANITIZE_NUMBER_INT); - $nnn = 100 + $X; - copy($template, $file); - exec("sed -i 's/parentname:nnn/VPNmanager:$nnn/;s/XXX/$X/g;s/wgX/$wgX/g' $file"); - chmod($file,0644); - $build = true; - } -} -?> - - - - - - diff --git a/plugins/dynamix/WGX.page b/plugins/dynamix/WGX.page deleted file mode 100644 index a63903946..000000000 --- a/plugins/dynamix/WGX.page +++ /dev/null @@ -1,456 +0,0 @@ -Menu="parentname:nnn" -Title="Tunnel wgX" -Tag="icon-vpn" ---- - - - - diff --git a/plugins/dynamix/images/wireguard-help.png b/plugins/dynamix/images/wireguard-help.png deleted file mode 100644 index e9fe651bb..000000000 Binary files a/plugins/dynamix/images/wireguard-help.png and /dev/null differ diff --git a/plugins/dynamix/include/WGconfig.php b/plugins/dynamix/include/WGconfig.php deleted file mode 100644 index 47b3788aa..000000000 --- a/plugins/dynamix/include/WGconfig.php +++ /dev/null @@ -1,70 +0,0 @@ - - -"> -"> - - - - - -

-
-
-
-
-
-
- -&csrf_token=&v="> - - -','.zip')"> -
- diff --git a/plugins/dynamix/include/WGimage.php b/plugins/dynamix/include/WGimage.php deleted file mode 100644 index 7e42eb50f..000000000 --- a/plugins/dynamix/include/WGimage.php +++ /dev/null @@ -1,26 +0,0 @@ - -= $lastmod) { - header($_SERVER["SERVER_PROTOCOL"].' 304 Not Modified'); -} else { - header('Last-Modified:'.gmdate('D, d M Y H:i:s', $lastmod).' GMT'); - header('Content-type:image/png'); - readfile($file); -} -?> \ No newline at end of file diff --git a/plugins/dynamix/include/tld.key b/plugins/dynamix/include/tld.key deleted file mode 100644 index cf3a39565..000000000 --- a/plugins/dynamix/include/tld.key +++ /dev/null @@ -1 +0,0 @@ -aaa|aarp|abarth|abb|abbott|abbvie|abc|able|abogado|abudhabi|ac|academy|accenture|accountant|accountants|aco|actor|ad|adac|ads|adult|ae|aeg|aero|aetna|af|afamilycompany|afl|africa|ag|agakhan|agency|ai|aig|aigo|airbus|airforce|airtel|akdn|al|alfaromeo|alibaba|alipay|allfinanz|allstate|ally|alsace|alstom|am|americanexpress|americanfamily|amex|amfam|amica|amsterdam|analytics|android|anquan|anz|ao|aol|apartments|app|apple|aq|aquarelle|ar|arab|aramco|archi|army|arpa|art|arte|as|asda|asia|associates|at|athleta|attorney|au|auction|audi|audible|audio|auspost|author|auto|autos|avianca|aw|aws|ax|axa|az|azure|ba|baby|baidu|banamex|bananarepublic|band|bank|bar|barcelona|barclaycard|barclays|barefoot|bargains|baseball|basketball|bauhaus|bayern|bb|bbc|bbt|bbva|bcg|bcn|bd|be|beats|beauty|beer|bentley|berlin|best|bestbuy|bet|bf|bg|bh|bharti|bi|bible|bid|bike|bing|bingo|bio|biz|bj|black|blackfriday|blockbuster|blog|bloomberg|blue|bm|bms|bmw|bn|bnpparibas|bo|boats|boehringer|bofa|bom|bond|boo|book|booking|bosch|bostik|boston|bot|boutique|box|br|bradesco|bridgestone|broadway|broker|brother|brussels|bs|bt|budapest|bugatti|build|builders|business|buy|buzz|bv|bw|by|bz|bzh|ca|cab|cafe|cal|call|calvinklein|cam|camera|camp|cancerresearch|canon|capetown|capital|capitalone|car|caravan|cards|care|career|careers|cars|casa|case|caseih|cash|casino|cat|catering|catholic|cba|cbn|cbre|cbs|cc|cd|ceb|center|ceo|cern|cf|cfa|cfd|cg|ch|chanel|channel|charity|chase|chat|cheap|chintai|christmas|chrome|church|ci|cipriani|circle|cisco|citadel|citi|citic|city|cityeats|ck|cl|claims|cleaning|click|clinic|clinique|clothing|cloud|club|clubmed|cm|cn|co|coach|codes|coffee|college|cologne|com|comcast|commbank|community|company|compare|computer|comsec|condos|construction|consulting|contact|contractors|cooking|cookingchannel|cool|coop|corsica|country|coupon|coupons|courses|cpa|cr|credit|creditcard|creditunion|cricket|crown|crs|cruise|cruises|csc|cu|cuisinella|cv|cw|cx|cy|cymru|cyou|cz|dabur|dad|dance|data|date|dating|datsun|day|dclk|dds|de|deal|dealer|deals|degree|delivery|dell|deloitte|delta|democrat|dental|dentist|desi|design|dev|dhl|diamonds|diet|digital|direct|directory|discount|discover|dish|diy|dj|dk|dm|dnp|do|docs|doctor|dog|domains|dot|download|drive|dtv|dubai|duck|dunlop|dupont|durban|dvag|dvr|dz|earth|eat|ec|eco|edeka|edu|education|ee|eg|email|emerck|energy|engineer|engineering|enterprises|epson|equipment|er|ericsson|erni|es|esq|estate|esurance|et|etisalat|eu|eurovision|eus|events|exchange|expert|exposed|express|extraspace|fage|fail|fairwinds|faith|family|fan|fans|farm|farmers|fashion|fast|fedex|feedback|ferrari|ferrero|fi|fiat|fidelity|fido|film|final|finance|financial|fire|firestone|firmdale|fish|fishing|fit|fitness|fj|fk|flickr|flights|flir|florist|flowers|fly|fm|fo|foo|food|foodnetwork|football|ford|forex|forsale|forum|foundation|fox|fr|free|fresenius|frl|frogans|frontdoor|frontier|ftr|fujitsu|fujixerox|fun|fund|furniture|futbol|fyi|ga|gal|gallery|gallo|gallup|game|games|gap|garden|gay|gb|gbiz|gd|gdn|ge|gea|gent|genting|george|gf|gg|ggee|gh|gi|gift|gifts|gives|giving|gl|glade|glass|gle|global|globo|gm|gmail|gmbh|gmo|gmx|gn|godaddy|gold|goldpoint|golf|goo|goodyear|goog|google|gop|got|gov|gp|gq|gr|grainger|graphics|gratis|green|gripe|grocery|group|gs|gt|gu|guardian|gucci|guge|guide|guitars|guru|gw|gy|hair|hamburg|hangout|haus|hbo|hdfc|hdfcbank|health|healthcare|help|helsinki|here|hermes|hgtv|hiphop|hisamitsu|hitachi|hiv|hk|hkt|hm|hn|hockey|holdings|holiday|homedepot|homegoods|homes|homesense|honda|horse|hospital|host|hosting|hot|hoteles|hotels|hotmail|house|how|hr|hsbc|ht|hu|hughes|hyatt|hyundai|ibm|icbc|ice|icu|id|ie|ieee|ifm|ikano|il|im|imamat|imdb|immo|immobilien|in|inc|industries|infiniti|info|ing|ink|institute|insurance|insure|int|intel|international|intuit|investments|io|ipiranga|iq|ir|irish|is|ismaili|ist|istanbul|it|itau|itv|iveco|jaguar|java|jcb|jcp|je|jeep|jetzt|jewelry|jio|jll|jm|jmp|jnj|jo|jobs|joburg|jot|joy|jp|jpmorgan|jprs|juegos|juniper|kaufen|kddi|ke|kerryhotels|kerrylogistics|kerryproperties|kfh|kg|kh|ki|kia|kim|kinder|kindle|kitchen|kiwi|km|kn|koeln|komatsu|kosher|kp|kpmg|kpn|kr|krd|kred|kuokgroup|kw|ky|kyoto|kz|la|lacaixa|lamborghini|lamer|lancaster|lancia|land|landrover|lanxess|lasalle|lat|latino|latrobe|law|lawyer|lb|lc|lds|lease|leclerc|lefrak|legal|lego|lexus|lgbt|li|liaison|lidl|life|lifeinsurance|lifestyle|lighting|like|lilly|limited|limo|lincoln|linde|link|lipsy|live|living|lixil|lk|llc|llp|loan|loans|locker|locus|loft|lol|london|lotte|lotto|love|lpl|lplfinancial|lr|ls|lt|ltd|ltda|lu|lundbeck|lupin|luxe|luxury|lv|ly|ma|macys|madrid|maif|maison|makeup|man|management|mango|map|market|marketing|markets|marriott|marshalls|maserati|mattel|mba|mc|mckinsey|md|me|med|media|meet|melbourne|meme|memorial|men|menu|merckmsd|metlife|mg|mh|miami|microsoft|mil|mini|mint|mit|mitsubishi|mk|ml|mlb|mls|mm|mma|mn|mo|mobi|mobile|moda|moe|moi|mom|monash|money|monster|mormon|mortgage|moscow|moto|motorcycles|mov|movie|movistar|mp|mq|mr|ms|msd|mt|mtn|mtr|mu|museum|mutual|mv|mw|mx|my|mz|na|nab|nadex|nagoya|name|nationwide|natura|navy|nba|nc|ne|nec|net|netbank|netflix|network|neustar|new|newholland|news|next|nextdirect|nexus|nf|nfl|ng|ngo|nhk|ni|nico|nike|nikon|ninja|nissan|nissay|nl|no|nokia|northwesternmutual|norton|now|nowruz|nowtv|np|nr|nra|nrw|ntt|nu|nyc|nz|obi|observer|off|office|okinawa|olayan|olayangroup|oldnavy|ollo|om|omega|one|ong|onl|online|onyourside|ooo|open|oracle|orange|org|organic|origins|osaka|otsuka|ott|ovh|pa|page|panasonic|paris|pars|partners|parts|party|passagens|pay|pccw|pe|pet|pf|pfizer|pg|ph|pharmacy|phd|philips|phone|photo|photography|photos|physio|pics|pictet|pictures|pid|pin|ping|pink|pioneer|pizza|pk|pl|place|play|playstation|plumbing|plus|pm|pn|pnc|pohl|poker|politie|porn|post|pr|pramerica|praxi|press|prime|pro|prod|productions|prof|progressive|promo|properties|property|protection|pru|prudential|ps|pt|pub|pw|pwc|py|qa|qpon|quebec|quest|qvc|racing|radio|raid|re|read|realestate|realtor|realty|recipes|red|redstone|redumbrella|rehab|reise|reisen|reit|reliance|ren|rent|rentals|repair|report|republican|rest|restaurant|review|reviews|rexroth|rich|richardli|ricoh|rightathome|ril|rio|rip|rmit|ro|rocher|rocks|rodeo|rogers|room|rs|rsvp|ru|rugby|ruhr|run|rw|rwe|ryukyu|sa|saarland|safe|safety|sakura|sale|salon|samsclub|samsung|sandvik|sandvikcoromant|sanofi|sap|sarl|sas|save|saxo|sb|sbi|sbs|sc|sca|scb|schaeffler|schmidt|scholarships|school|schule|schwarz|science|scjohnson|scor|scot|sd|se|search|seat|secure|security|seek|select|sener|services|ses|seven|sew|sex|sexy|sfr|sg|sh|shangrila|sharp|shaw|shell|shia|shiksha|shoes|shop|shopping|shouji|show|showtime|shriram|si|silk|sina|singles|site|sj|sk|ski|skin|sky|skype|sl|sling|sm|smart|smile|sn|sncf|so|soccer|social|softbank|software|sohu|solar|solutions|song|sony|soy|space|sport|spot|spreadbetting|sr|srl|ss|st|stada|staples|star|statebank|statefarm|stc|stcgroup|stockholm|storage|store|stream|studio|study|style|su|sucks|supplies|supply|support|surf|surgery|suzuki|sv|swatch|swiftcover|swiss|sx|sy|sydney|symantec|systems|sz|tab|taipei|talk|taobao|target|tatamotors|tatar|tattoo|tax|taxi|tc|tci|td|tdk|team|tech|technology|tel|telefonica|temasek|tennis|teva|tf|tg|th|thd|theater|theatre|tiaa|tickets|tienda|tiffany|tips|tires|tirol|tj|tjmaxx|tjx|tk|tkmaxx|tl|tm|tmall|tn|to|today|tokyo|tools|top|toray|toshiba|total|tours|town|toyota|toys|tr|trade|trading|training|travel|travelchannel|travelers|travelersinsurance|trust|trv|tt|tube|tui|tunes|tushu|tv|tvs|tw|tz|ua|ubank|ubs|ug|uk|unicom|university|uno|uol|ups|us|uy|uz|va|vacations|vana|vanguard|vc|ve|vegas|ventures|verisign|versicherung|vet|vg|vi|viajes|video|vig|viking|villas|vin|vip|virgin|visa|vision|vistaprint|viva|vivo|vlaanderen|vn|vodka|volkswagen|volvo|vote|voting|voto|voyage|vu|vuelos|wales|walmart|walter|wang|wanggou|watch|watches|weather|weatherchannel|webcam|weber|website|wed|wedding|weibo|weir|wf|whoswho|wien|wiki|williamhill|win|windows|wine|winners|wme|wolterskluwer|woodside|work|works|world|wow|ws|wtc|wtf|xbox|xerox|xfinity|xihuan|xin|xn--11b4c3d|xn--1ck2e1b|xn--1qqw23a|xn--2scrj9c|xn--30rr7y|xn--3bst00m|xn--3ds443g|xn--3e0b707e|xn--3hcrj9c|xn--3oq18vl8pn36a|xn--3pxu8k|xn--42c2d9a|xn--45br5cyl|xn--45brj9c|xn--45q11c|xn--4gbrim|xn--54b7fta0cc|xn--55qw42g|xn--55qx5d|xn--5su34j936bgsg|xn--5tzm5g|xn--6frz82g|xn--6qq986b3xl|xn--80adxhks|xn--80ao21a|xn--80aqecdr1a|xn--80asehdb|xn--80aswg|xn--8y0a063a|xn--90a3ac|xn--90ae|xn--90ais|xn--9dbq2a|xn--9et52u|xn--9krt00a|xn--b4w605ferd|xn--bck1b9a5dre4c|xn--c1avg|xn--c2br7g|xn--cck2b3b|xn--cg4bki|xn--clchc0ea0b2g2a9gcd|xn--czr694b|xn--czrs0t|xn--czru2d|xn--d1acj3b|xn--d1alf|xn--e1a4c|xn--eckvdtc9d|xn--efvy88h|xn--estv75g|xn--fct429k|xn--fhbei|xn--fiq228c5hs|xn--fiq64b|xn--fiqs8s|xn--fiqz9s|xn--fjq720a|xn--flw351e|xn--fpcrj9c3d|xn--fzc2c9e2c|xn--fzys8d69uvgm|xn--g2xx48c|xn--gckr3f0f|xn--gecrj9c|xn--gk3at1e|xn--h2breg3eve|xn--h2brj9c|xn--h2brj9c8c|xn--hxt814e|xn--i1b6b1a6a2e|xn--imr513n|xn--io0a7i|xn--j1aef|xn--j1amh|xn--j6w193g|xn--jlq61u9w7b|xn--jvr189m|xn--kcrx77d1x4a|xn--kprw13d|xn--kpry57d|xn--kpu716f|xn--kput3i|xn--l1acc|xn--lgbbat1ad8j|xn--mgb9awbf|xn--mgba3a3ejt|xn--mgba3a4f16a|xn--mgba7c0bbn0a|xn--mgbaakc7dvf|xn--mgbaam7a8h|xn--mgbab2bd|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--mgbayh7gpa|xn--mgbbh1a|xn--mgbbh1a71e|xn--mgbc0a9azcg|xn--mgbca7dzdo|xn--mgberp4a5d4ar|xn--mgbgu82a|xn--mgbi4ecexp|xn--mgbpl2fh|xn--mgbt3dhd|xn--mgbtx2b|xn--mgbx4cd0ab|xn--mix891f|xn--mk1bu44c|xn--mxtq1m|xn--ngbc5azd|xn--ngbe9e0a|xn--ngbrx|xn--node|xn--nqv7f|xn--nqv7fs00ema|xn--nyqy26a|xn--o3cw4h|xn--ogbpf8fl|xn--otu796d|xn--p1acf|xn--p1ai|xn--pbt977c|xn--pgbs0dh|xn--pssy2u|xn--q9jyb4c|xn--qcka1pmc|xn--qxa6a|xn--qxam|xn--rhqv96g|xn--rovu88b|xn--rvc1e0am3e|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--tckwe|xn--tiq49xqyj|xn--unup4y|xn--vermgensberater-ctb|xn--vermgensberatung-pwb|xn--vhquv|xn--vuq861b|xn--w4r85el8fhu5dnra|xn--w4rs40l|xn--wgbh1c|xn--wgbl6a|xn--xhq521b|xn--xkc2al3hye2a|xn--xkc2dl3a5ee0h|xn--y9a3aq|xn--yfro4i67o|xn--ygbi2ammx|xn--zfr164b|xxx|xyz|yachts|yahoo|yamaxun|yandex|ye|yodobashi|yoga|yokohama|you|youtube|yt|yun|za|zappos|zara|zero|zip|zm|zone|zuerich|zw \ No newline at end of file diff --git a/plugins/dynamix/include/update.wireguard.php b/plugins/dynamix/include/update.wireguard.php deleted file mode 100644 index 058b95e9d..000000000 --- a/plugins/dynamix/include/update.wireguard.php +++ /dev/null @@ -1,409 +0,0 @@ - - $new) { - // rename files to match revised peers list - rename($file, "$peer-$new.conf"); - rename(str_replace('.conf','.png',$file), "$peer-$new.png"); - } - $new++; - } - } - } else { - mkdir($dir); - } - $list = []; - foreach ($peers as $id => $peer) { - if (empty($peer[1])) break; // tunnel without any peers - $cfg = "$dir/peer-$name-$vtun-$id.conf"; - $cfgold = @file_get_contents($cfg) ?: ''; - $cfgnew = implode("\n",$peer)."\n"; - if ($cfgnew !== $cfgold) { - $list[] = "$vtun: peer $id (".($peer[1][0]=='#' ? substr($peer[1],1) : _('no name')).')'; - file_put_contents($cfg,$cfgnew); - $png = str_replace('.conf','.png',$cfg); - exec("qrencode -t PNG -r $cfg -o $png"); - } - } - // store the peer names which are updated - if (count($list)) file_put_contents($tmp,implode("
",$list)); else @unlink($tmp); -} -function parseInput(&$input,&$x) { - global $conf,$user,$var,$default,$default6; - $section = 0; $addPeer = false; - foreach ($input as $key => $value) { - if ($key[0]=='#') continue; - [$id,$i] = explode(':',$key); - if ($i != $section) { - $conf[] = "\n[Peer]"; - // add peers only for peer sections - $addPeer ? addPeer($x) : $addPeer = true; - $section = $i; - } - switch ($id) { - case 'Name': - if ($value) $conf[] = "#$value"; - if ($i==0) { - $var['server'] = $value ? "#$value" : false; - } else { - $var['client'] = $value ? "#$value" : false; - } - break; - case 'PrivateKey': - if ($i==0) { - $conf[] = "$id=$value"; - } else { - if ($value) $user[] = "$id:$x=\"$value\""; - $var['privateKey'] = $value ? "$id=$value" : false; - } - break; - case 'PublicKey': - if ($i==0) { - $user[] = "$id:0=\"$value\""; - $var['publicKey'] = "$id=$value"; - } else { - $conf[] = "$id=$value"; - } - break; - case 'DNS': - if ($i>0 && $value) { - $user[] = "$id:$x=\"$value\""; - $var['dns'] = "$id=$value"; - } else $var['dns'] = false; - break; - case 'PROT': - $protocol = $value; - $user[] = "$id:0=\"$value\""; - switch ($protocol) { - case '46': $var['default'] = "AllowedIPs=$default, $default6"; break; - case '6' : $var['default'] = "AllowedIPs=$default6"; break; - default : $var['default'] = "AllowedIPs=$default"; break; - } - break; - case 'TYPE': - $list = array_map('trim',explode(',',$value<4 ? ($value%2==1 ? $var['subnets1'] : $var['subnets2']) : ($value<6 ? ($value%2==1 ? $var['shared1'] : $var['shared2']) : $var['default']))); - $var['allowedIPs'] = implode(', ',array_map('host',array_filter($list))); - $var['tunnel'] = ($value==2||$value==3) ? $tunnel : false; - $user[] = "$id:$x=\"$value\""; - break; - case 'Network': - case 'Network6': - case 'UPNP': - case 'DROP': - case 'RULE': - case 'NAT': - $user[] = "$id:0=\"$value\""; - break; - case 'Address': - $hosts = implode(', ',array_map('host',array_filter(explode(', ',$value)))); - if ($i==0) { - $conf[] = "$id=$value"; - $tunnel = "$id=$hosts"; - } else { - $user[] = "$id:$x=\"$value\""; - $var['address'] = "$id=$hosts"; - } - break; - case 'MTU': - if ($value) $conf[] = "$id=$value"; - $var['mtu'] = $value ? "$id=$value" : false; - break; - case 'Endpoint': - if ($i==0) { - $user[] = "$id:0=\"$value\""; - $var['endpoint'] = $value ? "Endpoint=".ipset($value) : false; - } else { - if ($value) $conf[] = "$id=$value"; - $var['listenport'] = $value ? "ListenPort=".explode(ipv6($value),$value)[1] : false; - if ($var['endpoint'] && strpos($var['endpoint'],ipv6($var['endpoint']))===false) $var['endpoint'] .= ":".explode(ipv6($var['internet']),$var['internet'])[1]; - } - break; - case 'PersistentKeepalive': - if ($value) $conf[] = "$id=$value"; - $var['handshake'] = $value ? "$id=$value" : false; - break; - case 'PresharedKey': - if ($value) $conf[] = "$id=$value"; - $var['presharedKey'] = $value ? "$id=$value" : false; - break; - default: - if ($value) $conf[] = "$id=$value"; - break; - } - } -} -$default = '0.0.0.0/0'; -$default6 = '::/0'; -switch ($_POST['#cmd']) { -case 'keypair': - $private = exec("wg genkey"); - $public = exec("wg pubkey <<<'$private'"); - echo $private."\0".$public; - break; -case 'presharedkey': - echo exec("wg genpsk"); - break; -case 'update': - if (!exec("iptables -S|grep -om1 'WIREGUARD$'")) { - exec("iptables -N WIREGUARD;iptables -A FORWARD -j WIREGUARD"); - } - if (!exec("ip6tables -S|grep -om1 'WIREGUARD$'")) { - exec("ip6tables -N WIREGUARD;ip6tables -A FORWARD -j WIREGUARD"); - } - $cfg = $_POST['#cfg']; - $wg = $_POST['#wg']; - $name = $_POST['#name']; - $vtun = $_POST['#vtun']; - $gone = explode(',',$_POST['#deleted']); - $conf = ['[Interface]']; - $user = $peers = $var = []; - $var['subnets1'] = "AllowedIPs=".implode(', ',(array_unique(explode(', ',$_POST['#subnets1'])))); - $var['subnets2'] = "AllowedIPs=".implode(', ',(array_unique(explode(', ',$_POST['#subnets2'])))); - $var['shared1'] = "AllowedIPs=".implode(', ',(array_unique(explode(', ',$_POST['#shared1'])))); - $var['shared2'] = "AllowedIPs=".implode(', ',(array_unique(explode(', ',$_POST['#shared2'])))); - $var['internet'] = "Endpoint=".implode(', ',(array_unique(explode(', ',$_POST['#internet'])))); - $x = 1; - parseInput($_POST,$x); - addPeer($x); - exec("wg-quick down $vtun 2>/dev/null"); - file_put_contents($file,implode("\n",$conf)."\n"); - file_put_contents($cfg,implode("\n",$user)."\n"); - createPeerFiles($vtun); - if ($wg) exec("wg-quick up $vtun >/dev/null"); - $save = false; - break; -case 'toggle': - $vtun = $_POST['#vtun']; - switch ($_POST['#wg']) { - case 'stop': - exec("timeout $t1 wg-quick down $vtun 2>/dev/null"); - echo status($vtun) ? 1 : 0; - break; - case 'start': - exec("timeout $t1 wg-quick up $vtun 2>/dev/null"); - echo status($vtun) ? 0 : 1; - break; - } - break; -case 'ping': - $addr = $_POST['#addr']; - echo exec("ping -qc1 -W4 $addr|grep -Po '1 received'"); - break; -case 'public': - $ip = $_POST['#ip']; - $v4 = $_POST['#prot']!='6'; - $v6 = $_POST['#prot']!=''; - $context = stream_context_create(['https'=>['timeout'=>12]]); - $int_ipv4 = $v4 ? (preg_match("/^$validIP4$/", $ip) ? $ip : (@dns_get_record($ip, DNS_A)[0]['ip'] ?: '')) : ''; - $ext_ipv4 = $v4 ? (@file_get_contents('https://api.ipify.org',false,$context) ?: '') : ''; - $int_ipv6 = $v6 ? (preg_match("/^$validIP6$/", $ip) ? $ip : (@dns_get_record($ip, DNS_AAAA)[0]['ipv6'] ?: '')) : ''; - $ext_ipv6 = $v6 ? (@file_get_contents('https://api6.ipify.org',false,$context) ?: '') : ''; - echo "$int_ipv4;$ext_ipv4;$int_ipv6;$ext_ipv6"; - break; -case 'addtunnel': - $vtun = vtun(); - $name = $_POST['#name']; - touch("$etc/$vtun.conf"); - exec("wg-quick down $vtun 2>/dev/null"); - @unlink("$etc/$vtun.cfg"); - delPeer($vtun); - autostart('off',$vtun); - break; -case 'deltunnel': - $vtun = $_POST['#vtun']; - $name = $_POST['#name']; - exec("wg-quick down $vtun 2>/dev/null"); - @unlink("$etc/$vtun.conf"); - @unlink("$etc/$vtun.cfg"); - delPeer($vtun); - autostart('off',$vtun); - break; -case 'import': - $name = $_POST['#name']; - $user = $peers = $var = $import = $sort = []; - $entries = array_filter(array_map('trim',preg_split('/\[(Interface|Peer)\]/',$_POST['#data']))); - foreach($entries as $key => $entry) { - $i = $key-1; - foreach (explode("\n",$entry) as $row) { - if (ltrim($row)[0]!='#') { - [$id,$data] = array_map('trim',explode('=',$row,2)); - $import["$id:$i"] = $data; - } elseif ($i>=0) { - $import["Name:$i"] = substr(trim($row),1); - } - } - } - if ($import['PrivateKey:0'] && !$import['PublicKey:0']) $import['PublicKey:0'] = exec("wg pubkey <<<'{$import['PrivateKey:0']}'"); - $import['UPNP:0'] = 'no'; - $import['NAT:0'] = 'no'; - [$subnet,$mask] = explode('/',$import['Address:0']); - if (ipv4($subnet)) { - $mask = ($mask>0 && $mask<32) ? $mask : 24; - $import['Network:0'] = long2ip(ip2long($subnet) & (0x100000000-2**(32-$mask))).'/'.$mask; - $import['Address:0'] = $subnet; - $import['PROT:0'] = ''; - } else { - $mask = ($mask>0 && $mask<128) ? $mask : 64; - $import['Network6:0'] = strstr($subnet,'::',true).'::/'.$mask; - $import['Address:0'] = $subnet; - $import['PROT:0'] = '6'; - } - $import['Endpoint:0'] = ''; - for ($n = 1; $n <= $i; $n++) { - $vpn = strpos($import["AllowedIPs:$n"],$default)!==false || strpos($import["AllowedIPs:$n"],$default6)!==false; - if ($vpn) $import["Address:$n"] = ''; - $import["TYPE:$n"] = $vpn ? 7 : 0; - if ($import["TYPE:$n"]==0) $var['subnets1'] = "AllowedIPs=".$import["AllowedIPs:$n"]; - } - foreach ($import as $key => $val) $sort[] = explode(':',$key)[1]; - array_multisort($sort,$import); - $x = 1; - $conf = ['[Interface]']; - $var['default'] = $import['PROT:0']=='' ? "AllowedIPs=$default" : "AllowedIPs=$default6"; - $var['internet'] = "Endpoint=unknown"; - parseInput($import,$x); - addPeer($x); - $vtun = vtun(); - file_put_contents("$etc/$vtun.conf",implode("\n",$conf)."\n"); - file_put_contents("$etc/$vtun.cfg",implode("\n",$user)."\n"); - delPeer($vtun); - autostart('off',$vtun); - echo $vtun; - break; -case 'autostart': - autostart($_POST['#start'],$_POST['#vtun']); - break; -case 'upnp': - $upnp = '/var/tmp/upnp'; - if (is_executable('/usr/bin/upnpc')) { - $gw = $_POST['#gw'].':'; - $link = $_POST['#link']; - $xml = @file_get_contents($upnp) ?: ''; - if ($xml) { - exec("timeout $t1 stdbuf -o0 upnpc -u $xml -m $link -l 2>&1|grep -qm1 'refused'",$output,$code); - if ($code!=1) $xml = ''; - } - if (!$xml) { - exec("timeout $t2 stdbuf -o0 upnpc -m $link -l 2>/dev/null|grep -Po 'desc: \K.+'",$desc); - foreach ($desc as $url) if ($url && strpos($url,$gw)!==false) {$xml = $url; break;} - } - } else $xml = ""; - file_put_contents($upnp,$xml); - echo $xml; - break; -case 'upnpc': - if (!is_executable('/usr/bin/upnpc')) break; - $xml = $_POST['#xml']; - $vtun = $_POST['#vtun']; - $link = $_POST['#link']; - $ip = $_POST['#ip']; - if ($_POST['#wg']=='active') { - exec("timeout $t1 stdbuf -o0 upnpc -u $xml -m $link -l 2>/dev/null|grep -Po \"^(ExternalIPAddress = \K.+|.+\KUDP.+>$ip:[0-9]+ 'WireGuard-$vtun')\"",$upnp); - [$addr,$upnp] = $upnp; - [$type,$rule] = explode(' ',$upnp); - echo $rule ? "UPnP: $addr:$rule/$type" : _("UPnP: forwarding not set"); - } else { - echo _("UPnP: tunnel is inactive"); - } - break; -} -?> diff --git a/plugins/dynamix/scripts/wg_poller b/plugins/dynamix/scripts/wg_poller deleted file mode 100644 index 5c3ab963f..000000000 --- a/plugins/dynamix/scripts/wg_poller +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/php -q - -$size) $base = $size-1; - $value /= pow(1024, $base); - $decimals = $value>=100 ? 0 : ($value>=10 ? 1 : (round($value*100)%100===0 ? 0 : 2)); - if (round($value,-1)==1000) {$value = 1; $base++;} - $unit = $units[$base].'B'; - return number_format($value, $decimals, '.', $value>9999 ? ',':''); -} - -while (true) { - $now = time(); $i = 0; - unset($dump); $vtun = []; - exec('wg show all dump',$dump); - foreach ($dump as $row) { - $row = preg_split('/\s+/',$row); - if (count($row)>5) $vtun[] = $row[0].';'.($row[5] ? $now - $row[5] : 0).';'.my_scale($row[6],$unit)." $unit;".my_scale($row[7],$unit)." $unit"; - } - publish('wireguard', implode("\0",$vtun)); - sleep(1); -} -?> \ No newline at end of file