-
Notifications
You must be signed in to change notification settings - Fork 10
/
StandalonePHPEnkoder.php
327 lines (282 loc) · 10.4 KB
/
StandalonePHPEnkoder.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<?php
/*
Standalone PHPEnkoder
Version: 1.0.0
Author: Jonathan Nicol @f6design
https://github.com/jnicol/standalone-php-enkoder
Uses PHP to encode email addresses so they can't be read by
spambots. Encodes plaintext email addresses and wraps them in a
mailto: link, and obfuscates any pre-existing mailto: links.
This is a standalone version of Michael Greenberg's excellent
PHPEnkoder Wordpress plugin, based on Hivelogic Enkoder.
Usage:
require_once('StandalonePHPEnkoder.php');
$enkoder = new StandalonePHPEnkoder();
$cleaned = $enkoder->enkodeAllEmails($text);
If you only want to encode mailtos:
$enkoder->enkodeMailtos($text);
If you only want to encode plaintext emails:
$enkoder->enkodePlaintextEmails($text);
LICENSE (Modified BSD)
Copyright (c) 2013, Jonathan Nicol. Derivative work of Michael
Greenberg's PHPEnkoder plugin for Wordpress, Copyright (c) 2006-11,
Michael Greenberg, which is itself aderivative work of Hivelogic
Enkoder, Copyright (c) 2006, Automatic Corp. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
3. Neither the name of Jonathan Nicol, Michael Greenberg, AUTOMATIC
CORP. nor the names of its contributors may be used to endorse
or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class StandalonePHPEnkoder {
public $enkode_msg = 'email hidden; JavaScript is required';
public $enkode_class = 'enkoded-mailto';
public $max_passes = 20;
public $max_length = 1024;
private $min_length = 269;
private $enkoder_uses = 0;
private $email_regex;
private $ptext_email;
private $mailto_email;
private $link_text;
private $enk_dec_reverse;
private $enk_dec_num;
private $enk_dec_swap;
private $enkodings;
public function __construct() {
$this->email_regex = '[\w\d+_.-]+@(?:[\w\d_-]+\.)+[\w]{2,6}';
// First matching group specifies banned first characters
// Second matching group excludes email address preceded by =" i.e. src="[email protected]"
$this->ptext_email = '/(?<=[^\/\w\d\+_.:-])(?<!=")(' . $this->email_regex . ')/i';
$this->mailto_email = '#(<a[^<>]*?href=[\042\047]mailto:' . $this->email_regex . '[^<>]*?>.*?</a>)#i';
$this->link_text = "#/>(.*?)</a#i";
// Encoding list
// Listed fully below. Add in this format to get new phases, which will
// be used automatically by the enkode function.
$this->enk_dec_reverse = <<<EOT
kode=kode.split('').reverse().join('')
EOT;
$this->enk_dec_num = <<<EOT
kode=kode.split(' ');x='';for(i=0;i<kode.length;i++){x+=String.fromCharCode(parseInt(kode[i])-3)}kode=x
EOT;
$this->enk_dec_swap = <<<EOT
x='';for(i=0;i<(kode.length-1);i+=2){x+=kode.charAt(i+1)+kode.charAt(i)}kode=x+(i<kode.length?kode.charAt(kode.length-1):'')
EOT;
$this->enkodings = array(
array('enkEncReverse', $this->enk_dec_reverse),
array('enkEncNum', $this->enk_dec_num),
array('enkEncSwap', $this->enk_dec_swap)
);
}
/**
* Enkode plaintext emails
*
* Encodes all plaintext e-mails into a JavaScript-obscured mailto; the
* text of the mailto: is the e-mail address itself.
*/
public function enkodePlaintextEmails($text) {
return preg_replace_callback($this->ptext_email, array($this, 'enkEmailToLink'), $text);
}
/**
* Enkode mailto: links
*
* Encodes all mailto: links into JavaScript obscured text.
*/
public function enkodeMailtos($text) {
return preg_replace_callback($this->mailto_email, array($this, 'enkPlaintextLink'), $text);
}
/**
* Enkode all emails
*
* Encodes all mailto: and plaintext links into JavaScript obscured text.
*/
public function enkodeAllEmails($text) {
$js = $this->enkodeMailtos($text);
$js = $this->enkodePlaintextEmails($js);
return $js;
}
/**
* Extract link text
*/
private function enkExtractLinktext($text) {
if (preg_match($this->link_text, $text, $tmatches)) {
return $tmatches[1];
}
return null;
}
/**
* Enkode a single mailto: link
*/
private function enkEmailToLink($matches) {
return $this->enkodeMailto($matches[1], $matches[1]);
}
/**
* Enkode a single plaintext link
*/
private function enkPlaintextLink($matches) {
$text = $this->enkExtractLinktext($matches[1]);
return $this->enkode($matches[1], $text);
}
/**
* Enkode a mailto: link
*/
public function enkodeMailto($email, $text, $subject = "", $title = "") {
$content = '<a class="' . $this->enkode_class . '" href="mailto:' . $email;
if ($subject) {
$content .= '?subject=' . $subject;
}
$content .= '"';
if ($title) {
$content .= ' title="' . $title . '"';
}
$content .= '>' . $text . '</a>';
return $this->enkode($content);
}
/**
* Enkode
*
* Encodes a string to be view-time written by obfuscated Javascript.
* The max passes parameter is a tight bound on the number of encodings
* perormed. The max length paramater is a loose bound on the length of
* the generated Javascript. Setting it to 0 will use a single pass of
* enkEncNum.
*
* The function works by selecting encodings at random from the array
* enkodings, applying them to the given string, and then producing
* Javascript to decode. The Javascript works by recursive evaluation,
* which should be nasty enough to stop anything but the most determined
* spambots.
*
* The text parameter, if set, overrides the user-settable option
* enk_msg. This is the message overwritten by the JavaScript; if a
* browser doesn't support JavaScript, this message will be shown to the
* user.
*/
public function enkode($content, $text = NULL) {
$max_passes = $this->max_passes;
$max_length = $this->max_length;
// Our base case -- we'll eventually evaluate this code.
// Note that we're using innerHTML() since document.write() fails on
// pages loaded using AJAX.
$kode = "document.getElementById('ENKODER_ID').outerHTML=\"" .
addcslashes($content,"\\\'\"&\n\r<>") .
"\";";
$max_length = max($max_length, strlen($kode) + $this->min_length + 1);
$result = "";
// Build up as many encodings as we can.
for ($passes = 0; $passes < $max_passes && strlen($kode) < $max_length; $passes++) {
// Pick an encoding at random.
$idx = rand(0, count($this->enkodings) - 1);
$enc = $this->enkodings[$idx][0];
$dec = $this->enkodings[$idx][1];
$kode = $this->enkodePass($kode, $enc, $dec);
}
// Mandatory numerical encoding, prevents catching @ signs and
// interpreting neighboring characters as e-mail addresses.
$kode = $this->enkodePass($kode, 'enkEncNum', $this->enk_dec_num);
return $this->enkBuildJS($kode, $text);
}
/**
* Encode a single pass
*
* $enc is a function pointer and $dec is the Javascript.
*/
private function enkodePass($kode, $enc, $dec) {
// First encode.
$kode = addslashes($this->$enc($kode));
// Then generate encoded code with decoding afterwards.
$kode = "kode=\"$kode\";$dec;";
return $kode;
}
/**
* Build JavaScript
*
* Generates the Javascript recursive evaluator, which is 269 characters
* of boilerplate code.
*
* Unfortunately, <noscript> can't be used arbitrarily in XHTML. A
* <span> that we immediately overwrite, serves as an ad hoc <noscript>
* tag.
*/
private function enkBuildJS($kode, $text = NULL) {
$clean = addslashes($kode);
$msg = is_null($text) ? $this->enkode_msg : $text;
$name = "enkoder_" . strval($this->enkoder_uses) . "_" . strval(rand());
$this->enkoder_uses += 1;
// Note that we decode until $kode contains "getElementById('ENKODER_ID')",
// at which point we replace ENKODER_ID with the ID of our span, then
// perform the final eval().
$js = <<<EOT
<span id="$name">$msg</span><script id="script_{$name}" type="text/javascript">
/* <!-- */
function hivelogic_$name() {
var kode="$clean",i,c,x,script=document.getElementById("script_{$name}");while(kode.indexOf("getElementById('ENKODER_ID')")===-1){eval(kode)};kode=kode.replace('ENKODER_ID','$name');eval(kode);script.parentNode.removeChild(script);
}
hivelogic_$name();
/* --> */
</script>
EOT;
return $js;
}
/**
* Encodings
*
* Each encoding should consist of a function and a Javascript string;
* the function performs some scrambling of a string, and the Javascript
* unscrambles that string (assuming that it's stored in a variable
* kode). The listed enkodings are those used in the Hivelogic Enkoder.
*
* THe JS strings are defined as class variables $enk_dec_reverse,
* $enk_dec_num and $enk_dec_swap.
*/
/**
* Reverse encoding
*/
private function enkEncReverse($s) {
return strrev($s);
}
/**
* Num encoding (adapted)
*/
private function enkEncNum($s) {
$nums = "";
$len = strlen($s);
for ($i = 0;$i < $len;$i++) {
$nums .= strval(ord($s[$i]) + 3);
if ($i < $len - 1) { $nums .= ' '; }
}
return $nums;
}
/**
* Swap encoding
*/
private function enkEncSwap($s) {
$swapped = strval($s);
$len = strlen($s);
for ($i = 0;$i < $len - 1;$i += 2) {
$tmp = $swapped[$i + 1];
$swapped[$i + 1] = $swapped[$i];
$swapped[$i] = $tmp;
}
return $swapped;
}
}