PageRenderTime 45ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/mod/wiki/ewiki/plugins/email_protect.php

https://bitbucket.org/ceu/moodle_demo
PHP | 306 lines | 286 code | 4 blank | 16 comment | 2 complexity | 5ee477a9ead393c1532a1c20b8f98baa MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.0, LGPL-2.1
  1. <?php
  2. # This plugin protects email addresses from getting seen by spambots,
  3. # by the cost of additonal effort for real persons, who really want
  4. # to mail someone.
  5. #
  6. # It is __really safe__ because it protects addresses with an request
  7. # <FORM> before the real email address gets shown on a page (it seems
  8. # impossible to me, that there are already all that intelligent spambots
  9. # available, which can automatically fill out a <form> to access the
  10. # following page).
  11. # The 'cipher' method is really unimportant, when it comes to tricking
  12. # automated harvesters.
  13. #
  14. # Additionally it generates faked/trap email addresses to annoy the
  15. # marketing mafia.
  16. #-- change these from time to time:
  17. define("EWIKI_PAGE_EMAIL", "ProtectedEmail");
  18. define("EWIKI_UP_ENCEMAIL", "encoded_email");
  19. define("EWIKI_UP_NOSPAMBOT", "i_am_no_spambot");
  20. define("EWIKI_UP_REQUESTLV", "rl");
  21. define("EWIKI_FAKE_EMAIL_LOOP", 5);
  22. $ewiki_config["feedbots_tarpits"] = "@spamassassin.taint.org,@123webhosting.org,@e.mailsiphon.com,@heypete.com,@ncifcrf.gov";
  23. $ewiki_config["feedbots_badguys"] = "@riaa.com,@whitehouse.gov,@aol.com,@microsoft.com";
  24. #-- text, translations
  25. $ewiki_t["en"]["PROTE0"] = "Protected Email Address";
  26. $ewiki_t["en"]["PROTE1"] = "The email address you've clicked on is protected by this form, so it won't get found by <a href=\"http://google.com/search?q=spambots\">spambots</a> (automated search engines, which crawl the net for addresses just for the entertainment of the marketing mafia).";
  27. $ewiki_t["en"]["PROTE2"] = "The page you're going to edit contains at least one email address. To protect it we must ensure that no spambot reaches the edit box (with the email address in cleartext).";
  28. $ewiki_t["en"]["PROTE4"] = "I'm no spambot, really!";
  29. $ewiki_t["en"]["PROTE5"] = "<b>generate more faked email addresses</b>";
  30. $ewiki_t["en"]["PROTE6"] = "the email address you've clicked on is:";
  31. $ewiki_t["en"]["PROTE7"] = "<b>spammers, please eat these:</b>";
  32. $ewiki_t["de"]["PROTE0"] = "Geschützte EMail-Adresse";
  33. $ewiki_t["de"]["PROTE1"] = "Die EMail-Adresse, die du angeklickt hast, wird durch dieses Formular vor <a href=\"http://google.com/search?q=spambots\">spambots</a> (automatisierte Suchwerkzeuge, die das Netz zur Freude der MarketingMafia nach Adressen abgrasen) beschützt.";
  34. $ewiki_t["de"]["PROTE2"] = "Die Seite, die du ändern willst, enthält momentan wenigstens eine EMail-Adresse. Um diese zu schützen müssen wir sicherstellen, daß kein Spambot an die Edit-Box kommt (weil dort die Adresse ja im Klartext steht).";
  35. $ewiki_t["de"]["PROTE4"] = "Ich bin wirklich kein Spambot!";
  36. $ewiki_t["de"]["PROTE5"] = "<b>noch mehr fingierte Adressen anzeigen</b>";
  37. $ewiki_t["de"]["PROTE6"] = "die EMail-Adresse die du angeklickt hast lautet:";
  38. $ewiki_t["de"]["PROTE7"] = "<b>Liebe Spammer, bitte freßt das:</b>";
  39. #-- plugin glue
  40. $ewiki_plugins["link_url"][] = "ewiki_email_protect_link";
  41. $ewiki_plugins["page"][EWIKI_PAGE_EMAIL] = "ewiki_email_protect_form";
  42. $ewiki_plugins["edit_hook"][] = "ewiki_email_protect_edit_hook";
  43. $ewiki_plugins["page_final"][] = "ewiki_email_protect_enctext";
  44. function ewiki_email_protect_enctext(&$html, $id, $data, $action) {
  45. $a_secure = array("info", "diff");
  46. if (in_array($action, $a_secure)) {
  47. $html = preg_replace('/([-_+\w\d.]+@[-\w\d.]+\.[\w]{2,5})\b/me',
  48. '"<a href=\"".ewiki_email_protect_encode("\1",2).
  49. "\">".ewiki_email_protect_encode("\1",0)."</a>"',
  50. $html);
  51. }
  52. }
  53. /* ewiki_format() callback function to replace mailto: links with
  54. * encoded redirection URLs
  55. */
  56. function ewiki_email_protect_link(&$href, &$title) {
  57. if (substr($href, 0, 7) == "mailto:") {
  58. $href = substr($href, 7);
  59. $href = ewiki_email_protect_encode($href, 2);
  60. $title = ewiki_email_protect_encode($title, 0);
  61. }
  62. }
  63. /* the edit box for every page must be protected as well - else all
  64. * mail addresses would still show up in the wikimarkup (cleartext)
  65. */
  66. function ewiki_email_protect_edit_hook($id, &$data, &$hidden_postdata) {
  67. $hidden_postdata[EWIKI_UP_NOSPAMBOT] = 1;
  68. if (empty($_REQUEST[EWIKI_UP_NOSPAMBOT])
  69. && strpos($data["content"], "@")
  70. && preg_match('/\w\w@([-\w]+\.)+\w\w/', $data["content"]) )
  71. {
  72. $url = ewiki_script("edit", $id);
  73. $o = ewiki_email_protect_form($id, $data, "edit", "PROTE2", $url);
  74. return($o);
  75. }
  76. if (!empty($_POST[EWIKI_UP_NOSPAMBOT]) && empty($_COOKIE[EWIKI_UP_NOSPAMBOT]) && EWIKI_HTTP_HEADERS) {
  77. setcookie(EWIKI_UP_NOSPAMBOT, "grant_access", time()+7*24*3600, "/");
  78. }
  79. }
  80. /* this places a <FORM METHOD="POST"> in between the WikiPage with the
  81. * encoded mail address URL and the page with the clearly readable
  82. * mailto: string
  83. */
  84. function ewiki_email_protect_form($id, $data=0, $action=0, $text="PROTE1", $url="") {
  85. if ($url || ($email = @$_REQUEST[EWIKI_UP_ENCEMAIL])) {
  86. $html = "<h3>" . ewiki_t("PROTE0") . "</h3>\n";
  87. if (empty($_REQUEST[EWIKI_UP_NOSPAMBOT])) { #// from GET,POST,COOKIE
  88. (empty($url)) and ($url = ewiki_script("", EWIKI_PAGE_EMAIL));
  89. $html .= ewiki_t($text) . "<br /><br /><br />\n";
  90. $html .= '<form action="' . $url .
  91. '" method="POST" enctype="multipart/form-data" encoding="iso-8859-1">';
  92. $html .= '<fieldset class="invisiblefieldset">';
  93. $html .= '<input type="hidden" name="'.EWIKI_UP_ENCEMAIL.'" value="' . $email . '" />';
  94. foreach (array_merge($_GET, $_POST) as $var=>$value) {
  95. if (($var != "id") && ($var != EWIKI_UP_ENCEMAIL) && ($var != EWIKI_UP_NOSPAMBOT)) {
  96. $html .= '<input type="hidden" name="' . s($var) . '" value="' . s($value) . '" />';
  97. }
  98. }
  99. $html .= '<input type="checkbox" name="'.EWIKI_UP_NOSPAMBOT.'" value="true" /> ' . ewiki_t("PROTE4") . '<br /><br />';
  100. $html .= '<input type="submit" name="go" /></fieldset></form><br /><br />';
  101. if (EWIKI_FAKE_EMAIL_LOOP) {
  102. $html .= "\n" . ewiki_t("PROTE7") . "<br />\n";
  103. $html .= ewiki_email_protect_feedbots();
  104. }
  105. }
  106. else {
  107. $email = ewiki_email_protect_encode($email, -1);
  108. $html .= ewiki_t("PROTE6") . "<br />";
  109. $html .= '<a href="mailto:' . $email . '">' . $email . '</a>';
  110. if (EWIKI_HTTP_HEADERS && empty($_COOKIE[EWIKI_UP_NOSPAMBOT])) {
  111. setcookie(EWIKI_UP_NOSPAMBOT, "grant_access", time()+7*24*3600, "/");
  112. }
  113. }
  114. }
  115. return($html);
  116. }
  117. /* security really does not depend on how good "encoding" is, because
  118. * bots cannot automatically guess that one is actually used
  119. */
  120. function ewiki_email_protect_encode($string, $func) {
  121. switch ($func) {
  122. case 0: // garbage shown email address
  123. if (strpos($string, "mailto:") === 0) {
  124. $string = substr($string, 7);
  125. }
  126. while (($rd = strrpos($string, ".")) > strpos($string, "@")) {
  127. $string = substr($string, 0, $rd);
  128. }
  129. $string = strtr($string, "@.-_", "ťˇąŻ");
  130. break;
  131. case 1: // encode
  132. $string = str_rot17($string);
  133. $string = base64_encode($string);
  134. break;
  135. case -1: // decode
  136. $string = base64_decode($string);
  137. $string = str_rot17($string);
  138. break;
  139. case 2: // url
  140. $string = ewiki_script("", EWIKI_PAGE_EMAIL,
  141. array(EWIKI_UP_ENCEMAIL => ewiki_email_protect_encode($string, 1))
  142. );
  143. break;
  144. }
  145. return($string);
  146. }
  147. /* this is a non-portable string encoding fucntion which ensures, that
  148. * encoded strings can only be decoded when requested by the same client
  149. * or user in the same dialup session (IP address must match)
  150. * feel free to exchange the random garbage string with anything else
  151. */
  152. function str_rot17($string) {
  153. if (!defined("STR_ROT17")) {
  154. $i = @$_SERVER["SERVER_SOFTWARE"] .
  155. @$_SERVER["HTTP_USER_AGENT"] .
  156. getremoteaddr();
  157. $i .= 'MxQXF^e-0OKC1\\s{\"?i!8PRoNnljHf65`Eb&A(\':g[D}_|S#~3hG>*9yvdI%<=.urcp/@$ZkqL,TWBw]a;72UzYJ)4mt+ V';
  158. $f = "";
  159. while (strlen($i)) {
  160. if (strpos($f, $i[0]) === false) {
  161. $f .= $i[0];
  162. }
  163. $i = substr($i, 1);
  164. }
  165. define("STR_ROT17", $f);
  166. }
  167. return(strtr($string, STR_ROT17, strrev(STR_ROT17)));
  168. }
  169. /* this function emits some html with random (fake) email addresses
  170. * and spambot traps
  171. */
  172. function ewiki_email_protect_feedbots() {
  173. global $ewiki_config;
  174. $html = "";
  175. srand(time()/17-1000*microtime());
  176. #-- spamtraps, and companys/orgs fighting for spammers rights
  177. $domains = explode(",",
  178. $ewiki_config["feedbots_tarpits"]. "," .$ewiki_config["feedbots_badguys"]
  179. );
  180. $traps = explode(" ", "blockme@relays.osirusoft.com simon.templar@rfc1149.net james.bond@ada-france.org anton.dvorak@ada.eu.org amandahannah44@hotmail.com usenet@fsck.me.uk meatcan2@beatrice.rutgers.edu heystupid@artsackett.com listme@dsbl.org bill@caradoc.org spamtrap@spambouncer.org spamtrap@woozle.org gfy@spamblocked.com listme@blacklist.woody.ch tarpit@lathi.net");
  181. $word_parts = explode(" ", "er an Ma ar on in el en le ll Ca ne ri De Mar Ha Br La Co St Ro ie Sh Mc re or Be li ra Al la al Da Ja il es te Le ha na Ka Ch is Ba nn ey nd He tt ch Ho Ke Ga Pa Wi Do st ma Mi Sa Me he to Car ro et ol ck ic Lo Mo ni ell Gr Bu Bo Ra ia de Jo El am An Re rt at Pe Li Je She Sch ea Sc it se Cha Har Sha Tr as ng rd rr Wa so Ki Ar Bra th Ta ta Wil be Cl ur ee ge ac ay au Fr ns son Ge us nt lo ti ss Cr os Hu We Cor Di ton Ri ke Ste Du No me Go Va Si man Bri ce Lu rn ad da ill Gi Th and rl ry Ros Sta sh To Se ett ley ou Ne ld Bar Ber lin ai Mac Dar Na ve no ul Fa ann Bur ow Ko rs ing Fe Ru Te Ni hi ki yn ly lle Ju Del Su mi Bl di lli Gu ine do Ve Gar ei Hi vi Gra Sto Ti Hol Vi ed ir oo em Bre Man ter Bi Van Bro Col id Fo Po Kr ard ber sa Con ick Cla Mu Bla Pr Ad So om io ho ris un her Wo Chr Her Kat Mil Tre Fra ig Mel od nc yl Ale Jer Mcc Lan lan si Dan Kar Mat Gre ue rg Fi Sp ari Str Mer San Cu rm Mon Win Bel Nor ut ah Pi gh av ci Don ot dr lt ger co Ben Lor Fl Jac Wal Ger tte mo Er ga ert tr ian Cro ff Ver Lin Gil Ken Che Jan nne arr va ers all Cal Cas Hil Han Dor Gl ag we Ed Em ran han Cle im arl wa ug ls ca Ric Par Kel Hen Nic len sk uc ina ste ab err Or Am Mor Fer Rob Luc ob Lar Bea ner pe lm ba ren lla der ec ric Ash Ant Fre rri Den Ham Mic Dem Is As Au che Leo nna rin enn Mal Jam Mad Mcg Wh Ab War Ol ler Whi Es All For ud ord Dea eb nk Woo tin ore art Dr tz Ly Pat Per Kri Min Bet rie Flo rne Joh nni Ce Ty Za ins eli ye rc eo ene ist ev Der Des Val And Can Shi ak Gal Cat Eli May Ea rk nge Fu Qu nie oc um ath oll bi ew Far ich Cra The Ran ani Dav Tra Sal Gri Mos Ang Ter mb Jay les Kir Tu hr oe Tri lia Fin mm aw dy cke itt ale wi eg est ier ze ru sc My lb har ka mer sti br ya Gen Hay a b c d e f g h i j k l m n o p q r s t u v w x y z");
  182. $word_delims = explode(" ", "0 1 2 3 3 3 4 5 5 6 7 8 9 - - - - - - - _ _ _ _ _ _ _ . . . . . . .");
  183. $n_dom = count($domains)-1;
  184. $n_trp = count($traps)-1;
  185. $n_wpt = count($word_parts)-1;
  186. $n_wdl = count($word_delims)-1;
  187. for ($n = 1; $n < EWIKI_FAKE_EMAIL_LOOP; $n++) {
  188. // email name part
  189. $m = "";
  190. while (strlen($m) < rand(3,17)) {
  191. $a = $word_parts[nat_rand($n_wpt)];
  192. if (!empty($m)) {
  193. $a = strtolower($a);
  194. if (rand(1,9)==5) {
  195. $m .= $word_delims[rand(0,$n_wdl)];
  196. }
  197. }
  198. $m .= $a;
  199. }
  200. // add domain
  201. switch ($dom = $domains[rand(0, $n_dom)]) {
  202. case "123webhosting.org":
  203. $m = strtr(".", "-", getremoteaddr())."-".$_SERVER["SERVER_NAME"]."-".time();
  204. break;
  205. default:
  206. }
  207. $m .= $dom;
  208. $html .= '<a href="mailto:'.$m.'">'.$m.'</a>'.",\n";
  209. }
  210. $html .= '<a href="mailto:'.$traps[rand(0, $n_trp)].'">'.$traps[rand(0, $n_trp)].'</a>';
  211. if (($rl = 1 + @$_REQUEST[EWIKI_UP_REQUESTLV]) < EWIKI_FAKE_EMAIL_LOOP) {
  212. $html .= ",\n" . '<br /><a href="' .
  213. ewiki_script("", EWIKI_PAGE_EMAIL,
  214. array(
  215. EWIKI_UP_ENCEMAIL=>ewiki_email_protect_encode($m, 1),
  216. EWIKI_UP_REQUESTLV=>"$rl"
  217. )
  218. ) . '">' . ewiki_t("PROTE5") . '</a><br />' . "\n";
  219. ($rl > 1) && sleep(3);
  220. }
  221. sleep(1);
  222. return($html);
  223. }
  224. function nat_rand($max, $dr=0.5) {
  225. $x = $max+1;
  226. while ($x > $max) {
  227. $x = rand(0, $max * 1000)/100;
  228. $x = $x * $dr + $x * $x / 2 * (1-$dr) / $max;
  229. }
  230. return((int)$x);
  231. }
  232. ?>