functions.inc.php 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618
  1. <?php
  2. use PHPMailer\PHPMailer\PHPMailer;
  3. use PHPMailer\PHPMailer\SMTP;
  4. use PHPMailer\PHPMailer\Exception;
  5. function is_valid_regex($exp) {
  6. return @preg_match($exp, '') !== false;
  7. }
  8. function isset_has_content($var) {
  9. if (isset($var) && $var != "") {
  10. return true;
  11. }
  12. else {
  13. return false;
  14. }
  15. }
  16. function readable_random_string($length = 8) {
  17. $string = '';
  18. $vowels = array('a', 'e', 'i', 'o', 'u');
  19. $consonants = array('b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z');
  20. $max = $length / 2;
  21. for ($i = 1; $i <= $max; $i++) {
  22. $string .= $consonants[rand(0,19)];
  23. $string .= $vowels[rand(0,4)];
  24. }
  25. return $string;
  26. }
  27. // Validates ips and cidrs
  28. function valid_network($network) {
  29. if (filter_var($network, FILTER_VALIDATE_IP)) {
  30. return true;
  31. }
  32. $parts = explode('/', $network);
  33. if (count($parts) != 2) {
  34. return false;
  35. }
  36. $ip = $parts[0];
  37. $netmask = $parts[1];
  38. if (!preg_match("/^\d+$/", $netmask)){
  39. return false;
  40. }
  41. $netmask = intval($parts[1]);
  42. if ($netmask < 0) {
  43. return false;
  44. }
  45. if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
  46. return $netmask <= 32;
  47. }
  48. if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) {
  49. return $netmask <= 128;
  50. }
  51. return false;
  52. }
  53. function valid_hostname($hostname) {
  54. return filter_var($hostname, FILTER_VALIDATE_DOMAIN, FILTER_FLAG_HOSTNAME);
  55. }
  56. // Thanks to https://stackoverflow.com/a/49373789
  57. // Validates exact ip matches and ip-in-cidr, ipv4 and ipv6
  58. function ip_acl($ip, $networks) {
  59. foreach($networks as $network) {
  60. if (filter_var($network, FILTER_VALIDATE_IP)) {
  61. if ($ip == $network) {
  62. return true;
  63. }
  64. else {
  65. continue;
  66. }
  67. }
  68. $ipb = inet_pton($ip);
  69. $iplen = strlen($ipb);
  70. if (strlen($ipb) < 4) {
  71. continue;
  72. }
  73. $ar = explode('/', $network);
  74. $ip1 = $ar[0];
  75. $ip1b = inet_pton($ip1);
  76. $ip1len = strlen($ip1b);
  77. if ($ip1len != $iplen) {
  78. continue;
  79. }
  80. if (count($ar)>1) {
  81. $bits=(int)($ar[1]);
  82. }
  83. else {
  84. $bits = $iplen * 8;
  85. }
  86. for ($c=0; $bits>0; $c++) {
  87. $bytemask = ($bits < 8) ? 0xff ^ ((1 << (8-$bits))-1) : 0xff;
  88. if (((ord($ipb[$c]) ^ ord($ip1b[$c])) & $bytemask) != 0) {
  89. continue 2;
  90. }
  91. $bits-=8;
  92. }
  93. return true;
  94. }
  95. return false;
  96. }
  97. function hash_password($password) {
  98. // default_pass_scheme is determined in vars.inc.php (or corresponding local file)
  99. // in case default pass scheme is not defined, falling back to BLF-CRYPT.
  100. global $default_pass_scheme;
  101. $pw_hash = NULL;
  102. // support pre-hashed passwords
  103. if (preg_match('/^{(ARGON2I|ARGON2ID|BLF-CRYPT|CLEAR|CLEARTEXT|CRYPT|DES-CRYPT|LDAP-MD5|MD5|MD5-CRYPT|PBKDF2|PLAIN|PLAIN-MD4|PLAIN-MD5|PLAIN-TRUNC|PLAIN-TRUNC|SHA|SHA1|SHA256|SHA256-CRYPT|SHA512|SHA512-CRYPT|SMD5|SSHA|SSHA256|SSHA512)}/i', $password)) {
  104. $pw_hash = $password;
  105. }
  106. else {
  107. switch (strtoupper($default_pass_scheme)) {
  108. case "SSHA":
  109. $salt_str = bin2hex(openssl_random_pseudo_bytes(8));
  110. $pw_hash = "{SSHA}".base64_encode(hash('sha1', $password . $salt_str, true) . $salt_str);
  111. break;
  112. case "SSHA256":
  113. $salt_str = bin2hex(openssl_random_pseudo_bytes(8));
  114. $pw_hash = "{SSHA256}".base64_encode(hash('sha256', $password . $salt_str, true) . $salt_str);
  115. break;
  116. case "SSHA512":
  117. $salt_str = bin2hex(openssl_random_pseudo_bytes(8));
  118. $pw_hash = "{SSHA512}".base64_encode(hash('sha512', $password . $salt_str, true) . $salt_str);
  119. break;
  120. case "BLF-CRYPT":
  121. default:
  122. $pw_hash = "{BLF-CRYPT}" . password_hash($password, PASSWORD_BCRYPT);
  123. break;
  124. }
  125. }
  126. return $pw_hash;
  127. }
  128. function password_complexity($_action, $_data = null) {
  129. global $redis;
  130. global $lang;
  131. switch ($_action) {
  132. case 'edit':
  133. if ($_SESSION['mailcow_cc_role'] != "admin") {
  134. $_SESSION['return'][] = array(
  135. 'type' => 'danger',
  136. 'log' => array(__FUNCTION__, $_action, $_data),
  137. 'msg' => 'access_denied'
  138. );
  139. return false;
  140. }
  141. $is_now = password_complexity('get');
  142. if (!empty($is_now)) {
  143. $length = (isset($_data['length']) && intval($_data['length']) >= 3) ? intval($_data['length']) : $is_now['length'];
  144. $chars = (isset($_data['chars'])) ? intval($_data['chars']) : $is_now['chars'];
  145. $lowerupper = (isset($_data['lowerupper'])) ? intval($_data['lowerupper']) : $is_now['lowerupper'];
  146. $special_chars = (isset($_data['special_chars'])) ? intval($_data['special_chars']) : $is_now['special_chars'];
  147. $numbers = (isset($_data['numbers'])) ? intval($_data['numbers']) : $is_now['numbers'];
  148. }
  149. try {
  150. $redis->hMSet('PASSWD_POLICY', [
  151. 'length' => $length,
  152. 'chars' => $chars,
  153. 'special_chars' => $special_chars,
  154. 'lowerupper' => $lowerupper,
  155. 'numbers' => $numbers
  156. ]);
  157. }
  158. catch (RedisException $e) {
  159. $_SESSION['return'][] = array(
  160. 'type' => 'danger',
  161. 'log' => array(__FUNCTION__, $_action, $_data),
  162. 'msg' => array('redis_error', $e)
  163. );
  164. return false;
  165. }
  166. $_SESSION['return'][] = array(
  167. 'type' => 'success',
  168. 'log' => array(__FUNCTION__, $_action, $_data),
  169. 'msg' => 'password_policy_saved'
  170. );
  171. break;
  172. case 'get':
  173. try {
  174. $length = $redis->hGet('PASSWD_POLICY', 'length');
  175. $chars = $redis->hGet('PASSWD_POLICY', 'chars');
  176. $special_chars = $redis->hGet('PASSWD_POLICY', 'special_chars');
  177. $lowerupper = $redis->hGet('PASSWD_POLICY', 'lowerupper');
  178. $numbers = $redis->hGet('PASSWD_POLICY', 'numbers');
  179. return array(
  180. 'length' => $length,
  181. 'chars' => $chars,
  182. 'special_chars' => $special_chars,
  183. 'lowerupper' => $lowerupper,
  184. 'numbers' => $numbers
  185. );
  186. }
  187. catch (RedisException $e) {
  188. $_SESSION['return'][] = array(
  189. 'type' => 'danger',
  190. 'log' => array(__FUNCTION__, $_action, $_data),
  191. 'msg' => array('redis_error', $e)
  192. );
  193. return false;
  194. }
  195. return false;
  196. break;
  197. case 'html':
  198. $policies = password_complexity('get');
  199. foreach ($policies as $name => $value) {
  200. if ($value != 0) {
  201. $policy_text[] = sprintf($lang['admin']["password_policy_$name"], $value);
  202. }
  203. }
  204. return '<p class="help-block small">- ' . implode('<br>- ', (array)$policy_text) . '</p>';
  205. break;
  206. }
  207. }
  208. function password_check($password1, $password2) {
  209. $password_complexity = password_complexity('get');
  210. if (empty($password1) || empty($password2)) {
  211. $_SESSION['return'][] = array(
  212. 'type' => 'danger',
  213. 'log' => array(__FUNCTION__, $_action, $_type),
  214. 'msg' => 'password_complexity'
  215. );
  216. return false;
  217. }
  218. if ($password1 != $password2) {
  219. $_SESSION['return'][] = array(
  220. 'type' => 'danger',
  221. 'log' => array(__FUNCTION__, $_action, $_type),
  222. 'msg' => 'password_mismatch'
  223. );
  224. return false;
  225. }
  226. $given_password['length'] = strlen($password1);
  227. $given_password['special_chars'] = preg_match('/[^a-zA-Z\d]/', $password1);
  228. $given_password['chars'] = preg_match('/[a-zA-Z]/',$password1);
  229. $given_password['numbers'] = preg_match('/\d/', $password1);
  230. $lower = strlen(preg_replace("/[^a-z]/", '', $password1));
  231. $upper = strlen(preg_replace("/[^A-Z]/", '', $password1));
  232. $given_password['lowerupper'] = ($lower > 0 && $upper > 0) ? true : false;
  233. if (
  234. ($given_password['length'] < $password_complexity['length']) ||
  235. ($password_complexity['special_chars'] == 1 && (intval($given_password['special_chars']) != $password_complexity['special_chars'])) ||
  236. ($password_complexity['chars'] == 1 && (intval($given_password['chars']) != $password_complexity['chars'])) ||
  237. ($password_complexity['numbers'] == 1 && (intval($given_password['numbers']) != $password_complexity['numbers'])) ||
  238. ($password_complexity['lowerupper'] == 1 && (intval($given_password['lowerupper']) != $password_complexity['lowerupper']))
  239. ) {
  240. $_SESSION['return'][] = array(
  241. 'type' => 'danger',
  242. 'log' => array(__FUNCTION__, $_action, $_type),
  243. 'msg' => 'password_complexity'
  244. );
  245. return false;
  246. }
  247. return true;
  248. }
  249. function last_login($action, $username, $sasl_limit_days = 7, $ui_offset = 1) {
  250. global $pdo;
  251. global $redis;
  252. $sasl_limit_days = intval($sasl_limit_days);
  253. switch ($action) {
  254. case 'get':
  255. if (filter_var($username, FILTER_VALIDATE_EMAIL) && hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $username)) {
  256. $stmt = $pdo->prepare('SELECT `real_rip`, MAX(`datetime`) as `datetime`, `service`, `app_password`, MAX(`app_passwd`.`name`) as `app_password_name` FROM `sasl_log`
  257. LEFT OUTER JOIN `app_passwd` on `sasl_log`.`app_password` = `app_passwd`.`id`
  258. WHERE `username` = :username
  259. AND HOUR(TIMEDIFF(NOW(), `datetime`)) < :sasl_limit_days
  260. GROUP BY `real_rip`, `service`, `app_password`
  261. ORDER BY `datetime` DESC;');
  262. $stmt->execute(array(':username' => $username, ':sasl_limit_days' => ($sasl_limit_days * 24)));
  263. $sasl = $stmt->fetchAll(PDO::FETCH_ASSOC);
  264. foreach ($sasl as $k => $v) {
  265. if (!filter_var($sasl[$k]['real_rip'], FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)) {
  266. $sasl[$k]['real_rip'] = 'Web/EAS/Internal (' . $sasl[$k]['real_rip'] . ')';
  267. }
  268. elseif (filter_var($sasl[$k]['real_rip'], FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)) {
  269. try {
  270. $sasl[$k]['location'] = $redis->hGet('IP_SHORTCOUNTRY', $sasl[$k]['real_rip']);
  271. }
  272. catch (RedisException $e) {
  273. $_SESSION['return'][] = array(
  274. 'type' => 'danger',
  275. 'log' => array(__FUNCTION__, $_action, $_data_log),
  276. 'msg' => array('redis_error', $e)
  277. );
  278. return false;
  279. }
  280. if (!$sasl[$k]['location']) {
  281. $curl = curl_init();
  282. curl_setopt($curl, CURLOPT_URL,"https://dfdata.bella.network/country/" . $sasl[$k]['real_rip']);
  283. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  284. curl_setopt($curl, CURLOPT_USERAGENT, 'Moocow');
  285. curl_setopt($curl, CURLOPT_TIMEOUT, 5);
  286. $ip_data = curl_exec($curl);
  287. if (!curl_errno($curl)) {
  288. $ip_data_array = json_decode($ip_data, true);
  289. if ($ip_data_array !== false and !empty($ip_data_array['shortcountry'])) {
  290. $sasl[$k]['location'] = $ip_data_array['shortcountry'];
  291. try {
  292. $redis->hSet('IP_SHORTCOUNTRY', $sasl[$k]['real_rip'], $ip_data_array['shortcountry']);
  293. }
  294. catch (RedisException $e) {
  295. $_SESSION['return'][] = array(
  296. 'type' => 'danger',
  297. 'log' => array(__FUNCTION__, $_action, $_data_log),
  298. 'msg' => array('redis_error', $e)
  299. );
  300. curl_close($curl);
  301. return false;
  302. }
  303. }
  304. }
  305. curl_close($curl);
  306. }
  307. }
  308. }
  309. }
  310. else {
  311. $sasl = array();
  312. }
  313. if ($_SESSION['mailcow_cc_role'] == "admin" || $username == $_SESSION['mailcow_cc_username']) {
  314. $stmt = $pdo->prepare('SELECT `remote`, `time` FROM `logs`
  315. WHERE JSON_EXTRACT(`call`, "$[0]") = "check_login"
  316. AND JSON_EXTRACT(`call`, "$[1]") = :username
  317. AND `type` = "success" ORDER BY `time` DESC LIMIT 1 OFFSET :offset');
  318. $stmt->execute(array(
  319. ':username' => $username,
  320. ':offset' => $ui_offset
  321. ));
  322. $ui = $stmt->fetch(PDO::FETCH_ASSOC);
  323. }
  324. else {
  325. $ui = array();
  326. }
  327. return array('ui' => $ui, 'sasl' => $sasl);
  328. break;
  329. case 'reset':
  330. if (filter_var($username, FILTER_VALIDATE_EMAIL) && hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $username)) {
  331. $stmt = $pdo->prepare('DELETE FROM `sasl_log`
  332. WHERE `username` = :username');
  333. $stmt->execute(array(':username' => $username));
  334. }
  335. if ($_SESSION['mailcow_cc_role'] == "admin" || $username == $_SESSION['mailcow_cc_username']) {
  336. $stmt = $pdo->prepare('DELETE FROM `logs`
  337. WHERE JSON_EXTRACT(`call`, "$[0]") = "check_login"
  338. AND JSON_EXTRACT(`call`, "$[1]") = :username
  339. AND `type` = "success"');
  340. $stmt->execute(array(':username' => $username));
  341. }
  342. return true;
  343. break;
  344. }
  345. }
  346. function set_sasl_log($username, $real_rip, $service){
  347. global $pdo;
  348. try {
  349. if (!empty($_SESSION['app_passwd_id'])) {
  350. $app_password = $_SESSION['app_passwd_id'];
  351. } else {
  352. $app_password = 0;
  353. }
  354. $stmt = $pdo->prepare('REPLACE INTO `sasl_log` (`username`, `real_rip`, `service`, `app_password`) VALUES (:username, :real_rip, :service, :app_password)');
  355. $stmt->execute(array(
  356. ':username' => $username,
  357. ':real_rip' => $real_rip,
  358. ':service' => $service,
  359. ':app_password' => $app_password
  360. ));
  361. } catch (PDOException $e) {
  362. $_SESSION['return'][] = array(
  363. 'type' => 'danger',
  364. 'log' => array(__FUNCTION__, $_data_log),
  365. 'msg' => array('mysql_error', $e)
  366. );
  367. return false;
  368. }
  369. return true;
  370. }
  371. function flush_memcached() {
  372. try {
  373. $m = new Memcached();
  374. $m->addServer('memcached', 11211);
  375. $m->flush();
  376. }
  377. catch ( Exception $e ) {
  378. // Dunno
  379. }
  380. }
  381. function sys_mail($_data) {
  382. if ($_SESSION['mailcow_cc_role'] != "admin") {
  383. $_SESSION['return'][] = array(
  384. 'type' => 'danger',
  385. 'log' => array(__FUNCTION__),
  386. 'msg' => 'access_denied'
  387. );
  388. return false;
  389. }
  390. $excludes = $_data['mass_exclude'];
  391. $includes = $_data['mass_include'];
  392. $mailboxes = array();
  393. $mass_from = $_data['mass_from'];
  394. $mass_text = $_data['mass_text'];
  395. $mass_html = $_data['mass_html'];
  396. $mass_subject = $_data['mass_subject'];
  397. if (!filter_var($mass_from, FILTER_VALIDATE_EMAIL)) {
  398. $_SESSION['return'][] = array(
  399. 'type' => 'danger',
  400. 'log' => array(__FUNCTION__),
  401. 'msg' => 'from_invalid'
  402. );
  403. return false;
  404. }
  405. if (empty($mass_subject)) {
  406. $_SESSION['return'][] = array(
  407. 'type' => 'danger',
  408. 'log' => array(__FUNCTION__),
  409. 'msg' => 'subject_empty'
  410. );
  411. return false;
  412. }
  413. if (empty($mass_text)) {
  414. $_SESSION['return'][] = array(
  415. 'type' => 'danger',
  416. 'log' => array(__FUNCTION__),
  417. 'msg' => 'text_empty'
  418. );
  419. return false;
  420. }
  421. $domains = array_merge(mailbox('get', 'domains'), mailbox('get', 'alias_domains'));
  422. foreach ($domains as $domain) {
  423. foreach (mailbox('get', 'mailboxes', $domain) as $mailbox) {
  424. $mailboxes[] = $mailbox;
  425. }
  426. }
  427. if (!empty($includes)) {
  428. $rcpts = array_intersect($mailboxes, $includes);
  429. }
  430. elseif (!empty($excludes)) {
  431. $rcpts = array_diff($mailboxes, $excludes);
  432. }
  433. else {
  434. $rcpts = $mailboxes;
  435. }
  436. if (!empty($rcpts)) {
  437. ini_set('max_execution_time', 0);
  438. ini_set('max_input_time', 0);
  439. $mail = new PHPMailer;
  440. $mail->Timeout = 10;
  441. $mail->SMTPOptions = array(
  442. 'ssl' => array(
  443. 'verify_peer' => false,
  444. 'verify_peer_name' => false,
  445. 'allow_self_signed' => true
  446. )
  447. );
  448. $mail->isSMTP();
  449. $mail->Host = 'dovecot-mailcow';
  450. $mail->SMTPAuth = false;
  451. $mail->Port = 24;
  452. $mail->setFrom($mass_from);
  453. $mail->Subject = $mass_subject;
  454. $mail->CharSet ="UTF-8";
  455. if (!empty($mass_html)) {
  456. $mail->Body = $mass_html;
  457. $mail->AltBody = $mass_text;
  458. }
  459. else {
  460. $mail->Body = $mass_text;
  461. }
  462. $mail->XMailer = 'MooMassMail';
  463. foreach ($rcpts as $rcpt) {
  464. $mail->AddAddress($rcpt);
  465. if (!$mail->send()) {
  466. $_SESSION['return'][] = array(
  467. 'type' => 'warning',
  468. 'log' => array(__FUNCTION__),
  469. 'msg' => 'Mailer error (RCPT "' . htmlspecialchars($rcpt) . '"): ' . str_replace('https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting', '', $mail->ErrorInfo)
  470. );
  471. }
  472. $mail->ClearAllRecipients();
  473. }
  474. }
  475. $_SESSION['return'][] = array(
  476. 'type' => 'success',
  477. 'log' => array(__FUNCTION__),
  478. 'msg' => 'Mass mail job completed, sent ' . count($rcpts) . ' mails'
  479. );
  480. }
  481. function logger($_data = false) {
  482. /*
  483. logger() will be called as last function
  484. To manually log a message, logger needs to be called like below.
  485. logger(array(
  486. 'return' => array(
  487. array(
  488. 'type' => 'danger',
  489. 'log' => array(__FUNCTION__),
  490. 'msg' => $err
  491. )
  492. )
  493. ));
  494. These messages will not be printed as alert box.
  495. To do so, push them to $_SESSION['return'] and do not call logger as they will be included automatically:
  496. $_SESSION['return'][] = array(
  497. 'type' => 'danger',
  498. 'log' => array(__FUNCTION__, $user, '*'),
  499. 'msg' => $err
  500. );
  501. */
  502. global $pdo;
  503. if (!$_data) {
  504. $_data = $_SESSION;
  505. }
  506. if (!empty($_data['return'])) {
  507. $task = substr(strtoupper(md5(uniqid(rand(), true))), 0, 6);
  508. foreach ($_data['return'] as $return) {
  509. $type = $return['type'];
  510. $msg = null;
  511. if (isset($return['msg'])) {
  512. $msg = json_encode($return['msg'], JSON_UNESCAPED_UNICODE);
  513. }
  514. $call = null;
  515. if (isset($return['log'])) {
  516. $call = json_encode($return['log'], JSON_UNESCAPED_UNICODE);
  517. }
  518. if (!empty($_SESSION["dual-login"]["username"])) {
  519. $user = $_SESSION["dual-login"]["username"] . ' => ' . $_SESSION['mailcow_cc_username'];
  520. $role = $_SESSION["dual-login"]["role"] . ' => ' . $_SESSION['mailcow_cc_role'];
  521. }
  522. elseif (!empty($_SESSION['mailcow_cc_username'])) {
  523. $user = $_SESSION['mailcow_cc_username'];
  524. $role = $_SESSION['mailcow_cc_role'];
  525. }
  526. else {
  527. $user = 'unauthenticated';
  528. $role = 'unauthenticated';
  529. }
  530. // We cannot log when logs is missing...
  531. try {
  532. $stmt = $pdo->prepare("INSERT INTO `logs` (`type`, `task`, `msg`, `call`, `user`, `role`, `remote`, `time`) VALUES
  533. (:type, :task, :msg, :call, :user, :role, :remote, UNIX_TIMESTAMP())");
  534. $stmt->execute(array(
  535. ':type' => $type,
  536. ':task' => $task,
  537. ':call' => $call,
  538. ':msg' => $msg,
  539. ':user' => $user,
  540. ':role' => $role,
  541. ':remote' => get_remote_ip()
  542. ));
  543. }
  544. catch (PDOException $e) {
  545. # handle the exception here, as the exception handler function results in a white page
  546. error_log($e->getMessage(), 0);
  547. }
  548. }
  549. }
  550. else {
  551. return true;
  552. }
  553. }
  554. function hasDomainAccess($username, $role, $domain) {
  555. global $pdo;
  556. if (empty($domain) || !is_valid_domain_name($domain)) {
  557. return false;
  558. }
  559. if (isset($_SESSION['access_all_exception']) && $_SESSION['access_all_exception'] == "1") {
  560. return true;
  561. }
  562. if (!filter_var($username, FILTER_VALIDATE_EMAIL) && !ctype_alnum(str_replace(array('_', '.', '-'), '', $username))) {
  563. return false;
  564. }
  565. if ($role != 'admin' && $role != 'domainadmin') {
  566. return false;
  567. }
  568. if ($role == 'admin') {
  569. $stmt = $pdo->prepare("SELECT `domain` FROM `domain`
  570. WHERE `domain` = :domain");
  571. $stmt->execute(array(':domain' => $domain));
  572. $num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
  573. $stmt = $pdo->prepare("SELECT `alias_domain` FROM `alias_domain`
  574. WHERE `alias_domain` = :domain");
  575. $stmt->execute(array(':domain' => $domain));
  576. $num_results = $num_results + count($stmt->fetchAll(PDO::FETCH_ASSOC));
  577. if ($num_results != 0) {
  578. return true;
  579. }
  580. }
  581. elseif ($role == 'domainadmin') {
  582. $stmt = $pdo->prepare("SELECT `domain` FROM `domain_admins`
  583. WHERE (
  584. `active`='1'
  585. AND `username` = :username
  586. AND (`domain` = :domain1 OR `domain` = (SELECT `target_domain` FROM `alias_domain` WHERE `alias_domain` = :domain2))
  587. )");
  588. $stmt->execute(array(':username' => $username, ':domain1' => $domain, ':domain2' => $domain));
  589. $num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
  590. if (!empty($num_results)) {
  591. return true;
  592. }
  593. }
  594. return false;
  595. }
  596. function hasMailboxObjectAccess($username, $role, $object) {
  597. global $pdo;
  598. if (isset($_SESSION['access_all_exception']) && $_SESSION['access_all_exception'] == "1") {
  599. return true;
  600. }
  601. if (empty($username) || empty($role) || empty($object)) {
  602. return false;
  603. }
  604. if (!filter_var(html_entity_decode(rawurldecode($username)), FILTER_VALIDATE_EMAIL) && !ctype_alnum(str_replace(array('_', '.', '-'), '', $username))) {
  605. return false;
  606. }
  607. if ($role != 'admin' && $role != 'domainadmin' && $role != 'user') {
  608. return false;
  609. }
  610. if ($username == $object) {
  611. return true;
  612. }
  613. $stmt = $pdo->prepare("SELECT `domain` FROM `mailbox` WHERE `username` = :object");
  614. $stmt->execute(array(':object' => $object));
  615. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  616. if (isset($row['domain']) && hasDomainAccess($username, $role, $row['domain'])) {
  617. return true;
  618. }
  619. return false;
  620. }
  621. // does also verify mailboxes as a mailbox is a alias == goto
  622. function hasAliasObjectAccess($username, $role, $object) {
  623. global $pdo;
  624. if (isset($_SESSION['access_all_exception']) && $_SESSION['access_all_exception'] == "1") {
  625. return true;
  626. }
  627. if (empty($username) || empty($role) || empty($object)) {
  628. return false;
  629. }
  630. if (!filter_var(html_entity_decode(rawurldecode($username)), FILTER_VALIDATE_EMAIL) && !ctype_alnum(str_replace(array('_', '.', '-'), '', $username))) {
  631. return false;
  632. }
  633. if ($role != 'admin' && $role != 'domainadmin' && $role != 'user') {
  634. return false;
  635. }
  636. $stmt = $pdo->prepare("SELECT `domain` FROM `alias` WHERE `address` = :object");
  637. $stmt->execute(array(':object' => $object));
  638. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  639. if (isset($row['domain']) && hasDomainAccess($username, $role, $row['domain'])) {
  640. return true;
  641. }
  642. return false;
  643. }
  644. function hasACLAccess($type) {
  645. if (isset($_SESSION['access_all_exception']) && $_SESSION['access_all_exception'] == "1") {
  646. return true;
  647. }
  648. if (isset($_SESSION['acl'][$type]) && $_SESSION['acl'][$type] == "1") {
  649. return true;
  650. }
  651. return false;
  652. }
  653. function pem_to_der($pem_key) {
  654. // Need to remove BEGIN/END PUBLIC KEY
  655. $lines = explode("\n", trim($pem_key));
  656. unset($lines[count($lines)-1]);
  657. unset($lines[0]);
  658. return base64_decode(implode('', $lines));
  659. }
  660. function expand_ipv6($ip) {
  661. $hex = unpack("H*hex", inet_pton($ip));
  662. $ip = substr(preg_replace("/([A-f0-9]{4})/", "$1:", $hex['hex']), 0, -1);
  663. return $ip;
  664. }
  665. function generate_tlsa_digest($hostname, $port, $starttls = null) {
  666. if (!is_valid_domain_name($hostname)) {
  667. return "Not a valid hostname";
  668. }
  669. if (empty($starttls)) {
  670. $context = stream_context_create(array("ssl" => array("capture_peer_cert" => true, 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true)));
  671. $stream = stream_socket_client('ssl://' . $hostname . ':' . $port, $error_nr, $error_msg, 5, STREAM_CLIENT_CONNECT, $context);
  672. if (!$stream) {
  673. $error_msg = isset($error_msg) ? $error_msg : '-';
  674. return $error_nr . ': ' . $error_msg;
  675. }
  676. }
  677. else {
  678. $stream = stream_socket_client('tcp://' . $hostname . ':' . $port, $error_nr, $error_msg, 5);
  679. if (!$stream) {
  680. return $error_nr . ': ' . $error_msg;
  681. }
  682. $banner = fread($stream, 512 );
  683. if (preg_match("/^220/i", $banner)) { // SMTP
  684. fwrite($stream,"HELO tlsa.generator.local\r\n");
  685. fread($stream, 512);
  686. fwrite($stream,"STARTTLS\r\n");
  687. fread($stream, 512);
  688. }
  689. elseif (preg_match("/imap.+starttls/i", $banner)) { // IMAP
  690. fwrite($stream,"A1 STARTTLS\r\n");
  691. fread($stream, 512);
  692. }
  693. elseif (preg_match("/^\+OK/", $banner)) { // POP3
  694. fwrite($stream,"STLS\r\n");
  695. fread($stream, 512);
  696. }
  697. elseif (preg_match("/^OK/m", $banner)) { // Sieve
  698. fwrite($stream,"STARTTLS\r\n");
  699. fread($stream, 512);
  700. }
  701. else {
  702. return 'Unknown banner: "' . htmlspecialchars(trim($banner)) . '"';
  703. }
  704. // Upgrade connection
  705. stream_set_blocking($stream, true);
  706. stream_context_set_option($stream, 'ssl', 'capture_peer_cert', true);
  707. stream_context_set_option($stream, 'ssl', 'verify_peer', false);
  708. stream_context_set_option($stream, 'ssl', 'verify_peer_name', false);
  709. stream_context_set_option($stream, 'ssl', 'allow_self_signed', true);
  710. stream_socket_enable_crypto($stream, true, STREAM_CRYPTO_METHOD_ANY_CLIENT);
  711. stream_set_blocking($stream, false);
  712. }
  713. $params = stream_context_get_params($stream);
  714. if (!empty($params['options']['ssl']['peer_certificate'])) {
  715. $key_resource = openssl_pkey_get_public($params['options']['ssl']['peer_certificate']);
  716. // We cannot get ['rsa']['n'], the binary data would contain BEGIN/END PUBLIC KEY
  717. $key_data = openssl_pkey_get_details($key_resource)['key'];
  718. return '3 1 1 ' . openssl_digest(pem_to_der($key_data), 'sha256');
  719. }
  720. else {
  721. return 'Error: Cannot read peer certificate';
  722. }
  723. }
  724. function alertbox_log_parser($_data) {
  725. global $lang;
  726. if (isset($_data['return'])) {
  727. foreach ($_data['return'] as $return) {
  728. // Get type
  729. $type = $return['type'];
  730. // If a lang[type][msg] string exists, use it as message
  731. if (isset($return['type']) && isset($return['msg']) && !is_array($return['msg'])) {
  732. if (isset($lang[$return['type']][$return['msg']])) {
  733. $msg = $lang[$return['type']][$return['msg']];
  734. }
  735. else {
  736. $msg = $return['msg'];
  737. }
  738. }
  739. // If msg is an array, use first element as language string and run printf on it with remaining array elements
  740. elseif (is_array($return['msg'])) {
  741. $msg = array_shift($return['msg']);
  742. $msg = vsprintf(
  743. $lang[$return['type']][$msg],
  744. $return['msg']
  745. );
  746. }
  747. else {
  748. $msg = '-';
  749. }
  750. $log_array[] = array('msg' => $msg, 'type' => json_encode($type));
  751. }
  752. if (!empty($log_array)) {
  753. return $log_array;
  754. }
  755. }
  756. return false;
  757. }
  758. function verify_salted_hash($hash, $password, $algo, $salt_length) {
  759. // Decode hash
  760. $dhash = base64_decode($hash);
  761. // Get first n bytes of binary which equals a SSHA hash
  762. $ohash = substr($dhash, 0, $salt_length);
  763. // Remove SSHA hash from decoded hash to get original salt string
  764. $osalt = str_replace($ohash, '', $dhash);
  765. // Check single salted SSHA hash against extracted hash
  766. if (hash_equals(hash($algo, $password . $osalt, true), $ohash)) {
  767. return true;
  768. }
  769. return false;
  770. }
  771. function verify_hash($hash, $password) {
  772. if (preg_match('/^{(.+)}(.+)/i', $hash, $hash_array)) {
  773. $scheme = strtoupper($hash_array[1]);
  774. $hash = $hash_array[2];
  775. switch ($scheme) {
  776. case "ARGON2I":
  777. case "ARGON2ID":
  778. case "BLF-CRYPT":
  779. case "CRYPT":
  780. case "DES-CRYPT":
  781. case "MD5-CRYPT":
  782. case "MD5":
  783. case "SHA256-CRYPT":
  784. case "SHA512-CRYPT":
  785. return password_verify($password, $hash);
  786. case "CLEAR":
  787. case "CLEARTEXT":
  788. case "PLAIN":
  789. return $password == $hash;
  790. case "LDAP-MD5":
  791. $hash = base64_decode($hash);
  792. return hash_equals(hash('md5', $password, true), $hash);
  793. case "PBKDF2":
  794. $components = explode('$', $hash);
  795. $salt = $components[2];
  796. $rounds = $components[3];
  797. $hash = $components[4];
  798. return hash_equals(hash_pbkdf2('sha1', $password, $salt, $rounds), $hash);
  799. case "PLAIN-MD4":
  800. return hash_equals(hash('md4', $password), $hash);
  801. case "PLAIN-MD5":
  802. return md5($password) == $hash;
  803. case "PLAIN-TRUNC":
  804. $components = explode('-', $hash);
  805. if (count($components) > 1) {
  806. $trunc_len = $components[0];
  807. $trunc_password = $components[1];
  808. return substr($password, 0, $trunc_len) == $trunc_password;
  809. } else {
  810. return $password == $hash;
  811. }
  812. case "SHA":
  813. case "SHA1":
  814. case "SHA256":
  815. case "SHA512":
  816. // SHA is an alias for SHA1
  817. $scheme = $scheme == "SHA" ? "sha1" : strtolower($scheme);
  818. $hash = base64_decode($hash);
  819. return hash_equals(hash($scheme, $password, true), $hash);
  820. case "SMD5":
  821. return verify_salted_hash($hash, $password, 'md5', 16);
  822. case "SSHA":
  823. return verify_salted_hash($hash, $password, 'sha1', 20);
  824. case "SSHA256":
  825. return verify_salted_hash($hash, $password, 'sha256', 32);
  826. case "SSHA512":
  827. return verify_salted_hash($hash, $password, 'sha512', 64);
  828. default:
  829. return false;
  830. }
  831. }
  832. return false;
  833. }
  834. function formatBytes($size, $precision = 2) {
  835. if(!is_numeric($size)) {
  836. return "0";
  837. }
  838. $base = log($size, 1024);
  839. $suffixes = array(' Byte', ' KiB', ' MiB', ' GiB', ' TiB');
  840. if ($size == "0") {
  841. return "0";
  842. }
  843. return round(pow(1024, $base - floor($base)), $precision) . $suffixes[floor($base)];
  844. }
  845. function update_sogo_static_view($mailbox = null) {
  846. if (getenv('SKIP_SOGO') == "y") {
  847. return true;
  848. }
  849. global $pdo;
  850. global $lang;
  851. $mailbox_exists = false;
  852. if ($mailbox !== null) {
  853. // Check if the mailbox exists
  854. $stmt = $pdo->prepare("SELECT username FROM mailbox WHERE username = :mailbox AND active = '1'");
  855. $stmt->execute(array(':mailbox' => $mailbox));
  856. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  857. if ($row){
  858. $mailbox_exists = true;
  859. }
  860. }
  861. // generate random password for sogo to deny direct login
  862. $random_password = base64_encode(openssl_random_pseudo_bytes(24));
  863. $random_salt = base64_encode(openssl_random_pseudo_bytes(16));
  864. $random_hash = '{SSHA256}' . base64_encode(hash('sha256', base64_decode($password) . $salt, true) . $salt);
  865. $subquery = "GROUP BY mailbox.username";
  866. if ($mailbox_exists) {
  867. $subquery = "AND mailbox.username = :mailbox";
  868. }
  869. $query = "INSERT INTO _sogo_static_view (`c_uid`, `domain`, `c_name`, `c_password`, `c_cn`, `mail`, `aliases`, `ad_aliases`, `ext_acl`, `kind`, `multiple_bookings`)
  870. SELECT
  871. mailbox.username,
  872. mailbox.domain,
  873. mailbox.username,
  874. :random_hash,
  875. mailbox.name,
  876. mailbox.username,
  877. IFNULL(GROUP_CONCAT(ga.aliases ORDER BY ga.aliases SEPARATOR ' '), ''),
  878. IFNULL(gda.ad_alias, ''),
  879. IFNULL(external_acl.send_as_acl, ''),
  880. mailbox.kind,
  881. mailbox.multiple_bookings
  882. FROM
  883. mailbox
  884. LEFT OUTER JOIN grouped_mail_aliases ga ON ga.username REGEXP CONCAT('(^|,)', mailbox.username, '($|,)')
  885. LEFT OUTER JOIN grouped_domain_alias_address gda ON gda.username = mailbox.username
  886. LEFT OUTER JOIN grouped_sender_acl_external external_acl ON external_acl.username = mailbox.username
  887. WHERE
  888. mailbox.active = '1'
  889. $subquery
  890. ON DUPLICATE KEY UPDATE
  891. `domain` = VALUES(`domain`),
  892. `c_name` = VALUES(`c_name`),
  893. `c_password` = VALUES(`c_password`),
  894. `c_cn` = VALUES(`c_cn`),
  895. `mail` = VALUES(`mail`),
  896. `aliases` = VALUES(`aliases`),
  897. `ad_aliases` = VALUES(`ad_aliases`),
  898. `ext_acl` = VALUES(`ext_acl`),
  899. `kind` = VALUES(`kind`),
  900. `multiple_bookings` = VALUES(`multiple_bookings`)";
  901. if ($mailbox_exists) {
  902. $stmt = $pdo->prepare($query);
  903. $stmt->execute(array(
  904. ':random_hash' => $random_hash,
  905. ':mailbox' => $mailbox
  906. ));
  907. } else {
  908. $stmt = $pdo->prepare($query);
  909. $stmt->execute(array(
  910. ':random_hash' => $random_hash
  911. ));
  912. }
  913. $stmt = $pdo->query("DELETE FROM _sogo_static_view WHERE `c_uid` NOT IN (SELECT `username` FROM `mailbox` WHERE `active` = '1');");
  914. flush_memcached();
  915. }
  916. function edit_user_account($_data) {
  917. global $lang;
  918. global $pdo;
  919. $_data_log = $_data;
  920. !isset($_data_log['user_new_pass']) ?: $_data_log['user_new_pass'] = '*';
  921. !isset($_data_log['user_new_pass2']) ?: $_data_log['user_new_pass2'] = '*';
  922. !isset($_data_log['user_old_pass']) ?: $_data_log['user_old_pass'] = '*';
  923. $username = $_SESSION['mailcow_cc_username'];
  924. $role = $_SESSION['mailcow_cc_role'];
  925. $password_old = $_data['user_old_pass'];
  926. $pw_recovery_email = $_data['pw_recovery_email'];
  927. if (filter_var($username, FILTER_VALIDATE_EMAIL === false) || $role != 'user') {
  928. $_SESSION['return'][] = array(
  929. 'type' => 'danger',
  930. 'log' => array(__FUNCTION__, $_data_log),
  931. 'msg' => 'access_denied'
  932. );
  933. return false;
  934. }
  935. // edit password
  936. if (!empty($password_old) && !empty($_data['user_new_pass']) && !empty($_data['user_new_pass2'])) {
  937. $stmt = $pdo->prepare("SELECT `password` FROM `mailbox`
  938. WHERE `kind` NOT REGEXP 'location|thing|group'
  939. AND `username` = :user AND authsource = 'mailcow'");
  940. $stmt->execute(array(':user' => $username));
  941. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  942. if (!verify_hash($row['password'], $password_old)) {
  943. $_SESSION['return'][] = array(
  944. 'type' => 'danger',
  945. 'log' => array(__FUNCTION__, $_data_log),
  946. 'msg' => 'access_denied'
  947. );
  948. return false;
  949. }
  950. $password_new = $_data['user_new_pass'];
  951. $password_new2 = $_data['user_new_pass2'];
  952. if (password_check($password_new, $password_new2) !== true) {
  953. return false;
  954. }
  955. $password_hashed = hash_password($password_new);
  956. $stmt = $pdo->prepare("UPDATE `mailbox` SET `password` = :password_hashed,
  957. `attributes` = JSON_SET(`attributes`, '$.force_pw_update', '0'),
  958. `attributes` = JSON_SET(`attributes`, '$.passwd_update', NOW())
  959. WHERE `username` = :username AND authsource = 'mailcow'");
  960. $stmt->execute(array(
  961. ':password_hashed' => $password_hashed,
  962. ':username' => $username
  963. ));
  964. $_SESSION['pending_pw_update'] = false;
  965. update_sogo_static_view();
  966. }
  967. // edit password recovery email
  968. elseif (isset($pw_recovery_email)) {
  969. if (!isset($_SESSION['acl']['pw_reset']) || $_SESSION['acl']['pw_reset'] != "1" ) {
  970. $_SESSION['return'][] = array(
  971. 'type' => 'danger',
  972. 'log' => array(__FUNCTION__, $_action, $_type, $_data_log, $_attr),
  973. 'msg' => 'access_denied'
  974. );
  975. return false;
  976. }
  977. $pw_recovery_email = (!filter_var($pw_recovery_email, FILTER_VALIDATE_EMAIL)) ? '' : $pw_recovery_email;
  978. $stmt = $pdo->prepare("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.recovery_email', :recovery_email)
  979. WHERE `username` = :username AND authsource = 'mailcow'");
  980. $stmt->execute(array(
  981. ':recovery_email' => $pw_recovery_email,
  982. ':username' => $username
  983. ));
  984. }
  985. $_SESSION['return'][] = array(
  986. 'type' => 'success',
  987. 'log' => array(__FUNCTION__, $_data_log),
  988. 'msg' => array('mailbox_modified', htmlspecialchars($username))
  989. );
  990. }
  991. function user_get_alias_details($username) {
  992. global $pdo;
  993. global $lang;
  994. $data['direct_aliases'] = array();
  995. $data['shared_aliases'] = array();
  996. if ($_SESSION['mailcow_cc_role'] == "user") {
  997. $username = $_SESSION['mailcow_cc_username'];
  998. }
  999. if (!filter_var($username, FILTER_VALIDATE_EMAIL)) {
  1000. return false;
  1001. }
  1002. if (!hasMailboxObjectAccess($username, $_SESSION['mailcow_cc_role'], $username)) {
  1003. return false;
  1004. }
  1005. $data['address'] = $username;
  1006. $stmt = $pdo->prepare("SELECT `address` AS `shared_aliases`, `public_comment` FROM `alias`
  1007. WHERE `goto` REGEXP :username_goto
  1008. AND `address` NOT LIKE '@%'
  1009. AND `goto` != :username_goto2
  1010. AND `address` != :username_address");
  1011. $stmt->execute(array(
  1012. ':username_goto' => '(^|,)'.preg_quote($username, '/').'($|,)',
  1013. ':username_goto2' => $username,
  1014. ':username_address' => $username
  1015. ));
  1016. $run = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1017. while ($row = array_shift($run)) {
  1018. $data['shared_aliases'][$row['shared_aliases']]['public_comment'] = htmlspecialchars($row['public_comment']);
  1019. //$data['shared_aliases'][] = $row['shared_aliases'];
  1020. }
  1021. $stmt = $pdo->prepare("SELECT `address` AS `direct_aliases`, `public_comment` FROM `alias`
  1022. WHERE `goto` = :username_goto
  1023. AND `address` NOT LIKE '@%'
  1024. AND `address` != :username_address");
  1025. $stmt->execute(
  1026. array(
  1027. ':username_goto' => $username,
  1028. ':username_address' => $username
  1029. ));
  1030. $run = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1031. while ($row = array_shift($run)) {
  1032. $data['direct_aliases'][$row['direct_aliases']]['public_comment'] = htmlspecialchars($row['public_comment']);
  1033. }
  1034. $stmt = $pdo->prepare("SELECT CONCAT(local_part, '@', alias_domain) AS `ad_alias`, `alias_domain` FROM `mailbox`
  1035. LEFT OUTER JOIN `alias_domain` on `target_domain` = `domain`
  1036. WHERE `username` = :username ;");
  1037. $stmt->execute(array(':username' => $username));
  1038. $run = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1039. while ($row = array_shift($run)) {
  1040. if (empty($row['ad_alias'])) {
  1041. continue;
  1042. }
  1043. $data['direct_aliases'][$row['ad_alias']]['public_comment'] = $lang['add']['alias_domain'];
  1044. $data['alias_domains'][] = $row['alias_domain'];
  1045. }
  1046. $stmt = $pdo->prepare("SELECT IFNULL(GROUP_CONCAT(`send_as` SEPARATOR ', '), '') AS `send_as` FROM `sender_acl` WHERE `logged_in_as` = :username AND `send_as` NOT LIKE '@%';");
  1047. $stmt->execute(array(':username' => $username));
  1048. $run = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1049. while ($row = array_shift($run)) {
  1050. $data['aliases_also_send_as'] = $row['send_as'];
  1051. }
  1052. $stmt = $pdo->prepare("SELECT CONCAT_WS(', ', IFNULL(GROUP_CONCAT(DISTINCT `send_as` SEPARATOR ', '), ''), GROUP_CONCAT(DISTINCT CONCAT('@',`alias_domain`) SEPARATOR ', ')) AS `send_as` FROM `sender_acl` LEFT JOIN `alias_domain` ON `alias_domain`.`target_domain` = TRIM(LEADING '@' FROM `send_as`) WHERE `logged_in_as` = :username AND `send_as` LIKE '@%';");
  1053. $stmt->execute(array(':username' => $username));
  1054. $run = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1055. while ($row = array_shift($run)) {
  1056. $data['aliases_send_as_all'] = $row['send_as'];
  1057. }
  1058. $stmt = $pdo->prepare("SELECT IFNULL(GROUP_CONCAT(`address` SEPARATOR ', '), '') as `address` FROM `alias` WHERE `goto` REGEXP :username AND `address` LIKE '@%';");
  1059. $stmt->execute(array(':username' => '(^|,)'.preg_quote($username, '/').'($|,)'));
  1060. $run = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1061. while ($row = array_shift($run)) {
  1062. $data['is_catch_all'] = $row['address'];
  1063. }
  1064. return $data;
  1065. }
  1066. function is_valid_domain_name($domain_name) {
  1067. if (empty($domain_name)) {
  1068. return false;
  1069. }
  1070. $domain_name = idn_to_ascii($domain_name, 0, INTL_IDNA_VARIANT_UTS46);
  1071. return (preg_match("/^([a-z\d](-*[a-z\d])*)(\.([a-z\d](-*[a-z\d])*))*$/i", $domain_name)
  1072. && preg_match("/^.{1,253}$/", $domain_name)
  1073. && preg_match("/^[^\.]{1,63}(\.[^\.]{1,63})*$/", $domain_name));
  1074. }
  1075. function set_tfa($_data) {
  1076. global $pdo;
  1077. global $yubi;
  1078. global $tfa;
  1079. global $iam_settings;
  1080. $_data_log = $_data;
  1081. $access_denied = null;
  1082. !isset($_data_log['confirm_password']) ?: $_data_log['confirm_password'] = '*';
  1083. $username = $_SESSION['mailcow_cc_username'];
  1084. // check for empty user and role
  1085. if (!isset($_SESSION['mailcow_cc_role']) || empty($username)) $access_denied = true;
  1086. // check admin confirm password
  1087. if ($access_denied === null) {
  1088. $stmt = $pdo->prepare("SELECT `password` FROM `admin`
  1089. WHERE `username` = :username");
  1090. $stmt->execute(array(':username' => $username));
  1091. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1092. if ($row) {
  1093. if (!verify_hash($row['password'], $_data["confirm_password"])) $access_denied = true;
  1094. else $access_denied = false;
  1095. }
  1096. }
  1097. // check mailbox confirm password
  1098. if ($access_denied === null) {
  1099. $stmt = $pdo->prepare("SELECT `password`, `authsource` FROM `mailbox`
  1100. WHERE `username` = :username");
  1101. $stmt->execute(array(':username' => $username));
  1102. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1103. if ($row) {
  1104. if ($row['authsource'] == 'ldap'){
  1105. if (!ldap_mbox_login($username, $_data["confirm_password"], $iam_settings)) $access_denied = true;
  1106. else $access_denied = false;
  1107. } else {
  1108. if (!verify_hash($row['password'], $_data["confirm_password"])) $access_denied = true;
  1109. else $access_denied = false;
  1110. }
  1111. }
  1112. }
  1113. // set access_denied error
  1114. if ($access_denied){
  1115. $_SESSION['return'][] = array(
  1116. 'type' => 'danger',
  1117. 'log' => array(__FUNCTION__, $_data_log),
  1118. 'msg' => 'access_denied'
  1119. );
  1120. return false;
  1121. }
  1122. switch ($_data["tfa_method"]) {
  1123. case "yubi_otp":
  1124. $key_id = (!isset($_data["key_id"])) ? 'unidentified' : $_data["key_id"];
  1125. $yubico_id = $_data['yubico_id'];
  1126. $yubico_key = $_data['yubico_key'];
  1127. $yubi = new Auth_Yubico($yubico_id, $yubico_key);
  1128. if (!$yubi) {
  1129. $_SESSION['return'][] = array(
  1130. 'type' => 'danger',
  1131. 'log' => array(__FUNCTION__, $_data_log),
  1132. 'msg' => 'access_denied'
  1133. );
  1134. return false;
  1135. }
  1136. if (!ctype_alnum($_data["otp_token"]) || strlen($_data["otp_token"]) != 44) {
  1137. $_SESSION['return'][] = array(
  1138. 'type' => 'danger',
  1139. 'log' => array(__FUNCTION__, $_data_log),
  1140. 'msg' => 'tfa_token_invalid'
  1141. );
  1142. return false;
  1143. }
  1144. $yauth = $yubi->verify($_data["otp_token"]);
  1145. if (PEAR::isError($yauth)) {
  1146. $_SESSION['return'][] = array(
  1147. 'type' => 'danger',
  1148. 'log' => array(__FUNCTION__, $_data_log),
  1149. 'msg' => array('yotp_verification_failed', $yauth->getMessage())
  1150. );
  1151. return false;
  1152. }
  1153. try {
  1154. // We could also do a modhex translation here
  1155. $yubico_modhex_id = substr($_data["otp_token"], 0, 12);
  1156. $stmt = $pdo->prepare("DELETE FROM `tfa`
  1157. WHERE `username` = :username
  1158. AND (`authmech` = 'yubi_otp' AND `secret` LIKE :modhex)");
  1159. $stmt->execute(array(':username' => $username, ':modhex' => '%' . $yubico_modhex_id));
  1160. $stmt = $pdo->prepare("INSERT INTO `tfa` (`key_id`, `username`, `authmech`, `active`, `secret`) VALUES
  1161. (:key_id, :username, 'yubi_otp', '1', :secret)");
  1162. $stmt->execute(array(':key_id' => $key_id, ':username' => $username, ':secret' => $yubico_id . ':' . $yubico_key . ':' . $yubico_modhex_id));
  1163. }
  1164. catch (PDOException $e) {
  1165. $_SESSION['return'][] = array(
  1166. 'type' => 'danger',
  1167. 'log' => array(__FUNCTION__, $_data_log),
  1168. 'msg' => array('mysql_error', $e)
  1169. );
  1170. return false;
  1171. }
  1172. $_SESSION['return'][] = array(
  1173. 'type' => 'success',
  1174. 'log' => array(__FUNCTION__, $_data_log),
  1175. 'msg' => array('object_modified', htmlspecialchars($username))
  1176. );
  1177. break;
  1178. case "totp":
  1179. $key_id = (!isset($_data["key_id"])) ? 'unidentified' : $_data["key_id"];
  1180. if ($tfa->verifyCode($_POST['totp_secret'], $_POST['totp_confirm_token']) === true) {
  1181. //$stmt = $pdo->prepare("DELETE FROM `tfa` WHERE `username` = :username");
  1182. //$stmt->execute(array(':username' => $username));
  1183. $stmt = $pdo->prepare("INSERT INTO `tfa` (`username`, `key_id`, `authmech`, `secret`, `active`) VALUES (?, ?, 'totp', ?, '1')");
  1184. $stmt->execute(array($username, $key_id, $_POST['totp_secret']));
  1185. $_SESSION['return'][] = array(
  1186. 'type' => 'success',
  1187. 'log' => array(__FUNCTION__, $_data_log),
  1188. 'msg' => array('object_modified', $username)
  1189. );
  1190. }
  1191. else {
  1192. $_SESSION['return'][] = array(
  1193. 'type' => 'danger',
  1194. 'log' => array(__FUNCTION__, $_data_log),
  1195. 'msg' => 'totp_verification_failed'
  1196. );
  1197. }
  1198. break;
  1199. case "webauthn":
  1200. $key_id = (!isset($_data["key_id"])) ? 'unidentified' : $_data["key_id"];
  1201. $stmt = $pdo->prepare("INSERT INTO `tfa` (`username`, `key_id`, `authmech`, `keyHandle`, `publicKey`, `certificate`, `counter`, `active`)
  1202. VALUES (?, ?, 'webauthn', ?, ?, ?, ?, '1')");
  1203. $stmt->execute(array(
  1204. $username,
  1205. $key_id,
  1206. base64_encode($_data['registration']->credentialId),
  1207. $_data['registration']->credentialPublicKey,
  1208. $_data['registration']->certificate,
  1209. 0
  1210. ));
  1211. $_SESSION['return'][] = array(
  1212. 'type' => 'success',
  1213. 'log' => array(__FUNCTION__, $_data_log),
  1214. 'msg' => array('object_modified', $username)
  1215. );
  1216. break;
  1217. case "none":
  1218. $stmt = $pdo->prepare("DELETE FROM `tfa` WHERE `username` = :username");
  1219. $stmt->execute(array(':username' => $username));
  1220. $_SESSION['return'][] = array(
  1221. 'type' => 'success',
  1222. 'log' => array(__FUNCTION__, $_data_log),
  1223. 'msg' => array('object_modified', htmlspecialchars($username))
  1224. );
  1225. break;
  1226. }
  1227. }
  1228. function fido2($_data) {
  1229. global $pdo;
  1230. global $WebAuthn;
  1231. $_data_log = $_data;
  1232. // Not logging registration data, only actions
  1233. // Silent errors for "get" requests
  1234. switch ($_data["action"]) {
  1235. case "register":
  1236. $username = $_SESSION['mailcow_cc_username'];
  1237. if (!isset($_SESSION['mailcow_cc_role']) || empty($username)) {
  1238. $_SESSION['return'][] = array(
  1239. 'type' => 'danger',
  1240. 'log' => array(__FUNCTION__, $_data["action"]),
  1241. 'msg' => 'access_denied'
  1242. );
  1243. return false;
  1244. }
  1245. $stmt = $pdo->prepare("INSERT INTO `fido2` (`username`, `rpId`, `credentialPublicKey`, `certificateChain`, `certificate`, `certificateIssuer`, `certificateSubject`, `signatureCounter`, `AAGUID`, `credentialId`)
  1246. VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
  1247. $stmt->execute(array(
  1248. $username,
  1249. $_data['registration']->rpId,
  1250. $_data['registration']->credentialPublicKey,
  1251. $_data['registration']->certificateChain,
  1252. $_data['registration']->certificate,
  1253. $_data['registration']->certificateIssuer,
  1254. $_data['registration']->certificateSubject,
  1255. $_data['registration']->signatureCounter,
  1256. $_data['registration']->AAGUID,
  1257. $_data['registration']->credentialId)
  1258. );
  1259. $_SESSION['return'][] = array(
  1260. 'type' => 'success',
  1261. 'log' => array(__FUNCTION__, $_data["action"]),
  1262. 'msg' => array('object_modified', $username)
  1263. );
  1264. break;
  1265. case "get_user_cids":
  1266. // Used to exclude existing CredentialIds while registering
  1267. $username = $_SESSION['mailcow_cc_username'];
  1268. if (!isset($_SESSION['mailcow_cc_role']) || empty($username)) {
  1269. return false;
  1270. }
  1271. $stmt = $pdo->prepare("SELECT `credentialId` FROM `fido2` WHERE `username` = :username");
  1272. $stmt->execute(array(':username' => $username));
  1273. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1274. while($row = array_shift($rows)) {
  1275. $cids[] = $row['credentialId'];
  1276. }
  1277. return $cids;
  1278. break;
  1279. case "get_all_cids":
  1280. // Only needed when using fido2 with username
  1281. $stmt = $pdo->query("SELECT `credentialId` FROM `fido2`");
  1282. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1283. while($row = array_shift($rows)) {
  1284. $cids[] = $row['credentialId'];
  1285. }
  1286. return $cids;
  1287. break;
  1288. case "get_by_b64cid":
  1289. if (!isset($_data['cid']) || empty($_data['cid'])) {
  1290. return false;
  1291. }
  1292. $stmt = $pdo->prepare("SELECT `certificateSubject`, `username`, `credentialPublicKey`, SHA2(`credentialId`, 256) AS `cid` FROM `fido2` WHERE `credentialId` = :cid");
  1293. $stmt->execute(array(':cid' => base64_decode($_data['cid'])));
  1294. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1295. if (empty($row) || empty($row['credentialPublicKey']) || empty($row['username'])) {
  1296. return false;
  1297. }
  1298. $data['pub_key'] = $row['credentialPublicKey'];
  1299. $data['username'] = $row['username'];
  1300. $data['subject'] = $row['certificateSubject'];
  1301. $data['cid'] = $row['cid'];
  1302. return $data;
  1303. break;
  1304. case "get_friendly_names":
  1305. $username = $_SESSION['mailcow_cc_username'];
  1306. if (!isset($_SESSION['mailcow_cc_role']) || empty($username)) {
  1307. return false;
  1308. }
  1309. $stmt = $pdo->prepare("SELECT SHA2(`credentialId`, 256) AS `cid`, `created`, `certificateSubject`, `friendlyName` FROM `fido2` WHERE `username` = :username");
  1310. $stmt->execute(array(':username' => $username));
  1311. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1312. while($row = array_shift($rows)) {
  1313. $fns[] = array(
  1314. "subject" => (empty($row['certificateSubject']) ? 'Unknown (' . $row['created'] . ')' : $row['certificateSubject']),
  1315. "fn" => $row['friendlyName'],
  1316. "cid" => $row['cid']
  1317. );
  1318. }
  1319. return $fns;
  1320. break;
  1321. case "unset_fido2_key":
  1322. $username = $_SESSION['mailcow_cc_username'];
  1323. if (!isset($_SESSION['mailcow_cc_role']) || empty($username)) {
  1324. $_SESSION['return'][] = array(
  1325. 'type' => 'danger',
  1326. 'log' => array(__FUNCTION__, $_data["action"]),
  1327. 'msg' => 'access_denied'
  1328. );
  1329. return false;
  1330. }
  1331. $stmt = $pdo->prepare("DELETE FROM `fido2` WHERE `username` = :username AND SHA2(`credentialId`, 256) = :cid");
  1332. $stmt->execute(array(
  1333. ':username' => $username,
  1334. ':cid' => $_data['post_data']['unset_fido2_key']
  1335. ));
  1336. $_SESSION['return'][] = array(
  1337. 'type' => 'success',
  1338. 'log' => array(__FUNCTION__, $_data_log),
  1339. 'msg' => array('object_modified', htmlspecialchars($username))
  1340. );
  1341. break;
  1342. case "edit_fn":
  1343. $username = $_SESSION['mailcow_cc_username'];
  1344. if (!isset($_SESSION['mailcow_cc_role']) || empty($username)) {
  1345. $_SESSION['return'][] = array(
  1346. 'type' => 'danger',
  1347. 'log' => array(__FUNCTION__, $_data["action"]),
  1348. 'msg' => 'access_denied'
  1349. );
  1350. return false;
  1351. }
  1352. $stmt = $pdo->prepare("UPDATE `fido2` SET `friendlyName` = :friendlyName WHERE SHA2(`credentialId`, 256) = :cid AND `username` = :username");
  1353. $stmt->execute(array(
  1354. ':username' => $username,
  1355. ':friendlyName' => $_data['fido2_attrs']['fido2_fn'],
  1356. ':cid' => $_data['fido2_attrs']['fido2_cid']
  1357. ));
  1358. $_SESSION['return'][] = array(
  1359. 'type' => 'success',
  1360. 'log' => array(__FUNCTION__, $_data_log),
  1361. 'msg' => array('object_modified', htmlspecialchars($username))
  1362. );
  1363. break;
  1364. case "verify":
  1365. $role = "";
  1366. $tokenData = json_decode($_data['token']);
  1367. $clientDataJSON = base64_decode($tokenData->clientDataJSON);
  1368. $authenticatorData = base64_decode($tokenData->authenticatorData);
  1369. $signature = base64_decode($tokenData->signature);
  1370. $id = base64_decode($tokenData->id);
  1371. $challenge = $_SESSION['challenge'];
  1372. $process_fido2 = fido2(array("action" => "get_by_b64cid", "cid" => $tokenData->id));
  1373. if ($process_fido2['pub_key'] === false) {
  1374. $_SESSION['return'][] = array(
  1375. 'type' => 'danger',
  1376. 'log' => array("fido2_login", $_data['user'], $process_fido2['username']),
  1377. 'msg' => "login_failed"
  1378. );
  1379. return false;
  1380. }
  1381. try {
  1382. $WebAuthn->processGet($clientDataJSON, $authenticatorData, $signature, $process_fido2['pub_key'], $challenge, null, $GLOBALS['FIDO2_UV_FLAG_LOGIN'], $GLOBALS['FIDO2_USER_PRESENT_FLAG']);
  1383. }
  1384. catch (Throwable $ex) {
  1385. unset($process_fido2);
  1386. $_SESSION['return'][] = array(
  1387. 'type' => 'danger',
  1388. 'log' => array("fido2_login", $_data['user'], $process_fido2['username'], $ex->getMessage()),
  1389. 'msg' => "login_failed"
  1390. );
  1391. return false;
  1392. }
  1393. $return = new stdClass();
  1394. $return->success = true;
  1395. $stmt = $pdo->prepare("SELECT `superadmin` FROM `admin` WHERE `username` = :username");
  1396. $stmt->execute(array(':username' => $process_fido2['username']));
  1397. $obj_props = $stmt->fetch(PDO::FETCH_ASSOC);
  1398. if ($obj_props['superadmin'] === 1 && (!$_data['user'] || $_data['user'] == "admin")) {
  1399. $role = "admin";
  1400. }
  1401. elseif ($obj_props['superadmin'] === 0 && (!$_data['user'] || $_data['user'] == "domainadmin")) {
  1402. $role = "domainadmin";
  1403. }
  1404. elseif (!isset($obj_props['superadmin']) && (!$_data['user'] || $_data['user'] == "user")) {
  1405. $stmt = $pdo->prepare("SELECT `username` FROM `mailbox` WHERE `username` = :username");
  1406. $stmt->execute(array(':username' => $process_fido2['username']));
  1407. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1408. if ($row['username'] == $process_fido2['username']) {
  1409. $role = "user";
  1410. }
  1411. }
  1412. else {
  1413. $_SESSION['return'][] = array(
  1414. 'type' => 'danger',
  1415. 'log' => array("fido2_login", $_data['user'], $process_fido2['username']),
  1416. 'msg' => 'login_failed'
  1417. );
  1418. return false;
  1419. }
  1420. if (empty($role)) {
  1421. session_unset();
  1422. session_destroy();
  1423. $_SESSION['return'][] = array(
  1424. 'type' => 'danger',
  1425. 'log' => array("fido2_login", $_data['user'], $process_fido2['username']),
  1426. 'msg' => 'login_failed'
  1427. );
  1428. return false;
  1429. }
  1430. unset($_SESSION["challenge"]);
  1431. $_SESSION['return'][] = array(
  1432. 'type' => 'success',
  1433. 'log' => array("fido2_login", $_data['user'], $process_fido2['username']),
  1434. 'msg' => array('logged_in_as', $process_fido2['username'])
  1435. );
  1436. return array(
  1437. "role" => $role,
  1438. "username" => $process_fido2['username'],
  1439. "cid" => $process_fido2['cid']
  1440. );
  1441. break;
  1442. }
  1443. }
  1444. function unset_tfa_key($_data) {
  1445. // Can only unset own keys
  1446. // Needs at least one key left
  1447. global $pdo;
  1448. global $lang;
  1449. $_data_log = $_data;
  1450. $access_denied = null;
  1451. $id = intval($_data['unset_tfa_key']);
  1452. $username = $_SESSION['mailcow_cc_username'];
  1453. // check for empty user and role
  1454. if (!isset($_SESSION['mailcow_cc_role']) || empty($username)) $access_denied = true;
  1455. try {
  1456. if (!is_numeric($id)) $access_denied = true;
  1457. // set access_denied error
  1458. if ($access_denied){
  1459. $_SESSION['return'][] = array(
  1460. 'type' => 'danger',
  1461. 'log' => array(__FUNCTION__, $_data_log),
  1462. 'msg' => 'access_denied'
  1463. );
  1464. return false;
  1465. }
  1466. // check if it's last key
  1467. $stmt = $pdo->prepare("SELECT COUNT(*) AS `keys` FROM `tfa`
  1468. WHERE `username` = :username AND `active` = '1'");
  1469. $stmt->execute(array(':username' => $username));
  1470. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1471. if ($row['keys'] == "1") {
  1472. $_SESSION['return'][] = array(
  1473. 'type' => 'danger',
  1474. 'log' => array(__FUNCTION__, $_data_log),
  1475. 'msg' => 'last_key'
  1476. );
  1477. return false;
  1478. }
  1479. // delete key
  1480. $stmt = $pdo->prepare("DELETE FROM `tfa` WHERE `username` = :username AND `id` = :id");
  1481. $stmt->execute(array(':username' => $username, ':id' => $id));
  1482. $_SESSION['return'][] = array(
  1483. 'type' => 'success',
  1484. 'log' => array(__FUNCTION__, $_data_log),
  1485. 'msg' => array('object_modified', $username)
  1486. );
  1487. }
  1488. catch (PDOException $e) {
  1489. $_SESSION['return'][] = array(
  1490. 'type' => 'danger',
  1491. 'log' => array(__FUNCTION__, $_data_log),
  1492. 'msg' => array('mysql_error', $e)
  1493. );
  1494. return false;
  1495. }
  1496. }
  1497. function get_tfa($username = null, $id = null) {
  1498. global $pdo;
  1499. if (empty($username) && isset($_SESSION['mailcow_cc_username'])) {
  1500. $username = $_SESSION['mailcow_cc_username'];
  1501. }
  1502. elseif (empty($username)) {
  1503. return false;
  1504. }
  1505. if (!isset($id)){
  1506. // fetch all tfa methods - just get information about possible authenticators
  1507. $stmt = $pdo->prepare("SELECT `id`, `key_id`, `authmech` FROM `tfa`
  1508. WHERE `username` = :username AND `active` = '1'");
  1509. $stmt->execute(array(':username' => $username));
  1510. $results = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1511. // no tfa methods found
  1512. if (count($results) == 0) {
  1513. $data['name'] = 'none';
  1514. $data['pretty'] = "-";
  1515. $data['additional'] = array();
  1516. return $data;
  1517. }
  1518. $data['additional'] = $results;
  1519. return $data;
  1520. } else {
  1521. // fetch specific authenticator details by id
  1522. $stmt = $pdo->prepare("SELECT * FROM `tfa`
  1523. WHERE `username` = :username AND `id` = :id AND `active` = '1'");
  1524. $stmt->execute(array(':username' => $username, ':id' => $id));
  1525. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1526. if (isset($row["authmech"])) {
  1527. switch ($row["authmech"]) {
  1528. case "yubi_otp":
  1529. $data['name'] = "yubi_otp";
  1530. $data['pretty'] = "Yubico OTP";
  1531. $stmt = $pdo->prepare("SELECT `id`, `key_id`, RIGHT(`secret`, 12) AS 'modhex' FROM `tfa` WHERE `authmech` = 'yubi_otp' AND `username` = :username AND `id` = :id");
  1532. $stmt->execute(array(
  1533. ':username' => $username,
  1534. ':id' => $id
  1535. ));
  1536. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1537. while($row = array_shift($rows)) {
  1538. $data['additional'][] = $row;
  1539. }
  1540. return $data;
  1541. break;
  1542. // u2f - deprecated, should be removed
  1543. case "u2f":
  1544. $data['name'] = "u2f";
  1545. $data['pretty'] = "Fido U2F";
  1546. $stmt = $pdo->prepare("SELECT `id`, `key_id` FROM `tfa` WHERE `authmech` = 'u2f' AND `username` = :username AND `id` = :id");
  1547. $stmt->execute(array(
  1548. ':username' => $username,
  1549. ':id' => $id
  1550. ));
  1551. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1552. while($row = array_shift($rows)) {
  1553. $data['additional'][] = $row;
  1554. }
  1555. return $data;
  1556. break;
  1557. case "hotp":
  1558. $data['name'] = "hotp";
  1559. $data['pretty'] = "HMAC-based OTP";
  1560. return $data;
  1561. break;
  1562. case "totp":
  1563. $data['name'] = "totp";
  1564. $data['pretty'] = "Time-based OTP";
  1565. $stmt = $pdo->prepare("SELECT `id`, `key_id`, `secret` FROM `tfa` WHERE `authmech` = 'totp' AND `username` = :username AND `id` = :id");
  1566. $stmt->execute(array(
  1567. ':username' => $username,
  1568. ':id' => $id
  1569. ));
  1570. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1571. while($row = array_shift($rows)) {
  1572. $data['additional'][] = $row;
  1573. }
  1574. return $data;
  1575. break;
  1576. case "webauthn":
  1577. $data['name'] = "webauthn";
  1578. $data['pretty'] = "WebAuthn";
  1579. $stmt = $pdo->prepare("SELECT `id`, `key_id` FROM `tfa` WHERE `authmech` = 'webauthn' AND `username` = :username AND `id` = :id");
  1580. $stmt->execute(array(
  1581. ':username' => $username,
  1582. ':id' => $id
  1583. ));
  1584. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1585. while($row = array_shift($rows)) {
  1586. $data['additional'][] = $row;
  1587. }
  1588. return $data;
  1589. break;
  1590. default:
  1591. $data['name'] = 'none';
  1592. $data['pretty'] = "-";
  1593. return $data;
  1594. break;
  1595. }
  1596. }
  1597. else {
  1598. $data['name'] = 'none';
  1599. $data['pretty'] = "-";
  1600. return $data;
  1601. }
  1602. }
  1603. }
  1604. function verify_tfa_login($username, $_data) {
  1605. global $pdo;
  1606. global $yubi;
  1607. global $u2f;
  1608. global $tfa;
  1609. global $WebAuthn;
  1610. if ($_data['tfa_method'] != 'u2f'){
  1611. switch ($_data["tfa_method"]) {
  1612. case "yubi_otp":
  1613. if (!ctype_alnum($_data['token']) || strlen($_data['token']) != 44) {
  1614. $_SESSION['return'][] = array(
  1615. 'type' => 'danger',
  1616. 'log' => array(__FUNCTION__, $username, '*'),
  1617. 'msg' => array('yotp_verification_failed', 'token length error')
  1618. );
  1619. return false;
  1620. }
  1621. $yubico_modhex_id = substr($_data['token'], 0, 12);
  1622. $stmt = $pdo->prepare("SELECT `id`, `secret` FROM `tfa`
  1623. WHERE `username` = :username
  1624. AND `authmech` = 'yubi_otp'
  1625. AND `active` = '1'
  1626. AND `secret` LIKE :modhex");
  1627. $stmt->execute(array(':username' => $username, ':modhex' => '%' . $yubico_modhex_id));
  1628. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1629. $yubico_auth = explode(':', $row['secret']);
  1630. $yubi = new Auth_Yubico($yubico_auth[0], $yubico_auth[1]);
  1631. $yauth = $yubi->verify($_data['token']);
  1632. if (PEAR::isError($yauth)) {
  1633. $_SESSION['return'][] = array(
  1634. 'type' => 'danger',
  1635. 'log' => array(__FUNCTION__, $username, '*'),
  1636. 'msg' => array('yotp_verification_failed', $yauth->getMessage())
  1637. );
  1638. return false;
  1639. }
  1640. else {
  1641. $_SESSION['tfa_id'] = $row['id'];
  1642. $_SESSION['return'][] = array(
  1643. 'type' => 'success',
  1644. 'log' => array(__FUNCTION__, $username, '*'),
  1645. 'msg' => 'verified_yotp_login'
  1646. );
  1647. return true;
  1648. }
  1649. $_SESSION['return'][] = array(
  1650. 'type' => 'danger',
  1651. 'log' => array(__FUNCTION__, $username, '*'),
  1652. 'msg' => array('yotp_verification_failed', 'unknown')
  1653. );
  1654. return false;
  1655. break;
  1656. case "hotp":
  1657. return false;
  1658. break;
  1659. case "totp":
  1660. try {
  1661. $stmt = $pdo->prepare("SELECT `id`, `secret` FROM `tfa`
  1662. WHERE `username` = :username
  1663. AND `authmech` = 'totp'
  1664. AND `id` = :id
  1665. AND `active`='1'");
  1666. $stmt->execute(array(':username' => $username, ':id' => $_data['id']));
  1667. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1668. foreach ($rows as $row) {
  1669. if ($tfa->verifyCode($row['secret'], $_data['token']) === true) {
  1670. $_SESSION['tfa_id'] = $row['id'];
  1671. $_SESSION['return'][] = array(
  1672. 'type' => 'success',
  1673. 'log' => array(__FUNCTION__, $username, '*'),
  1674. 'msg' => 'verified_totp_login'
  1675. );
  1676. return true;
  1677. }
  1678. }
  1679. $_SESSION['return'][] = array(
  1680. 'type' => 'danger',
  1681. 'log' => array(__FUNCTION__, $username, '*'),
  1682. 'msg' => 'totp_verification_failed'
  1683. );
  1684. return false;
  1685. }
  1686. catch (PDOException $e) {
  1687. $_SESSION['return'][] = array(
  1688. 'type' => 'danger',
  1689. 'log' => array(__FUNCTION__, $username, '*'),
  1690. 'msg' => array('mysql_error', $e)
  1691. );
  1692. return false;
  1693. }
  1694. break;
  1695. case "webauthn":
  1696. $tokenData = json_decode($_data['token']);
  1697. $clientDataJSON = base64_decode($tokenData->clientDataJSON);
  1698. $authenticatorData = base64_decode($tokenData->authenticatorData);
  1699. $signature = base64_decode($tokenData->signature);
  1700. $id = base64_decode($tokenData->id);
  1701. $challenge = $_SESSION['challenge'];
  1702. $stmt = $pdo->prepare("SELECT `id`, `key_id`, `keyHandle`, `username`, `publicKey` FROM `tfa` WHERE `id` = :id AND `active`='1'");
  1703. $stmt->execute(array(':id' => $_data['id']));
  1704. $process_webauthn = $stmt->fetch(PDO::FETCH_ASSOC);
  1705. if (empty($process_webauthn)){
  1706. $_SESSION['return'][] = array(
  1707. 'type' => 'danger',
  1708. 'log' => array(__FUNCTION__, $username, '*'),
  1709. 'msg' => array('webauthn_authenticator_failed')
  1710. );
  1711. return false;
  1712. }
  1713. if (empty($process_webauthn['publicKey']) || $process_webauthn['publicKey'] === false) {
  1714. $_SESSION['return'][] = array(
  1715. 'type' => 'danger',
  1716. 'log' => array(__FUNCTION__, $username, '*'),
  1717. 'msg' => array('webauthn_publickey_failed')
  1718. );
  1719. return false;
  1720. }
  1721. if ($process_webauthn['username'] != $_SESSION['pending_mailcow_cc_username']){
  1722. $_SESSION['return'][] = array(
  1723. 'type' => 'danger',
  1724. 'log' => array(__FUNCTION__, $username, '*'),
  1725. 'msg' => array('webauthn_username_failed')
  1726. );
  1727. return false;
  1728. }
  1729. try {
  1730. $WebAuthn->processGet($clientDataJSON, $authenticatorData, $signature, $process_webauthn['publicKey'], $challenge, null, $GLOBALS['WEBAUTHN_UV_FLAG_LOGIN'], $GLOBALS['WEBAUTHN_USER_PRESENT_FLAG']);
  1731. }
  1732. catch (Throwable $ex) {
  1733. $_SESSION['return'][] = array(
  1734. 'type' => 'danger',
  1735. 'log' => array(__FUNCTION__, $username, '*'),
  1736. 'msg' => array('webauthn_verification_failed', $ex->getMessage())
  1737. );
  1738. return false;
  1739. }
  1740. $stmt = $pdo->prepare("SELECT `superadmin` FROM `admin` WHERE `username` = :username");
  1741. $stmt->execute(array(':username' => $process_webauthn['username']));
  1742. $obj_props = $stmt->fetch(PDO::FETCH_ASSOC);
  1743. if ($obj_props['superadmin'] === 1) {
  1744. $_SESSION["mailcow_cc_role"] = "admin";
  1745. }
  1746. elseif ($obj_props['superadmin'] === 0) {
  1747. $_SESSION["mailcow_cc_role"] = "domainadmin";
  1748. }
  1749. else {
  1750. $stmt = $pdo->prepare("SELECT `username` FROM `mailbox` WHERE `username` = :username");
  1751. $stmt->execute(array(':username' => $process_webauthn['username']));
  1752. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  1753. if (!empty($row['username'])) {
  1754. $_SESSION["mailcow_cc_role"] = "user";
  1755. } else {
  1756. $_SESSION['return'][] = array(
  1757. 'type' => 'danger',
  1758. 'log' => array(__FUNCTION__, $username, '*'),
  1759. 'msg' => array('webauthn_role_failed')
  1760. );
  1761. return false;
  1762. }
  1763. }
  1764. $_SESSION["mailcow_cc_username"] = $process_webauthn['username'];
  1765. $_SESSION['tfa_id'] = $process_webauthn['id'];
  1766. $_SESSION['authReq'] = null;
  1767. unset($_SESSION["challenge"]);
  1768. $_SESSION['return'][] = array(
  1769. 'type' => 'success',
  1770. 'log' => array("webauthn_login"),
  1771. 'msg' => array('logged_in_as', $process_webauthn['username'])
  1772. );
  1773. return true;
  1774. break;
  1775. default:
  1776. $_SESSION['return'][] = array(
  1777. 'type' => 'danger',
  1778. 'log' => array(__FUNCTION__, $username, '*'),
  1779. 'msg' => 'unknown_tfa_method'
  1780. );
  1781. return false;
  1782. break;
  1783. }
  1784. return false;
  1785. } else {
  1786. // delete old keys that used u2f
  1787. $stmt = $pdo->prepare("SELECT * FROM `tfa` WHERE `authmech` = 'u2f' AND `username` = :username");
  1788. $stmt->execute(array(':username' => $username));
  1789. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  1790. if (count($rows) == 0) return false;
  1791. $stmt = $pdo->prepare("DELETE FROM `tfa` WHERE `authmech` = 'u2f' AND `username` = :username");
  1792. $stmt->execute(array(':username' => $username));
  1793. return true;
  1794. }
  1795. }
  1796. function admin_api($access, $action, $data = null) {
  1797. global $pdo;
  1798. if ($_SESSION['mailcow_cc_role'] != "admin") {
  1799. $_SESSION['return'][] = array(
  1800. 'type' => 'danger',
  1801. 'log' => array(__FUNCTION__),
  1802. 'msg' => 'access_denied'
  1803. );
  1804. return false;
  1805. }
  1806. if ($access !== "ro" && $access !== "rw") {
  1807. $_SESSION['return'][] = array(
  1808. 'type' => 'danger',
  1809. 'log' => array(__FUNCTION__),
  1810. 'msg' => 'invalid access type'
  1811. );
  1812. return false;
  1813. }
  1814. if ($action == "edit") {
  1815. $active = (!empty($data['active'])) ? 1 : 0;
  1816. $skip_ip_check = (isset($data['skip_ip_check'])) ? 1 : 0;
  1817. $allow_from = array();
  1818. if (isset($data['allow_from'])) {
  1819. $allow_from = array_map('trim', preg_split( "/( |,|;|\n)/", $data['allow_from']));
  1820. }
  1821. foreach ($allow_from as $key => $val) {
  1822. if (empty($val)) {
  1823. unset($allow_from[$key]);
  1824. continue;
  1825. }
  1826. if (valid_network($val) !== true) {
  1827. $_SESSION['return'][] = array(
  1828. 'type' => 'warning',
  1829. 'log' => array(__FUNCTION__, $data),
  1830. 'msg' => array('ip_invalid', htmlspecialchars($allow_from[$key]))
  1831. );
  1832. unset($allow_from[$key]);
  1833. continue;
  1834. }
  1835. }
  1836. $allow_from = implode(',', array_unique(array_filter($allow_from)));
  1837. if (empty($allow_from) && $skip_ip_check == 0) {
  1838. $_SESSION['return'][] = array(
  1839. 'type' => 'danger',
  1840. 'log' => array(__FUNCTION__, $data),
  1841. 'msg' => 'ip_list_empty'
  1842. );
  1843. return false;
  1844. }
  1845. $api_key = implode('-', array(
  1846. strtoupper(bin2hex(random_bytes(3))),
  1847. strtoupper(bin2hex(random_bytes(3))),
  1848. strtoupper(bin2hex(random_bytes(3))),
  1849. strtoupper(bin2hex(random_bytes(3))),
  1850. strtoupper(bin2hex(random_bytes(3)))
  1851. ));
  1852. $stmt = $pdo->query("SELECT `api_key` FROM `api` WHERE `access` = '" . $access . "'");
  1853. $num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
  1854. if (empty($num_results)) {
  1855. $stmt = $pdo->prepare("INSERT INTO `api` (`api_key`, `skip_ip_check`, `active`, `allow_from`, `access`)
  1856. VALUES (:api_key, :skip_ip_check, :active, :allow_from, :access);");
  1857. $stmt->execute(array(
  1858. ':api_key' => $api_key,
  1859. ':skip_ip_check' => $skip_ip_check,
  1860. ':active' => $active,
  1861. ':allow_from' => $allow_from,
  1862. ':access' => $access
  1863. ));
  1864. }
  1865. else {
  1866. if ($skip_ip_check == 0) {
  1867. $stmt = $pdo->prepare("UPDATE `api` SET `skip_ip_check` = :skip_ip_check,
  1868. `active` = :active,
  1869. `allow_from` = :allow_from
  1870. WHERE `access` = :access;");
  1871. $stmt->execute(array(
  1872. ':active' => $active,
  1873. ':skip_ip_check' => $skip_ip_check,
  1874. ':allow_from' => $allow_from,
  1875. ':access' => $access
  1876. ));
  1877. }
  1878. else {
  1879. $stmt = $pdo->prepare("UPDATE `api` SET `skip_ip_check` = :skip_ip_check,
  1880. `active` = :active
  1881. WHERE `access` = :access;");
  1882. $stmt->execute(array(
  1883. ':active' => $active,
  1884. ':skip_ip_check' => $skip_ip_check,
  1885. ':access' => $access
  1886. ));
  1887. }
  1888. }
  1889. }
  1890. elseif ($action == "regen_key") {
  1891. $api_key = implode('-', array(
  1892. strtoupper(bin2hex(random_bytes(3))),
  1893. strtoupper(bin2hex(random_bytes(3))),
  1894. strtoupper(bin2hex(random_bytes(3))),
  1895. strtoupper(bin2hex(random_bytes(3))),
  1896. strtoupper(bin2hex(random_bytes(3)))
  1897. ));
  1898. $stmt = $pdo->prepare("UPDATE `api` SET `api_key` = :api_key WHERE `access` = :access");
  1899. $stmt->execute(array(
  1900. ':api_key' => $api_key,
  1901. ':access' => $access
  1902. ));
  1903. }
  1904. elseif ($action == "get") {
  1905. $stmt = $pdo->query("SELECT * FROM `api` WHERE `access` = '" . $access . "'");
  1906. $apidata = $stmt->fetch(PDO::FETCH_ASSOC);
  1907. if ($apidata !== false) {
  1908. $apidata['allow_from'] = str_replace(',', PHP_EOL, $apidata['allow_from']);
  1909. }
  1910. return $apidata;
  1911. }
  1912. $_SESSION['return'][] = array(
  1913. 'type' => 'success',
  1914. 'log' => array(__FUNCTION__, $data),
  1915. 'msg' => 'admin_api_modified'
  1916. );
  1917. }
  1918. function license($action, $data = null) {
  1919. global $pdo;
  1920. global $redis;
  1921. global $lang;
  1922. if ($_SESSION['mailcow_cc_role'] != "admin") {
  1923. $_SESSION['return'][] = array(
  1924. 'type' => 'danger',
  1925. 'log' => array(__FUNCTION__),
  1926. 'msg' => 'access_denied'
  1927. );
  1928. return false;
  1929. }
  1930. switch ($action) {
  1931. case "verify":
  1932. // Keep result until revalidate button is pressed or session expired
  1933. $stmt = $pdo->query("SELECT `version` FROM `versions` WHERE `application` = 'GUID'");
  1934. $versions = $stmt->fetch(PDO::FETCH_ASSOC);
  1935. $post = array('guid' => $versions['version']);
  1936. $curl = curl_init('https://verify.mailcow.email');
  1937. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  1938. curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10);
  1939. curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
  1940. $response = curl_exec($curl);
  1941. curl_close($curl);
  1942. $json_return = json_decode($response, true);
  1943. if ($response && $json_return) {
  1944. if ($json_return['response'] === "ok") {
  1945. $_SESSION['gal']['valid'] = "true";
  1946. $_SESSION['gal']['c'] = $json_return['c'];
  1947. $_SESSION['gal']['s'] = $json_return['s'];
  1948. if ($json_return['m'] == 'NoMoore') {
  1949. $_SESSION['gal']['m'] = '🐄';
  1950. }
  1951. else {
  1952. $_SESSION['gal']['m'] = str_repeat('🐄', substr_count($json_return['m'], 'o'));
  1953. }
  1954. }
  1955. elseif ($json_return['response'] === "invalid") {
  1956. $_SESSION['gal']['valid'] = "false";
  1957. $_SESSION['gal']['c'] = $lang['mailbox']['no'];
  1958. $_SESSION['gal']['s'] = $lang['mailbox']['no'];
  1959. $_SESSION['gal']['m'] = $lang['mailbox']['no'];
  1960. }
  1961. }
  1962. else {
  1963. $_SESSION['gal']['valid'] = "false";
  1964. $_SESSION['gal']['c'] = $lang['danger']['temp_error'];
  1965. $_SESSION['gal']['s'] = $lang['danger']['temp_error'];
  1966. $_SESSION['gal']['m'] = $lang['danger']['temp_error'];
  1967. }
  1968. try {
  1969. // json_encode needs "true"/"false" instead of true/false, to not encode it to 0 or 1
  1970. $redis->Set('LICENSE_STATUS_CACHE', json_encode($_SESSION['gal']));
  1971. }
  1972. catch (RedisException $e) {
  1973. $_SESSION['return'][] = array(
  1974. 'type' => 'danger',
  1975. 'log' => array(__FUNCTION__, $_action, $_data_log),
  1976. 'msg' => array('redis_error', $e)
  1977. );
  1978. return false;
  1979. }
  1980. return $_SESSION['gal']['valid'];
  1981. break;
  1982. case "guid":
  1983. $stmt = $pdo->query("SELECT `version` FROM `versions` WHERE `application` = 'GUID'");
  1984. $versions = $stmt->fetch(PDO::FETCH_ASSOC);
  1985. return $versions['version'];
  1986. break;
  1987. }
  1988. }
  1989. function rspamd_ui($action, $data = null) {
  1990. if ($_SESSION['mailcow_cc_role'] != "admin") {
  1991. $_SESSION['return'][] = array(
  1992. 'type' => 'danger',
  1993. 'log' => array(__FUNCTION__),
  1994. 'msg' => 'access_denied'
  1995. );
  1996. return false;
  1997. }
  1998. switch ($action) {
  1999. case "edit":
  2000. $rspamd_ui_pass = $data['rspamd_ui_pass'];
  2001. $rspamd_ui_pass2 = $data['rspamd_ui_pass2'];
  2002. if (empty($rspamd_ui_pass) || empty($rspamd_ui_pass2)) {
  2003. $_SESSION['return'][] = array(
  2004. 'type' => 'danger',
  2005. 'log' => array(__FUNCTION__, '*', '*'),
  2006. 'msg' => 'password_empty'
  2007. );
  2008. return false;
  2009. }
  2010. if ($rspamd_ui_pass != $rspamd_ui_pass2) {
  2011. $_SESSION['return'][] = array(
  2012. 'type' => 'danger',
  2013. 'log' => array(__FUNCTION__, '*', '*'),
  2014. 'msg' => 'password_mismatch'
  2015. );
  2016. return false;
  2017. }
  2018. if (strlen($rspamd_ui_pass) < 6) {
  2019. $_SESSION['return'][] = array(
  2020. 'type' => 'danger',
  2021. 'log' => array(__FUNCTION__, '*', '*'),
  2022. 'msg' => 'rspamd_ui_pw_length'
  2023. );
  2024. return false;
  2025. }
  2026. $docker_return = docker('post', 'rspamd-mailcow', 'exec', array('cmd' => 'rspamd', 'task' => 'worker_password', 'raw' => $rspamd_ui_pass), array('Content-Type: application/json'));
  2027. if ($docker_return_array = json_decode($docker_return, true)) {
  2028. if ($docker_return_array['type'] == 'success') {
  2029. $_SESSION['return'][] = array(
  2030. 'type' => 'success',
  2031. 'log' => array(__FUNCTION__, '*', '*'),
  2032. 'msg' => 'rspamd_ui_pw_set'
  2033. );
  2034. return true;
  2035. }
  2036. else {
  2037. $_SESSION['return'][] = array(
  2038. 'type' => $docker_return_array['type'],
  2039. 'log' => array(__FUNCTION__, '*', '*'),
  2040. 'msg' => $docker_return_array['msg']
  2041. );
  2042. return false;
  2043. }
  2044. }
  2045. else {
  2046. $_SESSION['return'][] = array(
  2047. 'type' => 'danger',
  2048. 'log' => array(__FUNCTION__, '*', '*'),
  2049. 'msg' => 'unknown'
  2050. );
  2051. return false;
  2052. }
  2053. break;
  2054. }
  2055. }
  2056. function cors($action, $data = null) {
  2057. global $redis;
  2058. switch ($action) {
  2059. case "edit":
  2060. if ($_SESSION['mailcow_cc_role'] != "admin") {
  2061. $_SESSION['return'][] = array(
  2062. 'type' => 'danger',
  2063. 'log' => array(__FUNCTION__, $action, $data),
  2064. 'msg' => 'access_denied'
  2065. );
  2066. return false;
  2067. }
  2068. $allowed_origins = isset($data['allowed_origins']) ? $data['allowed_origins'] : array($_SERVER['SERVER_NAME']);
  2069. $allowed_origins = !is_array($allowed_origins) ? array_filter(array_map('trim', explode("\n", $allowed_origins))) : $allowed_origins;
  2070. foreach ($allowed_origins as $origin) {
  2071. if (!filter_var($origin, FILTER_VALIDATE_DOMAIN, FILTER_FLAG_HOSTNAME) && $origin != '*') {
  2072. $_SESSION['return'][] = array(
  2073. 'type' => 'danger',
  2074. 'log' => array(__FUNCTION__, $action, $data),
  2075. 'msg' => 'cors_invalid_origin'
  2076. );
  2077. return false;
  2078. }
  2079. }
  2080. $allowed_methods = isset($data['allowed_methods']) ? $data['allowed_methods'] : array('GET', 'POST', 'PUT', 'DELETE');
  2081. $allowed_methods = !is_array($allowed_methods) ? array_map('trim', preg_split( "/( |,|;|\n)/", $allowed_methods)) : $allowed_methods;
  2082. $available_methods = array('GET', 'POST', 'PUT', 'DELETE');
  2083. foreach ($allowed_methods as $method) {
  2084. if (!in_array($method, $available_methods)) {
  2085. $_SESSION['return'][] = array(
  2086. 'type' => 'danger',
  2087. 'log' => array(__FUNCTION__, $action, $data),
  2088. 'msg' => 'cors_invalid_method'
  2089. );
  2090. return false;
  2091. }
  2092. }
  2093. try {
  2094. $redis->hMSet('CORS_SETTINGS', array(
  2095. 'allowed_origins' => implode(', ', $allowed_origins),
  2096. 'allowed_methods' => implode(', ', $allowed_methods)
  2097. ));
  2098. } catch (RedisException $e) {
  2099. $_SESSION['return'][] = array(
  2100. 'type' => 'danger',
  2101. 'log' => array(__FUNCTION__, $action, $data),
  2102. 'msg' => array('redis_error', $e)
  2103. );
  2104. return false;
  2105. }
  2106. $_SESSION['return'][] = array(
  2107. 'type' => 'success',
  2108. 'log' => array(__FUNCTION__, $action, $data),
  2109. 'msg' => 'cors_headers_edited'
  2110. );
  2111. return true;
  2112. break;
  2113. case "get":
  2114. try {
  2115. $cors_settings = $redis->hMGet('CORS_SETTINGS', array('allowed_origins', 'allowed_methods'));
  2116. } catch (RedisException $e) {
  2117. $_SESSION['return'][] = array(
  2118. 'type' => 'danger',
  2119. 'log' => array(__FUNCTION__, $action, $data),
  2120. 'msg' => array('redis_error', $e)
  2121. );
  2122. }
  2123. $cors_settings = !$cors_settings ? array('allowed_origins' => $_SERVER['SERVER_NAME'], 'allowed_methods' => 'GET, POST, PUT, DELETE') : $cors_settings;
  2124. $cors_settings['allowed_origins'] = empty($cors_settings['allowed_origins']) ? $_SERVER['SERVER_NAME'] : $cors_settings['allowed_origins'];
  2125. $cors_settings['allowed_methods'] = empty($cors_settings['allowed_methods']) ? 'GET, POST, PUT, DELETE, OPTION' : $cors_settings['allowed_methods'];
  2126. return $cors_settings;
  2127. break;
  2128. case "set_headers":
  2129. $cors_settings = cors('get');
  2130. // check if requested origin is in allowed origins
  2131. $allowed_origins = explode(', ', $cors_settings['allowed_origins']);
  2132. $cors_settings['allowed_origins'] = $allowed_origins[0];
  2133. if (in_array('*', $allowed_origins)){
  2134. $cors_settings['allowed_origins'] = '*';
  2135. } else if (in_array($_SERVER['HTTP_ORIGIN'], $allowed_origins)) {
  2136. $cors_settings['allowed_origins'] = $_SERVER['HTTP_ORIGIN'];
  2137. }
  2138. // always allow OPTIONS for preflight request
  2139. $cors_settings["allowed_methods"] = empty($cors_settings["allowed_methods"]) ? 'OPTIONS' : $cors_settings["allowed_methods"] . ', ' . 'OPTIONS';
  2140. header('Access-Control-Allow-Origin: ' . $cors_settings['allowed_origins']);
  2141. header('Access-Control-Allow-Methods: '. $cors_settings['allowed_methods']);
  2142. header('Access-Control-Allow-Headers: Accept, Content-Type, X-Api-Key, Origin');
  2143. // Access-Control settings requested, this is just a preflight request
  2144. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS' &&
  2145. isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']) &&
  2146. isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  2147. $allowed_methods = explode(', ', $cors_settings["allowed_methods"]);
  2148. if (in_array($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'], $allowed_methods, true))
  2149. // method allowed send 200 OK
  2150. http_response_code(200);
  2151. else
  2152. // method not allowed send 405 METHOD NOT ALLOWED
  2153. http_response_code(405);
  2154. exit;
  2155. }
  2156. break;
  2157. }
  2158. }
  2159. function getBaseURL($protocol = null) {
  2160. // Get current server name
  2161. $host = strtolower($_SERVER['SERVER_NAME']);
  2162. // craft allowed server name list
  2163. $mailcow_hostname = strtolower(getenv("MAILCOW_HOSTNAME"));
  2164. $additional_server_names = strtolower(getenv("ADDITIONAL_SERVER_NAMES")) ?: "";
  2165. $additional_server_names = preg_replace('/\s+/', '', $additional_server_names);
  2166. $allowed_server_names = $additional_server_names !== "" ? explode(',', $additional_server_names) : array();
  2167. array_push($allowed_server_names, $mailcow_hostname);
  2168. // Fallback to MAILCOW HOSTNAME if current server name is not in allowed list
  2169. if (!in_array($host, $allowed_server_names)) {
  2170. $host = $mailcow_hostname;
  2171. }
  2172. if (!isset($protocol)) {
  2173. $protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http';
  2174. }
  2175. $base_url = $protocol . '://' . $host;
  2176. return $base_url;
  2177. }
  2178. function uuid4() {
  2179. $data = openssl_random_pseudo_bytes(16);
  2180. $data[6] = chr(ord($data[6]) & 0x0f | 0x40);
  2181. $data[8] = chr(ord($data[8]) & 0x3f | 0x80);
  2182. return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
  2183. }
  2184. function identity_provider($_action = null, $_data = null, $_extra = null) {
  2185. global $pdo;
  2186. global $iam_provider;
  2187. global $iam_settings;
  2188. $data_log = $_data;
  2189. if (isset($data_log['client_secret'])) $data_log['client_secret'] = '*';
  2190. if (isset($data_log['access_token'])) $data_log['access_token'] = '*';
  2191. switch ($_action) {
  2192. case 'get':
  2193. $settings = array();
  2194. $stmt = $pdo->prepare("SELECT * FROM `identity_provider`;");
  2195. $stmt->execute();
  2196. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  2197. foreach($rows as $row){
  2198. switch ($row["key"]) {
  2199. case "redirect_url_extra":
  2200. case "mappers":
  2201. case "templates":
  2202. $settings[$row["key"]] = json_decode($row["value"]);
  2203. break;
  2204. case "use_ssl":
  2205. case "use_tls":
  2206. case "ignore_ssl_errors":
  2207. $settings[$row["key"]] = boolval($row["value"]);
  2208. break;
  2209. default:
  2210. $settings[$row["key"]] = $row["value"];
  2211. break;
  2212. }
  2213. }
  2214. // return default client_scopes for generic-oidc if none is set
  2215. if ($settings["authsource"] == "generic-oidc" && empty($settings["client_scopes"])){
  2216. $settings["client_scopes"] = "openid profile email mailcow_template";
  2217. }
  2218. if ($_extra['hide_sensitive']){
  2219. $settings['client_secret'] = '';
  2220. $settings['access_token'] = '';
  2221. }
  2222. // return default ldap options
  2223. if ($settings["authsource"] == "ldap"){
  2224. $settings['use_ssl'] = !isset($settings['use_ssl']) ? false : $settings['use_ssl'];
  2225. $settings['use_tls'] = !isset($settings['use_tls']) ? false : $settings['use_tls'];
  2226. $settings['ignore_ssl_errors'] = !isset($settings['ignore_ssl_errors']) ? false : $settings['ignore_ssl_errors'];
  2227. }
  2228. return $settings;
  2229. break;
  2230. case 'edit':
  2231. if ($_SESSION['mailcow_cc_role'] != "admin") {
  2232. $_SESSION['return'][] = array(
  2233. 'type' => 'danger',
  2234. 'log' => array(__FUNCTION__, $_action, $_data),
  2235. 'msg' => 'access_denied'
  2236. );
  2237. return false;
  2238. }
  2239. if (!isset($_data['authsource'])){
  2240. $_SESSION['return'][] = array(
  2241. 'type' => 'danger',
  2242. 'log' => array(__FUNCTION__, $_action, $data_log),
  2243. 'msg' => array('required_data_missing', '')
  2244. );
  2245. return false;
  2246. }
  2247. $available_authsources = array(
  2248. "keycloak",
  2249. "generic-oidc",
  2250. "ldap"
  2251. );
  2252. $_data['authsource'] = strtolower($_data['authsource']);
  2253. if (!in_array($_data['authsource'], $available_authsources)){
  2254. $_SESSION['return'][] = array(
  2255. 'type' => 'danger',
  2256. 'log' => array(__FUNCTION__, $_action, $data_log),
  2257. 'msg' => array('invalid_authsource', $setting)
  2258. );
  2259. return false;
  2260. }
  2261. $stmt = $pdo->prepare("SELECT * FROM `mailbox`
  2262. WHERE `authsource` != 'mailcow'
  2263. AND `authsource` IS NOT NULL
  2264. AND `authsource` != :authsource");
  2265. $stmt->execute(array(':authsource' => $_data['authsource']));
  2266. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  2267. if ($rows) {
  2268. $_SESSION['return'][] = array(
  2269. 'type' => 'danger',
  2270. 'log' => array(__FUNCTION__, $_action, $data_log),
  2271. 'msg' => array('authsource_in_use', $setting)
  2272. );
  2273. return false;
  2274. }
  2275. $_data['ignore_ssl_error'] = isset($_data['ignore_ssl_error']) ? boolval($_data['ignore_ssl_error']) : false;
  2276. switch ($_data['authsource']) {
  2277. case "keycloak":
  2278. $_data['server_url'] = (!empty($_data['server_url'])) ? rtrim($_data['server_url'], '/') : null;
  2279. $_data['mailpassword_flow'] = isset($_data['mailpassword_flow']) ? intval($_data['mailpassword_flow']) : 0;
  2280. $_data['periodic_sync'] = isset($_data['periodic_sync']) ? intval($_data['periodic_sync']) : 0;
  2281. $_data['import_users'] = isset($_data['import_users']) ? intval($_data['import_users']) : 0;
  2282. $_data['sync_interval'] = (!empty($_data['sync_interval'])) ? intval($_data['sync_interval']) : 15;
  2283. $_data['sync_interval'] = $_data['sync_interval'] < 1 ? 1 : $_data['sync_interval'];
  2284. $required_settings = array('authsource', 'server_url', 'realm', 'client_id', 'client_secret', 'redirect_url', 'version', 'mailpassword_flow', 'periodic_sync', 'import_users', 'sync_interval', 'ignore_ssl_error');
  2285. break;
  2286. case "generic-oidc":
  2287. $_data['authorize_url'] = (!empty($_data['authorize_url'])) ? $_data['authorize_url'] : null;
  2288. $_data['token_url'] = (!empty($_data['token_url'])) ? $_data['token_url'] : null;
  2289. $_data['userinfo_url'] = (!empty($_data['userinfo_url'])) ? $_data['userinfo_url'] : null;
  2290. $_data['client_scopes'] = (!empty($_data['client_scopes'])) ? $_data['client_scopes'] : "openid profile email mailcow_template";
  2291. $required_settings = array('authsource', 'authorize_url', 'token_url', 'client_id', 'client_secret', 'redirect_url', 'userinfo_url', 'client_scopes', 'ignore_ssl_error');
  2292. break;
  2293. case "ldap":
  2294. $_data['host'] = (!empty($_data['host'])) ? str_replace(" ", "", $_data['host']) : "";
  2295. $_data['port'] = (!empty($_data['port'])) ? intval($_data['port']) : 389;
  2296. $_data['username_field'] = (!empty($_data['username_field'])) ? strtolower($_data['username_field']) : "mail";
  2297. $_data['attribute_field'] = (!empty($_data['attribute_field'])) ? strtolower($_data['attribute_field']) : "";
  2298. $_data['filter'] = (!empty($_data['filter'])) ? $_data['filter'] : "";
  2299. $_data['periodic_sync'] = isset($_data['periodic_sync']) ? intval($_data['periodic_sync']) : 0;
  2300. $_data['import_users'] = isset($_data['import_users']) ? intval($_data['import_users']) : 0;
  2301. $_data['use_ssl'] = isset($_data['use_ssl']) ? boolval($_data['use_ssl']) : false;
  2302. $_data['use_tls'] = isset($_data['use_tls']) && !$_data['use_ssl'] ? boolval($_data['use_tls']) : false;
  2303. $_data['sync_interval'] = (!empty($_data['sync_interval'])) ? intval($_data['sync_interval']) : 15;
  2304. $_data['sync_interval'] = $_data['sync_interval'] < 1 ? 1 : $_data['sync_interval'];
  2305. $required_settings = array('authsource', 'host', 'port', 'basedn', 'username_field', 'filter', 'attribute_field', 'binddn', 'bindpass', 'periodic_sync', 'import_users', 'sync_interval', 'use_ssl', 'use_tls', 'ignore_ssl_error');
  2306. break;
  2307. }
  2308. $pdo->beginTransaction();
  2309. $stmt = $pdo->prepare("INSERT INTO identity_provider (`key`, `value`) VALUES (:key, :value) ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);");
  2310. // add connection settings
  2311. foreach($required_settings as $setting){
  2312. if (!isset($_data[$setting])){
  2313. $_SESSION['return'][] = array(
  2314. 'type' => 'danger',
  2315. 'log' => array(__FUNCTION__, $_action, $data_log),
  2316. 'msg' => array('required_data_missing', $setting)
  2317. );
  2318. $pdo->rollback();
  2319. return false;
  2320. }
  2321. $stmt->bindParam(':key', $setting);
  2322. $stmt->bindParam(':value', $_data[$setting]);
  2323. $stmt->execute();
  2324. }
  2325. $pdo->commit();
  2326. // add redirect_url_extra
  2327. if (isset($_data['redirect_url_extra'])){
  2328. $_data['redirect_url_extra'] = (!is_array($_data['redirect_url_extra'])) ? array($_data['redirect_url_extra']) : $_data['redirect_url_extra'];
  2329. $redirect_url_extra = array_filter($_data['redirect_url_extra']);
  2330. $redirect_url_extra = json_encode($redirect_url_extra);
  2331. $stmt = $pdo->prepare("INSERT INTO identity_provider (`key`, `value`) VALUES ('redirect_url_extra', :value) ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);");
  2332. $stmt->bindParam(':value', $redirect_url_extra);
  2333. $stmt->execute();
  2334. }
  2335. // add default template
  2336. if (isset($_data['default_template'])) {
  2337. $_data['default_template'] = (empty($_data['default_template'])) ? "" : $_data['default_template'];
  2338. $stmt = $pdo->prepare("INSERT INTO identity_provider (`key`, `value`) VALUES ('default_template', :value) ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);");
  2339. $stmt->bindParam(':value', $_data['default_template']);
  2340. $stmt->execute();
  2341. }
  2342. // add mappers
  2343. if (isset($_data['mappers']) && isset($_data['templates'])){
  2344. $_data['mappers'] = (!is_array($_data['mappers'])) ? array($_data['mappers']) : $_data['mappers'];
  2345. $_data['templates'] = (!is_array($_data['templates'])) ? array($_data['templates']) : $_data['templates'];
  2346. $mappers = array_filter($_data['mappers']);
  2347. $templates = array_filter($_data['templates']);
  2348. if (count($mappers) == count($templates)){
  2349. $mappers = json_encode($mappers);
  2350. $templates = json_encode($templates);
  2351. $stmt = $pdo->prepare("INSERT INTO identity_provider (`key`, `value`) VALUES ('mappers', :value) ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);");
  2352. $stmt->bindParam(':value', $mappers);
  2353. $stmt->execute();
  2354. $stmt = $pdo->prepare("INSERT INTO identity_provider (`key`, `value`) VALUES ('templates', :value) ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);");
  2355. $stmt->bindParam(':value', $templates);
  2356. $stmt->execute();
  2357. }
  2358. }
  2359. // delete old access_token
  2360. $stmt = $pdo->query("INSERT INTO identity_provider (`key`, `value`) VALUES ('access_token', '') ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);");
  2361. $_SESSION['return'][] = array(
  2362. 'type' => 'success',
  2363. 'log' => array(__FUNCTION__, $_action, $data_log),
  2364. 'msg' => array('object_modified', '')
  2365. );
  2366. return true;
  2367. break;
  2368. case 'test':
  2369. if ($_SESSION['mailcow_cc_role'] != "admin") {
  2370. $_SESSION['return'][] = array(
  2371. 'type' => 'danger',
  2372. 'log' => array(__FUNCTION__, $_action, $_data),
  2373. 'msg' => 'access_denied'
  2374. );
  2375. return false;
  2376. }
  2377. switch ($_data['authsource']) {
  2378. case 'keycloak':
  2379. $url = "{$_data['server_url']}/realms/{$_data['realm']}/protocol/openid-connect/token";
  2380. $req = http_build_query(array(
  2381. 'grant_type' => 'client_credentials',
  2382. 'client_id' => $_data['client_id'],
  2383. 'client_secret' => $_data['client_secret']
  2384. ));
  2385. $curl = curl_init();
  2386. curl_setopt($curl, CURLOPT_URL, $url);
  2387. curl_setopt($curl, CURLOPT_TIMEOUT, 7);
  2388. curl_setopt($curl, CURLOPT_POST, 1);
  2389. curl_setopt($curl, CURLOPT_POSTFIELDS, $req);
  2390. curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
  2391. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  2392. if ($_data['ignore_ssl_error'] == "1"){
  2393. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  2394. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  2395. }
  2396. $res = curl_exec($curl);
  2397. $code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  2398. curl_close ($curl);
  2399. if ($code != 200) {
  2400. return false;
  2401. }
  2402. break;
  2403. case 'generic-oidc':
  2404. $url = $_data['token_url'];
  2405. $curl = curl_init();
  2406. curl_setopt($curl, CURLOPT_URL, $url);
  2407. curl_setopt($curl, CURLOPT_TIMEOUT, 7);
  2408. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  2409. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "OPTIONS");
  2410. if ($_data['ignore_ssl_error'] == "1"){
  2411. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  2412. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  2413. }
  2414. $res = curl_exec($curl);
  2415. $code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  2416. curl_close ($curl);
  2417. if ($code != 200) {
  2418. return false;
  2419. }
  2420. break;
  2421. case 'ldap':
  2422. if (!$_data['host'] || !$_data['port'] || !$_data['basedn'] ||
  2423. !$_data['binddn'] || !$_data['bindpass']){
  2424. return false;
  2425. }
  2426. $_data['use_ssl'] = isset($_data['use_ssl']) ? boolval($_data['use_ssl']) : false;
  2427. $_data['use_tls'] = isset($_data['use_tls']) && !$_data['use_ssl'] ? boolval($_data['use_tls']) : false;
  2428. $_data['ignore_ssl_error'] = isset($_data['ignore_ssl_error']) ? boolval($_data['ignore_ssl_error']) : false;
  2429. $options = array();
  2430. if ($_data['ignore_ssl_error']) {
  2431. $options[LDAP_OPT_X_TLS_REQUIRE_CERT] = LDAP_OPT_X_TLS_NEVER;
  2432. }
  2433. $provider = new \LdapRecord\Connection([
  2434. 'hosts' => explode(",", $_data['host']),
  2435. 'port' => $_data['port'],
  2436. 'base_dn' => $_data['basedn'],
  2437. 'username' => $_data['binddn'],
  2438. 'password' => $_data['bindpass'],
  2439. 'use_ssl' => $_data['use_ssl'],
  2440. 'use_tls' => $_data['use_tls'],
  2441. 'options' => $options
  2442. ]);
  2443. try {
  2444. $provider->connect();
  2445. } catch (Throwable $e) {
  2446. return false;
  2447. }
  2448. break;
  2449. }
  2450. return true;
  2451. break;
  2452. case "delete":
  2453. if ($_SESSION['mailcow_cc_role'] != "admin") {
  2454. $_SESSION['return'][] = array(
  2455. 'type' => 'danger',
  2456. 'log' => array(__FUNCTION__, $_action, $_data),
  2457. 'msg' => 'access_denied'
  2458. );
  2459. return false;
  2460. }
  2461. $stmt = $pdo->query("SELECT * FROM `mailbox`
  2462. WHERE `authsource` != 'mailcow'
  2463. AND `authsource` IS NOT NULL");
  2464. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  2465. if ($rows) {
  2466. $_SESSION['return'][] = array(
  2467. 'type' => 'danger',
  2468. 'log' => array(__FUNCTION__, $_action, $data_log),
  2469. 'msg' => array('authsource_in_use', $setting)
  2470. );
  2471. return false;
  2472. }
  2473. $stmt = $pdo->query("DELETE FROM identity_provider;");
  2474. $_SESSION['return'][] = array(
  2475. 'type' => 'success',
  2476. 'log' => array(__FUNCTION__, $_action, $data_log),
  2477. 'msg' => array('item_deleted', '')
  2478. );
  2479. return true;
  2480. break;
  2481. case "init":
  2482. $settings = identity_provider('get');
  2483. $provider = null;
  2484. switch ($settings['authsource']) {
  2485. case "keycloak":
  2486. if ($settings['server_url'] && $settings['realm'] && $settings['client_id'] &&
  2487. $settings['client_secret'] && $settings['redirect_url'] && $settings['version']){
  2488. $guzzyClient = new GuzzleHttp\Client([
  2489. 'defaults' => [
  2490. \GuzzleHttp\RequestOptions::CONNECT_TIMEOUT => 5,
  2491. \GuzzleHttp\RequestOptions::ALLOW_REDIRECTS => true],
  2492. \GuzzleHttp\RequestOptions::VERIFY => !$settings['ignore_ssl_error'],
  2493. ]
  2494. );
  2495. $provider = new Stevenmaguire\OAuth2\Client\Provider\Keycloak([
  2496. 'authServerUrl' => $settings['server_url'],
  2497. 'realm' => $settings['realm'],
  2498. 'clientId' => $settings['client_id'],
  2499. 'clientSecret' => $settings['client_secret'],
  2500. 'redirectUri' => $settings['redirect_url'],
  2501. 'version' => $settings['version'],
  2502. // 'encryptionAlgorithm' => 'RS256', // optional
  2503. // 'encryptionKeyPath' => '../key.pem' // optional
  2504. // 'encryptionKey' => 'contents_of_key_or_certificate' // optional
  2505. ]);
  2506. $provider->setHttpClient($guzzyClient);
  2507. }
  2508. break;
  2509. case "generic-oidc":
  2510. if ($settings['client_id'] && $settings['client_secret'] && $settings['redirect_url'] &&
  2511. $settings['authorize_url'] && $settings['token_url'] && $settings['userinfo_url']){
  2512. $guzzyClient = new GuzzleHttp\Client([
  2513. 'defaults' => [
  2514. \GuzzleHttp\RequestOptions::CONNECT_TIMEOUT => 5,
  2515. \GuzzleHttp\RequestOptions::ALLOW_REDIRECTS => true],
  2516. \GuzzleHttp\RequestOptions::VERIFY => !$settings['ignore_ssl_error'],
  2517. ]
  2518. );
  2519. $provider = new \League\OAuth2\Client\Provider\GenericProvider([
  2520. 'clientId' => $settings['client_id'],
  2521. 'clientSecret' => $settings['client_secret'],
  2522. 'redirectUri' => $settings['redirect_url'],
  2523. 'urlAuthorize' => $settings['authorize_url'],
  2524. 'urlAccessToken' => $settings['token_url'],
  2525. 'urlResourceOwnerDetails' => $settings['userinfo_url'],
  2526. 'scopes' => $settings['client_scopes']
  2527. ]);
  2528. $provider->setHttpClient($guzzyClient);
  2529. }
  2530. break;
  2531. case "ldap":
  2532. if ($settings['host'] && $settings['port'] && $settings['basedn'] &&
  2533. $settings['binddn'] && $settings['bindpass']){
  2534. $options = array();
  2535. if ($settings['ignore_ssl_error']) {
  2536. $options[LDAP_OPT_X_TLS_REQUIRE_CERT] = LDAP_OPT_X_TLS_NEVER;
  2537. }
  2538. $provider = new \LdapRecord\Connection([
  2539. 'hosts' => explode(",", $settings['host']),
  2540. 'port' => $settings['port'],
  2541. 'base_dn' => $settings['basedn'],
  2542. 'username' => $settings['binddn'],
  2543. 'password' => $settings['bindpass'],
  2544. 'use_ssl' => $settings['use_ssl'],
  2545. 'use_tls' => $settings['use_tls'],
  2546. 'options' => $options
  2547. ]);
  2548. try {
  2549. $provider->connect();
  2550. } catch (Throwable $e) {
  2551. $provider = null;
  2552. }
  2553. }
  2554. break;
  2555. }
  2556. return $provider;
  2557. break;
  2558. case "verify-sso":
  2559. if ($iam_settings['authsource'] != 'keycloak' && $iam_settings['authsource'] != 'generic-oidc'){
  2560. $_SESSION['return'][] = array(
  2561. 'type' => 'danger',
  2562. 'log' => array(__FUNCTION__, "no OIDC provider configured"),
  2563. 'msg' => 'login_failed'
  2564. );
  2565. return false;
  2566. }
  2567. try {
  2568. $token = $iam_provider->getAccessToken('authorization_code', ['code' => $_GET['code']]);
  2569. $plain_token = $token->getToken();
  2570. $plain_refreshtoken = $token->getRefreshToken();
  2571. $info = $iam_provider->getResourceOwner($token)->toArray();
  2572. } catch (Throwable $e) {
  2573. $_SESSION['return'][] = array(
  2574. 'type' => 'danger',
  2575. 'log' => array(__FUNCTION__, $e->getMessage()),
  2576. 'msg' => 'login_failed'
  2577. );
  2578. return false;
  2579. }
  2580. // check if email address is given
  2581. if (empty($info['email'])) {
  2582. $_SESSION['return'][] = array(
  2583. 'type' => 'danger',
  2584. 'log' => array(__FUNCTION__, 'No email address found for user'),
  2585. 'msg' => 'login_failed'
  2586. );
  2587. return false;
  2588. }
  2589. // get mapped template
  2590. $user_template = $info['mailcow_template'];
  2591. $mapper_key = array_search($user_template, $iam_settings['mappers']);
  2592. // token valid, get mailbox
  2593. $stmt = $pdo->prepare("SELECT
  2594. mailbox.*,
  2595. domain.active AS d_active
  2596. FROM `mailbox`
  2597. INNER JOIN domain on mailbox.domain = domain.domain
  2598. WHERE `kind` NOT REGEXP 'location|thing|group'
  2599. AND `username` = :user");
  2600. $stmt->execute(array(':user' => $info['email']));
  2601. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  2602. if ($row){
  2603. if (!in_array($row['authsource'], array("keycloak", "generic-oidc"))) {
  2604. clear_session();
  2605. $_SESSION['return'][] = array(
  2606. 'type' => 'danger',
  2607. 'log' => array(__FUNCTION__, $info['email'], "The user's authentication source is not of type OIDC"),
  2608. 'msg' => 'login_failed'
  2609. );
  2610. return false;
  2611. }
  2612. if ($mapper_key !== false) {
  2613. // update user
  2614. $_SESSION['access_all_exception'] = '1';
  2615. mailbox('edit', 'mailbox_from_template', array(
  2616. 'username' => $info['email'],
  2617. 'name' => $info['name'],
  2618. 'template' => $iam_settings['templates'][$mapper_key]
  2619. ));
  2620. $_SESSION['access_all_exception'] = '0';
  2621. // get updated row
  2622. $stmt = $pdo->prepare("SELECT
  2623. mailbox.*,
  2624. domain.active AS d_active
  2625. FROM `mailbox`
  2626. INNER JOIN domain on mailbox.domain = domain.domain
  2627. WHERE `kind` NOT REGEXP 'location|thing|group'
  2628. AND `username` = :user");
  2629. $stmt->execute(array(':user' => $info['email']));
  2630. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  2631. }
  2632. if ($row['active'] != 1 || $row['d_active'] != 1) {
  2633. clear_session();
  2634. $_SESSION['return'][] = array(
  2635. 'type' => 'danger',
  2636. 'log' => array(__FUNCTION__, $info['email'], 'Domain or mailbox is inactive'),
  2637. 'msg' => 'login_failed'
  2638. );
  2639. return false;
  2640. }
  2641. set_user_loggedin_session($info['email']);
  2642. $_SESSION['iam_token'] = $plain_token;
  2643. $_SESSION['iam_refresh_token'] = $plain_refreshtoken;
  2644. $_SESSION['return'][] = array(
  2645. 'type' => 'success',
  2646. 'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
  2647. 'msg' => array('logged_in_as', $_SESSION['mailcow_cc_username'])
  2648. );
  2649. return true;
  2650. }
  2651. if (empty($iam_settings['mappers']) || empty($user_template) || $mapper_key === false){
  2652. if (!empty($iam_settings['default_template'])) {
  2653. $mbox_template = $iam_settings['default_template'];
  2654. } else {
  2655. clear_session();
  2656. $_SESSION['return'][] = array(
  2657. 'type' => 'danger',
  2658. 'log' => array(__FUNCTION__, $info['email'], 'No matching attribute mapping was found'),
  2659. 'msg' => 'login_failed'
  2660. );
  2661. return false;
  2662. }
  2663. } else {
  2664. $mbox_template = $iam_settings['templates'][$mapper_key];
  2665. }
  2666. // create mailbox
  2667. $_SESSION['access_all_exception'] = '1';
  2668. $create_res = mailbox('add', 'mailbox_from_template', array(
  2669. 'domain' => explode('@', $info['email'])[1],
  2670. 'local_part' => explode('@', $info['email'])[0],
  2671. 'name' => $info['name'],
  2672. 'authsource' => $iam_settings['authsource'],
  2673. 'template' => $mbox_template
  2674. ));
  2675. $_SESSION['access_all_exception'] = '0';
  2676. if (!$create_res){
  2677. clear_session();
  2678. $_SESSION['return'][] = array(
  2679. 'type' => 'danger',
  2680. 'log' => array(__FUNCTION__, $info['email'], 'Could not create mailbox on login'),
  2681. 'msg' => 'login_failed'
  2682. );
  2683. return false;
  2684. }
  2685. // double check if mailbox and domain is active
  2686. $stmt = $pdo->prepare("SELECT * FROM `mailbox`
  2687. INNER JOIN domain on mailbox.domain = domain.domain
  2688. WHERE `kind` NOT REGEXP 'location|thing|group'
  2689. AND `mailbox`.`active`='1'
  2690. AND `domain`.`active`='1'
  2691. AND `username` = :user");
  2692. $stmt->execute(array(':user' => $info['email']));
  2693. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  2694. if (empty($row)) {
  2695. clear_session();
  2696. $_SESSION['return'][] = array(
  2697. 'type' => 'danger',
  2698. 'log' => array(__FUNCTION__, $info['email'], 'Domain or mailbox is inactive'),
  2699. 'msg' => 'login_failed'
  2700. );
  2701. return false;
  2702. }
  2703. set_user_loggedin_session($info['email']);
  2704. $_SESSION['iam_token'] = $plain_token;
  2705. $_SESSION['iam_refresh_token'] = $plain_refreshtoken;
  2706. $_SESSION['return'][] = array(
  2707. 'type' => 'success',
  2708. 'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
  2709. 'msg' => array('logged_in_as', $_SESSION['mailcow_cc_username'])
  2710. );
  2711. return true;
  2712. break;
  2713. case "refresh-token":
  2714. try {
  2715. $token = $iam_provider->getAccessToken('refresh_token', ['refresh_token' => $_SESSION['iam_refresh_token']]);
  2716. $plain_token = $token->getToken();
  2717. $plain_refreshtoken = $token->getRefreshToken();
  2718. $info = $iam_provider->getResourceOwner($token)->toArray();
  2719. } catch (Throwable $e) {
  2720. clear_session();
  2721. $_SESSION['return'][] = array(
  2722. 'type' => 'danger',
  2723. 'log' => array(__FUNCTION__),
  2724. 'msg' => array('refresh_login_failed', $e->getMessage())
  2725. );
  2726. return false;
  2727. }
  2728. if (empty($info['email'])){
  2729. clear_session();
  2730. $_SESSION['return'][] = array(
  2731. 'type' => 'danger',
  2732. 'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
  2733. 'msg' => 'refresh_login_failed'
  2734. );
  2735. return false;
  2736. }
  2737. set_user_loggedin_session($info['email']);
  2738. $_SESSION['iam_token'] = $plain_token;
  2739. $_SESSION['iam_refresh_token'] = $plain_refreshtoken;
  2740. return true;
  2741. break;
  2742. case "get-redirect":
  2743. if ($iam_settings['authsource'] != 'keycloak' && $iam_settings['authsource'] != 'generic-oidc')
  2744. return false;
  2745. $options = [];
  2746. if (isset($iam_settings['redirect_url_extra'])) {
  2747. // check if the current domain is used in an extra redirect URL
  2748. $targetDomain = strtolower($_SERVER['HTTP_HOST']);
  2749. foreach ($iam_settings['redirect_url_extra'] as $testUrl) {
  2750. $testUrlParsed = parse_url($testUrl);
  2751. if (isset($testUrlParsed['host']) && strtolower($testUrlParsed['host']) == $targetDomain) {
  2752. $options['redirect_uri'] = $testUrl;
  2753. break;
  2754. }
  2755. }
  2756. }
  2757. $authUrl = $iam_provider->getAuthorizationUrl($options);
  2758. $_SESSION['oauth2state'] = $iam_provider->getState();
  2759. return $authUrl;
  2760. break;
  2761. case "get-keycloak-admin-token":
  2762. // get access_token for service account of mailcow client
  2763. if ($iam_settings['authsource'] !== 'keycloak') return false;
  2764. if (isset($iam_settings['access_token'])) {
  2765. // check if access_token is valid
  2766. $url = "{$iam_settings['server_url']}/realms/{$iam_settings['realm']}/protocol/openid-connect/token/introspect";
  2767. $req = http_build_query(array(
  2768. 'token' => $iam_settings['access_token'],
  2769. 'client_id' => $iam_settings['client_id'],
  2770. 'client_secret' => $iam_settings['client_secret']
  2771. ));
  2772. $curl = curl_init();
  2773. curl_setopt($curl, CURLOPT_URL, $url);
  2774. curl_setopt($curl, CURLOPT_TIMEOUT, 7);
  2775. curl_setopt($curl, CURLOPT_POST, 1);
  2776. curl_setopt($curl, CURLOPT_POSTFIELDS, $req);
  2777. curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
  2778. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  2779. curl_setopt($curl, CURLOPT_TIMEOUT, 5);
  2780. $res = json_decode(curl_exec($curl), true);
  2781. $code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  2782. curl_close ($curl);
  2783. if ($code == 200 && $res['active'] == true) {
  2784. // token is valid
  2785. return $iam_settings['access_token'];
  2786. }
  2787. }
  2788. $url = "{$iam_settings['server_url']}/realms/{$iam_settings['realm']}/protocol/openid-connect/token";
  2789. $req = http_build_query(array(
  2790. 'grant_type' => 'client_credentials',
  2791. 'client_id' => $iam_settings['client_id'],
  2792. 'client_secret' => $iam_settings['client_secret']
  2793. ));
  2794. $curl = curl_init();
  2795. curl_setopt($curl, CURLOPT_URL, $url);
  2796. curl_setopt($curl, CURLOPT_TIMEOUT, 7);
  2797. curl_setopt($curl, CURLOPT_POST, 1);
  2798. curl_setopt($curl, CURLOPT_POSTFIELDS, $req);
  2799. curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
  2800. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  2801. curl_setopt($curl, CURLOPT_TIMEOUT, 5);
  2802. $res = json_decode(curl_exec($curl), true);
  2803. $code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  2804. curl_close ($curl);
  2805. if ($code != 200) {
  2806. return false;
  2807. }
  2808. $stmt = $pdo->prepare("INSERT INTO identity_provider (`key`, `value`) VALUES (:key, :value) ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);");
  2809. $stmt->execute(array(
  2810. ':key' => 'access_token',
  2811. ':value' => $res['access_token']
  2812. ));
  2813. return $res['access_token'];
  2814. break;
  2815. }
  2816. }
  2817. function reset_password($action, $data = null) {
  2818. global $pdo;
  2819. global $redis;
  2820. global $mailcow_hostname;
  2821. global $PW_RESET_TOKEN_LIMIT;
  2822. global $PW_RESET_TOKEN_LIFETIME;
  2823. $_data_log = $data;
  2824. if (isset($_data_log['new_password'])) $_data_log['new_password'] = '*';
  2825. if (isset($_data_log['new_password2'])) $_data_log['new_password2'] = '*';
  2826. switch ($action) {
  2827. case 'check':
  2828. $token = $data;
  2829. $stmt = $pdo->prepare("SELECT `t1`.`username` FROM `reset_password` AS `t1` JOIN `mailbox` AS `t2` ON `t1`.`username` = `t2`.`username` WHERE `t1`.`token` = :token AND `t1`.`created` > DATE_SUB(NOW(), INTERVAL :lifetime MINUTE) AND `t2`.`active` = 1 AND `t2`.`authsource` = 'mailcow';");
  2830. $stmt->execute(array(
  2831. ':token' => preg_replace('/[^a-zA-Z0-9-]/', '', $token),
  2832. ':lifetime' => $PW_RESET_TOKEN_LIFETIME
  2833. ));
  2834. $return = $stmt->fetch(PDO::FETCH_ASSOC);
  2835. return empty($return['username']) ? false : $return['username'];
  2836. break;
  2837. case 'issue':
  2838. $username = $data;
  2839. // perform cleanup
  2840. $stmt = $pdo->prepare("DELETE FROM `reset_password` WHERE created < DATE_SUB(NOW(), INTERVAL :lifetime MINUTE);");
  2841. $stmt->execute(array(':lifetime' => $PW_RESET_TOKEN_LIFETIME));
  2842. if (filter_var($username, FILTER_VALIDATE_EMAIL) === false) {
  2843. $_SESSION['return'][] = array(
  2844. 'type' => 'danger',
  2845. 'log' => array(__FUNCTION__, $action, $_data_log),
  2846. 'msg' => 'access_denied'
  2847. );
  2848. return false;
  2849. }
  2850. $pw_reset_notification = reset_password('get_notification', 'raw');
  2851. if (!$pw_reset_notification) return false;
  2852. if (empty($pw_reset_notification['from']) || empty($pw_reset_notification['subject'])) {
  2853. $_SESSION['return'][] = array(
  2854. 'type' => 'danger',
  2855. 'log' => array(__FUNCTION__, $action, $_data_log),
  2856. 'msg' => 'password_reset_na'
  2857. );
  2858. return false;
  2859. }
  2860. $stmt = $pdo->prepare("SELECT * FROM `mailbox`
  2861. WHERE `username` = :username AND authsource = 'mailcow'");
  2862. $stmt->execute(array(':username' => $username));
  2863. $mailbox_data = $stmt->fetch(PDO::FETCH_ASSOC);
  2864. if (empty($mailbox_data)) {
  2865. $_SESSION['return'][] = array(
  2866. 'type' => 'danger',
  2867. 'log' => array(__FUNCTION__, $action, $_data_log),
  2868. 'msg' => 'password_reset_invalid_user'
  2869. );
  2870. return false;
  2871. }
  2872. $mailbox_attr = json_decode($mailbox_data['attributes'], true);
  2873. if (empty($mailbox_attr['recovery_email']) || filter_var($mailbox_attr['recovery_email'], FILTER_VALIDATE_EMAIL) === false) {
  2874. $_SESSION['return'][] = array(
  2875. 'type' => 'danger',
  2876. 'log' => array(__FUNCTION__, $action, $_data_log),
  2877. 'msg' => "password_reset_invalid_user"
  2878. );
  2879. return false;
  2880. }
  2881. $stmt = $pdo->prepare("SELECT * FROM `reset_password`
  2882. WHERE `username` = :username");
  2883. $stmt->execute(array(':username' => $username));
  2884. $generated_token_count = count($stmt->fetchAll(PDO::FETCH_ASSOC));
  2885. if ($generated_token_count >= $PW_RESET_TOKEN_LIMIT) {
  2886. $_SESSION['return'][] = array(
  2887. 'type' => 'danger',
  2888. 'log' => array(__FUNCTION__, $action, $_data_log),
  2889. 'msg' => "reset_token_limit_exceeded"
  2890. );
  2891. return false;
  2892. }
  2893. $token = implode('-', array(
  2894. strtoupper(bin2hex(random_bytes(3))),
  2895. strtoupper(bin2hex(random_bytes(3))),
  2896. strtoupper(bin2hex(random_bytes(3))),
  2897. strtoupper(bin2hex(random_bytes(3))),
  2898. strtoupper(bin2hex(random_bytes(3)))
  2899. ));
  2900. $stmt = $pdo->prepare("INSERT INTO `reset_password` (`username`, `token`)
  2901. VALUES (:username, :token)");
  2902. $stmt->execute(array(
  2903. ':username' => $username,
  2904. ':token' => $token
  2905. ));
  2906. $reset_link = getBaseURL() . "/reset-password?token=" . $token;
  2907. $request_date = new DateTime();
  2908. $locale_date = locale_get_default();
  2909. $date_formatter = new IntlDateFormatter(
  2910. $locale_date,
  2911. IntlDateFormatter::FULL,
  2912. IntlDateFormatter::FULL
  2913. );
  2914. $formatted_request_date = $date_formatter->format($request_date);
  2915. // set template vars
  2916. // subject
  2917. $pw_reset_notification['subject'] = str_replace('{{hostname}}', $mailcow_hostname, $pw_reset_notification['subject']);
  2918. $pw_reset_notification['subject'] = str_replace('{{link}}', $reset_link, $pw_reset_notification['subject']);
  2919. $pw_reset_notification['subject'] = str_replace('{{username}}', $username, $pw_reset_notification['subject']);
  2920. $pw_reset_notification['subject'] = str_replace('{{username2}}', $mailbox_attr['recovery_email'], $pw_reset_notification['subject']);
  2921. $pw_reset_notification['subject'] = str_replace('{{date}}', $formatted_request_date, $pw_reset_notification['subject']);
  2922. $pw_reset_notification['subject'] = str_replace('{{token_lifetime}}', $PW_RESET_TOKEN_LIFETIME, $pw_reset_notification['subject']);
  2923. // text
  2924. $pw_reset_notification['text_tmpl'] = str_replace('{{hostname}}', $mailcow_hostname, $pw_reset_notification['text_tmpl']);
  2925. $pw_reset_notification['text_tmpl'] = str_replace('{{link}}', $reset_link, $pw_reset_notification['text_tmpl']);
  2926. $pw_reset_notification['text_tmpl'] = str_replace('{{username}}', $username, $pw_reset_notification['text_tmpl']);
  2927. $pw_reset_notification['text_tmpl'] = str_replace('{{username2}}', $mailbox_attr['recovery_email'], $pw_reset_notification['text_tmpl']);
  2928. $pw_reset_notification['text_tmpl'] = str_replace('{{date}}', $formatted_request_date, $pw_reset_notification['text_tmpl']);
  2929. $pw_reset_notification['text_tmpl'] = str_replace('{{token_lifetime}}', $PW_RESET_TOKEN_LIFETIME, $pw_reset_notification['text_tmpl']);
  2930. // html
  2931. $pw_reset_notification['html_tmpl'] = str_replace('{{hostname}}', $mailcow_hostname, $pw_reset_notification['html_tmpl']);
  2932. $pw_reset_notification['html_tmpl'] = str_replace('{{link}}', $reset_link, $pw_reset_notification['html_tmpl']);
  2933. $pw_reset_notification['html_tmpl'] = str_replace('{{username}}', $username, $pw_reset_notification['html_tmpl']);
  2934. $pw_reset_notification['html_tmpl'] = str_replace('{{username2}}', $mailbox_attr['recovery_email'], $pw_reset_notification['html_tmpl']);
  2935. $pw_reset_notification['html_tmpl'] = str_replace('{{date}}', $formatted_request_date, $pw_reset_notification['html_tmpl']);
  2936. $pw_reset_notification['html_tmpl'] = str_replace('{{token_lifetime}}', $PW_RESET_TOKEN_LIFETIME, $pw_reset_notification['html_tmpl']);
  2937. $email_sent = reset_password('send_mail', array(
  2938. "from" => $pw_reset_notification['from'],
  2939. "to" => $mailbox_attr['recovery_email'],
  2940. "subject" => $pw_reset_notification['subject'],
  2941. "text" => $pw_reset_notification['text_tmpl'],
  2942. "html" => $pw_reset_notification['html_tmpl']
  2943. ));
  2944. if (!$email_sent){
  2945. $_SESSION['return'][] = array(
  2946. 'type' => 'danger',
  2947. 'log' => array(__FUNCTION__, $action, $_data_log),
  2948. 'msg' => "recovery_email_failed"
  2949. );
  2950. return false;
  2951. }
  2952. list($localPart, $domainPart) = explode('@', $mailbox_attr['recovery_email']);
  2953. if (strlen($localPart) > 1) {
  2954. $maskedLocalPart = $localPart[0] . str_repeat('*', strlen($localPart) - 1);
  2955. } else {
  2956. $maskedLocalPart = "*";
  2957. }
  2958. $_SESSION['return'][] = array(
  2959. 'type' => 'success',
  2960. 'log' => array(__FUNCTION__, $action, $_data_log),
  2961. 'msg' => array("recovery_email_sent", $maskedLocalPart . '@' . $domainPart)
  2962. );
  2963. return array(
  2964. "username" => $username,
  2965. "issue" => "success"
  2966. );
  2967. break;
  2968. case 'reset':
  2969. $token = $data['token'];
  2970. $new_password = $data['new_password'];
  2971. $new_password2 = $data['new_password2'];
  2972. $username = $data['username'];
  2973. $check_tfa = $data['check_tfa'];
  2974. if (!$username || !$token) {
  2975. $_SESSION['return'][] = array(
  2976. 'type' => 'danger',
  2977. 'log' => array(__FUNCTION__, $action, $_data_log),
  2978. 'msg' => 'invalid_reset_token'
  2979. );
  2980. return false;
  2981. }
  2982. # check new password
  2983. if (!password_check($new_password, $new_password2)) {
  2984. return false;
  2985. }
  2986. if ($check_tfa){
  2987. // check for tfa authenticators
  2988. $authenticators = get_tfa($username);
  2989. if (isset($authenticators['additional']) && is_array($authenticators['additional']) && count($authenticators['additional']) > 0) {
  2990. $_SESSION['pending_mailcow_cc_username'] = $username;
  2991. $_SESSION['pending_pw_reset_token'] = $token;
  2992. $_SESSION['pending_pw_new_password'] = $new_password;
  2993. $_SESSION['pending_tfa_methods'] = $authenticators['additional'];
  2994. $_SESSION['return'][] = array(
  2995. 'type' => 'info',
  2996. 'log' => array(__FUNCTION__, $user, '*'),
  2997. 'msg' => 'awaiting_tfa_confirmation'
  2998. );
  2999. return false;
  3000. }
  3001. }
  3002. # set new password
  3003. $password_hashed = hash_password($new_password);
  3004. $stmt = $pdo->prepare("UPDATE `mailbox` SET
  3005. `password` = :password_hashed,
  3006. `attributes` = JSON_SET(`attributes`, '$.passwd_update', NOW())
  3007. WHERE `username` = :username AND authsource = 'mailcow'");
  3008. $stmt->execute(array(
  3009. ':password_hashed' => $password_hashed,
  3010. ':username' => $username
  3011. ));
  3012. // perform cleanup
  3013. $stmt = $pdo->prepare("DELETE FROM `reset_password` WHERE `username` = :username;");
  3014. $stmt->execute(array(
  3015. ':username' => $username
  3016. ));
  3017. update_sogo_static_view($username);
  3018. $_SESSION['return'][] = array(
  3019. 'type' => 'success',
  3020. 'log' => array(__FUNCTION__, $action, $_data_log),
  3021. 'msg' => 'password_changed_success'
  3022. );
  3023. return true;
  3024. break;
  3025. case 'get_notification':
  3026. $type = $data;
  3027. try {
  3028. $settings['from'] = $redis->Get('PW_RESET_FROM');
  3029. $settings['subject'] = $redis->Get('PW_RESET_SUBJ');
  3030. $settings['html_tmpl'] = $redis->Get('PW_RESET_HTML');
  3031. $settings['text_tmpl'] = $redis->Get('PW_RESET_TEXT');
  3032. if (empty($settings['html_tmpl']) && empty($settings['text_tmpl'])) {
  3033. $settings['html_tmpl'] = file_get_contents("/tpls/pw_reset_html.tpl");
  3034. $settings['text_tmpl'] = file_get_contents("/tpls/pw_reset_text.tpl");
  3035. }
  3036. if ($type != "raw") {
  3037. $settings['html_tmpl'] = htmlspecialchars($settings['html_tmpl']);
  3038. $settings['text_tmpl'] = htmlspecialchars($settings['text_tmpl']);
  3039. }
  3040. }
  3041. catch (RedisException $e) {
  3042. $_SESSION['return'][] = array(
  3043. 'type' => 'danger',
  3044. 'log' => array(__FUNCTION__, $action, $_data_log),
  3045. 'msg' => array('redis_error', $e)
  3046. );
  3047. return false;
  3048. }
  3049. return $settings;
  3050. break;
  3051. case 'send_mail':
  3052. $from = $data['from'];
  3053. $to = $data['to'];
  3054. $text = $data['text'];
  3055. $html = $data['html'];
  3056. $subject = $data['subject'];
  3057. if (!filter_var($from, FILTER_VALIDATE_EMAIL)) {
  3058. $_SESSION['return'][] = array(
  3059. 'type' => 'danger',
  3060. 'log' => array(__FUNCTION__, $action, $_data_log),
  3061. 'msg' => 'from_invalid'
  3062. );
  3063. return false;
  3064. }
  3065. if (!filter_var($to, FILTER_VALIDATE_EMAIL)) {
  3066. $_SESSION['return'][] = array(
  3067. 'type' => 'danger',
  3068. 'log' => array(__FUNCTION__, $action, $_data_log),
  3069. 'msg' => 'to_invalid'
  3070. );
  3071. return false;
  3072. }
  3073. if (empty($subject)) {
  3074. $_SESSION['return'][] = array(
  3075. 'type' => 'danger',
  3076. 'log' => array(__FUNCTION__, $action, $_data_log),
  3077. 'msg' => 'subject_empty'
  3078. );
  3079. return false;
  3080. }
  3081. if (empty($text)) {
  3082. $_SESSION['return'][] = array(
  3083. 'type' => 'danger',
  3084. 'log' => array(__FUNCTION__, $action, $_data_log),
  3085. 'msg' => 'text_empty'
  3086. );
  3087. return false;
  3088. }
  3089. ini_set('max_execution_time', 0);
  3090. ini_set('max_input_time', 0);
  3091. $mail = new PHPMailer;
  3092. $mail->Timeout = 10;
  3093. $mail->SMTPOptions = array(
  3094. 'ssl' => array(
  3095. 'verify_peer' => false,
  3096. 'verify_peer_name' => false,
  3097. 'allow_self_signed' => true
  3098. )
  3099. );
  3100. $mail->isSMTP();
  3101. $mail->Host = 'postfix-mailcow';
  3102. $mail->SMTPAuth = false;
  3103. $mail->Port = 25;
  3104. $mail->setFrom($from);
  3105. $mail->Subject = $subject;
  3106. $mail->CharSet ="UTF-8";
  3107. if (!empty($html)) {
  3108. $mail->Body = $html;
  3109. $mail->AltBody = $text;
  3110. }
  3111. else {
  3112. $mail->Body = $text;
  3113. }
  3114. $mail->XMailer = 'MooMail';
  3115. $mail->AddAddress($to);
  3116. if (!$mail->send()) {
  3117. return false;
  3118. }
  3119. $mail->ClearAllRecipients();
  3120. return true;
  3121. break;
  3122. }
  3123. if ($_SESSION['mailcow_cc_role'] != "admin") {
  3124. $_SESSION['return'][] = array(
  3125. 'type' => 'danger',
  3126. 'log' => array(__FUNCTION__, $action, $_data_log),
  3127. 'msg' => 'access_denied'
  3128. );
  3129. return false;
  3130. }
  3131. switch ($action) {
  3132. case 'edit_notification':
  3133. $subject = $data['subject'];
  3134. $from = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $data['from']);
  3135. $from = (!filter_var($from, FILTER_VALIDATE_EMAIL)) ? "" : $from;
  3136. $subject = (empty($subject)) ? "" : $subject;
  3137. $text = (empty($data['text_tmpl'])) ? "" : $data['text_tmpl'];
  3138. $html = (empty($data['html_tmpl'])) ? "" : $data['html_tmpl'];
  3139. try {
  3140. $redis->Set('PW_RESET_FROM', $from);
  3141. $redis->Set('PW_RESET_SUBJ', $subject);
  3142. $redis->Set('PW_RESET_HTML', $html);
  3143. $redis->Set('PW_RESET_TEXT', $text);
  3144. }
  3145. catch (RedisException $e) {
  3146. $_SESSION['return'][] = array(
  3147. 'type' => 'danger',
  3148. 'log' => array(__FUNCTION__, $action, $_data_log),
  3149. 'msg' => array('redis_error', $e)
  3150. );
  3151. return false;
  3152. }
  3153. $_SESSION['return'][] = array(
  3154. 'type' => 'success',
  3155. 'log' => array(__FUNCTION__, $action, $_data_log),
  3156. 'msg' => 'saved_settings'
  3157. );
  3158. break;
  3159. }
  3160. }
  3161. function clear_session(){
  3162. session_regenerate_id(true);
  3163. session_unset();
  3164. session_destroy();
  3165. session_write_close();
  3166. }
  3167. function set_user_loggedin_session($user) {
  3168. session_regenerate_id(true);
  3169. $_SESSION['mailcow_cc_username'] = $user;
  3170. $_SESSION['mailcow_cc_role'] = 'user';
  3171. $sogo_sso_pass = file_get_contents("/etc/sogo-sso/sogo-sso.pass");
  3172. $_SESSION['sogo-sso-user-allowed'][] = $user;
  3173. $_SESSION['sogo-sso-pass'] = $sogo_sso_pass;
  3174. unset($_SESSION['pending_mailcow_cc_username']);
  3175. unset($_SESSION['pending_mailcow_cc_role']);
  3176. unset($_SESSION['pending_tfa_methods']);
  3177. }
  3178. function get_logs($application, $lines = false) {
  3179. if ($lines === false) {
  3180. $lines = $GLOBALS['LOG_LINES'] - 1;
  3181. }
  3182. elseif(is_numeric($lines) && $lines >= 1) {
  3183. $lines = abs(intval($lines) - 1);
  3184. }
  3185. else {
  3186. list ($from, $to) = explode('-', $lines);
  3187. $from = intval($from);
  3188. $to = intval($to);
  3189. if ($from < 1 || $to < $from) { return false; }
  3190. }
  3191. global $redis;
  3192. global $pdo;
  3193. if ($_SESSION['mailcow_cc_role'] != "admin") {
  3194. return false;
  3195. }
  3196. // SQL
  3197. if ($application == "mailcow-ui") {
  3198. if (isset($from) && isset($to)) {
  3199. $stmt = $pdo->prepare("SELECT * FROM `logs` ORDER BY `id` DESC LIMIT :from, :to");
  3200. $stmt->execute(array(
  3201. ':from' => $from - 1,
  3202. ':to' => $to
  3203. ));
  3204. $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
  3205. }
  3206. else {
  3207. $stmt = $pdo->prepare("SELECT * FROM `logs` ORDER BY `id` DESC LIMIT :lines");
  3208. $stmt->execute(array(
  3209. ':lines' => $lines + 1,
  3210. ));
  3211. $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
  3212. }
  3213. if (is_array($data)) {
  3214. return $data;
  3215. }
  3216. }
  3217. if ($application == "sasl") {
  3218. if (isset($from) && isset($to)) {
  3219. $stmt = $pdo->prepare("SELECT * FROM `sasl_log` ORDER BY `datetime` DESC LIMIT :from, :to");
  3220. $stmt->execute(array(
  3221. ':from' => $from - 1,
  3222. ':to' => $to
  3223. ));
  3224. $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
  3225. }
  3226. else {
  3227. $stmt = $pdo->prepare("SELECT * FROM `sasl_log` ORDER BY `datetime` DESC LIMIT :lines");
  3228. $stmt->execute(array(
  3229. ':lines' => $lines + 1,
  3230. ));
  3231. $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
  3232. }
  3233. if (is_array($data)) {
  3234. return $data;
  3235. }
  3236. }
  3237. // Redis
  3238. if ($application == "dovecot-mailcow") {
  3239. if (isset($from) && isset($to)) {
  3240. $data = $redis->lRange('DOVECOT_MAILLOG', $from - 1, $to - 1);
  3241. }
  3242. else {
  3243. $data = $redis->lRange('DOVECOT_MAILLOG', 0, $lines);
  3244. }
  3245. if ($data) {
  3246. foreach ($data as $json_line) {
  3247. $data_array[] = json_decode($json_line, true);
  3248. }
  3249. return $data_array;
  3250. }
  3251. }
  3252. if ($application == "cron-mailcow") {
  3253. if (isset($from) && isset($to)) {
  3254. $data = $redis->lRange('CRON_LOG', $from - 1, $to - 1);
  3255. }
  3256. else {
  3257. $data = $redis->lRange('CRON_LOG', 0, $lines);
  3258. }
  3259. if ($data) {
  3260. foreach ($data as $json_line) {
  3261. $data_array[] = json_decode($json_line, true);
  3262. }
  3263. return $data_array;
  3264. }
  3265. }
  3266. if ($application == "postfix-mailcow") {
  3267. if (isset($from) && isset($to)) {
  3268. $data = $redis->lRange('POSTFIX_MAILLOG', $from - 1, $to - 1);
  3269. }
  3270. else {
  3271. $data = $redis->lRange('POSTFIX_MAILLOG', 0, $lines);
  3272. }
  3273. if ($data) {
  3274. foreach ($data as $json_line) {
  3275. $data_array[] = json_decode($json_line, true);
  3276. }
  3277. return $data_array;
  3278. }
  3279. }
  3280. if ($application == "sogo-mailcow") {
  3281. if (isset($from) && isset($to)) {
  3282. $data = $redis->lRange('SOGO_LOG', $from - 1, $to - 1);
  3283. }
  3284. else {
  3285. $data = $redis->lRange('SOGO_LOG', 0, $lines);
  3286. }
  3287. if ($data) {
  3288. foreach ($data as $json_line) {
  3289. $data_array[] = json_decode($json_line, true);
  3290. }
  3291. return $data_array;
  3292. }
  3293. }
  3294. if ($application == "watchdog-mailcow") {
  3295. if (isset($from) && isset($to)) {
  3296. $data = $redis->lRange('WATCHDOG_LOG', $from - 1, $to - 1);
  3297. }
  3298. else {
  3299. $data = $redis->lRange('WATCHDOG_LOG', 0, $lines);
  3300. }
  3301. if ($data) {
  3302. foreach ($data as $json_line) {
  3303. $data_array[] = json_decode($json_line, true);
  3304. }
  3305. return $data_array;
  3306. }
  3307. }
  3308. if ($application == "acme-mailcow") {
  3309. if (isset($from) && isset($to)) {
  3310. $data = $redis->lRange('ACME_LOG', $from - 1, $to - 1);
  3311. }
  3312. else {
  3313. $data = $redis->lRange('ACME_LOG', 0, $lines);
  3314. }
  3315. if ($data) {
  3316. foreach ($data as $json_line) {
  3317. $data_array[] = json_decode($json_line, true);
  3318. }
  3319. return $data_array;
  3320. }
  3321. }
  3322. if ($application == "ratelimited") {
  3323. if (isset($from) && isset($to)) {
  3324. $data = $redis->lRange('RL_LOG', $from - 1, $to - 1);
  3325. }
  3326. else {
  3327. $data = $redis->lRange('RL_LOG', 0, $lines);
  3328. }
  3329. if ($data) {
  3330. foreach ($data as $json_line) {
  3331. $data_array[] = json_decode($json_line, true);
  3332. }
  3333. return $data_array;
  3334. }
  3335. }
  3336. if ($application == "api-mailcow") {
  3337. if (isset($from) && isset($to)) {
  3338. $data = $redis->lRange('API_LOG', $from - 1, $to - 1);
  3339. }
  3340. else {
  3341. $data = $redis->lRange('API_LOG', 0, $lines);
  3342. }
  3343. if ($data) {
  3344. foreach ($data as $json_line) {
  3345. $data_array[] = json_decode($json_line, true);
  3346. }
  3347. return $data_array;
  3348. }
  3349. }
  3350. if ($application == "netfilter-mailcow") {
  3351. if (isset($from) && isset($to)) {
  3352. $data = $redis->lRange('NETFILTER_LOG', $from - 1, $to - 1);
  3353. }
  3354. else {
  3355. $data = $redis->lRange('NETFILTER_LOG', 0, $lines);
  3356. }
  3357. if ($data) {
  3358. foreach ($data as $json_line) {
  3359. $data_array[] = json_decode($json_line, true);
  3360. }
  3361. return $data_array;
  3362. }
  3363. }
  3364. if ($application == "autodiscover-mailcow") {
  3365. if (isset($from) && isset($to)) {
  3366. $data = $redis->lRange('AUTODISCOVER_LOG', $from - 1, $to - 1);
  3367. }
  3368. else {
  3369. $data = $redis->lRange('AUTODISCOVER_LOG', 0, $lines);
  3370. }
  3371. if ($data) {
  3372. foreach ($data as $json_line) {
  3373. $data_array[] = json_decode($json_line, true);
  3374. }
  3375. return $data_array;
  3376. }
  3377. }
  3378. if ($application == "rspamd-history") {
  3379. $curl = curl_init();
  3380. curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, '/var/lib/rspamd/rspamd.sock');
  3381. if (!is_numeric($lines)) {
  3382. list ($from, $to) = explode('-', $lines);
  3383. curl_setopt($curl, CURLOPT_URL,"http://rspamd/history?from=" . intval($from) . "&to=" . intval($to));
  3384. }
  3385. else {
  3386. curl_setopt($curl, CURLOPT_URL,"http://rspamd/history?to=" . intval($lines));
  3387. }
  3388. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  3389. $history = curl_exec($curl);
  3390. if (!curl_errno($curl)) {
  3391. $data_array = json_decode($history, true);
  3392. curl_close($curl);
  3393. return $data_array['rows'];
  3394. }
  3395. curl_close($curl);
  3396. return false;
  3397. }
  3398. if ($application == "rspamd-stats") {
  3399. $curl = curl_init();
  3400. curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, '/var/lib/rspamd/rspamd.sock');
  3401. curl_setopt($curl, CURLOPT_URL,"http://rspamd/stat");
  3402. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  3403. $stats = curl_exec($curl);
  3404. if (!curl_errno($curl)) {
  3405. $data_array = json_decode($stats, true);
  3406. curl_close($curl);
  3407. return $data_array;
  3408. }
  3409. curl_close($curl);
  3410. return false;
  3411. }
  3412. return false;
  3413. }
  3414. function getGUID() {
  3415. if (function_exists('com_create_guid')) {
  3416. return com_create_guid();
  3417. }
  3418. mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up.
  3419. $charid = strtoupper(md5(uniqid(rand(), true)));
  3420. $hyphen = chr(45);// "-"
  3421. return substr($charid, 0, 8).$hyphen
  3422. .substr($charid, 8, 4).$hyphen
  3423. .substr($charid,12, 4).$hyphen
  3424. .substr($charid,16, 4).$hyphen
  3425. .substr($charid,20,12);
  3426. }
  3427. function cleanupJS($ignore = '', $folder = '/tmp/*.js') {
  3428. $now = time();
  3429. foreach (glob($folder) as $filename) {
  3430. if(strpos($filename, $ignore) !== false) {
  3431. continue;
  3432. }
  3433. if (is_file($filename)) {
  3434. if ($now - filemtime($filename) >= 60 * 60) {
  3435. unlink($filename);
  3436. }
  3437. }
  3438. }
  3439. }
  3440. function cleanupCSS($ignore = '', $folder = '/tmp/*.css') {
  3441. $now = time();
  3442. foreach (glob($folder) as $filename) {
  3443. if(strpos($filename, $ignore) !== false) {
  3444. continue;
  3445. }
  3446. if (is_file($filename)) {
  3447. if ($now - filemtime($filename) >= 60 * 60) {
  3448. unlink($filename);
  3449. }
  3450. }
  3451. }
  3452. }
  3453. ?>