This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ASN bazinda VPN scripti | |
# 2018 Hazar | |
:local VPNAddrList "vpnize-auto"; | |
:local ASNlist { | |
202196="booking"; | |
43996="booking"; | |
14907="wiki"; | |
11820="wiki"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/lua | |
-- httpserver-b64decode.lua | |
-- Part of nodemcu-httpserver, contains b64 decoding used for HTTP Basic Authentication. | |
-- Modified to use an exponentiation by multiplication method for only applicable for unsigned integers. | |
-- Based on http://lua-users.org/wiki/BaseSixtyFour by Alex Kloss | |
-- compatible with lua 5.1 | |
-- http://www.it-rfc.de | |
-- Author: Marcos Kirsch | |
local function uipow(a, b) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* A poor implementation of Hmailserver's HashCreator.h in PHP | |
* | |
* Blowfish(ETBlowFish) and "plaintext"(ETNone) not currently supported. | |
* | |
* This matches with accountpwencryption field on DB. Hmail_Pass class uses different constants for types, like original source. | |
* From \hmailserver\source\Server\Common\Util\Crypt.h | |
* ETNone = 0, |