-Licenses
[www.jankratochvil.net.git] / project / winvnc / Index.pm
1 # $Id$
2 # Main page of 'My::Project::winvnc'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::winvnc::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"WinVNC hide",
32                 "platform"=>"w32",
33                 "priority"=>560,
34                 "icon"=>"nowinvnc.png",
35                 "download-already patched version 4.1.2"=>"vnc-4_1_2-x86_win32-winvnc4.exe-SECRET.zip",
36                 "download-already patched version 4.1.1"=>"vnc-4_1_1-x86_win32-winvnc4.exe-SECRET.zip",
37                 "download-already patched version 4.0"=>"vnc-4.0-x86_win32-exe-SECRET.zip",
38                 "download-already patched version 3.3.3r9"=>"vnc-3.3.3r9_x86_win32-exe-SECRET.zip",
39                 "download-already patched version 3.3.3r7"=>"vnc-3.3.3r7_x86_win32-exe-SECRET.zip",
40                 "link-VNC Homepage"=>"http://www.realvnc.com/",
41                 "link-Other icon-hiding website"=>"http://www.darkage.co.uk/downloads/",
42                 "summary"=>"Hide running WinVNC server",
43                 "license"=>"PD",
44                 "maintenance"=>"ready",
45                 "language"=>"i386 asm patch",
46                 "description"=>sub { return <<"HERE"; },
47 <p>If you install <i>WinVNC</i> in
48 @{[ a_href 'http://www.microsoft.com/','MS' ]}&nbsp;@{[ a_href 'http://www.microsoft.com/windows/','Windows' ]}
49 environment, you will notice that it creates its own small icon in <i>System Tray</i>.
50 Sometimes you want to get rid of this visible icon and you cannot remove it by any configuration
51 settings.</p>
52 HERE
53                 );
54
55 sub handler
56 {
57 project::Lib->init();
58
59
60 print <<'HERE';
61 <p>You need to download the original distribution archive, install it and later
62 just replace its file <tt>C:\Program&nbsp;Files\RealVNC\VNC4\winvnc4.exe</tt>.
63 Otherwise error about missing <tt>omnithread_rt.dll</tt> will occur.</p>
64
65 <p>Yo should check that the binary <tt>winvnc4.exe</tt> differs only in about
66 3&nbsp;bytes (by <tt>fc/b</tt>) to have a proof I (or a man-in-the-middle) did not
67 provide you some cracked replacement. You may also check its md5sum(1):</p>
68
69 <table border="1" class="margin-center">
70 <tr><th>File from package</th><th>MD5 sum</th></tr>
71 <tr><td><tt>WinVNC.exe-4.1.2  </tt>, original</td>        <td><tt>bda11f9ab8629313950cef60ec1dbe1d</tt></td></tr>
72 <tr><td><tt>WinVNC.exe-4.1.2  </tt>, 'SECRET' patched</td><td><tt>e2898e70771c55fec732c508bbab2e6e</tt></td></tr>
73 <tr><td><tt>WinVNC.exe-4.1.1  </tt>, original</td>        <td><tt>3fc39dc90318c1b72d867fe04962a20f</tt></td></tr>
74 <tr><td><tt>WinVNC.exe-4.1.1  </tt>, 'SECRET' patched</td><td><tt>067c02a0e409f58d9a773f338a8d985a</tt></td></tr>
75 <tr><td><tt>WinVNC.exe-4.0    </tt>, original</td>        <td><tt>7043ddf51d7135c1d1b83b4213dfed61</tt></td></tr>
76 <tr><td><tt>WinVNC.exe-4.0    </tt>, 'SECRET' patched</td><td><tt>916c82e99e1dc17bebdc31aebc895b52</tt></td></tr>
77 <tr><td><tt>WinVNC.exe-3.3.3r9</tt>, original</td>        <td><tt>f4910e28a285a13e642cdfe302e4ad91</tt></td></tr>
78 <tr><td><tt>WinVNC.exe-3.3.3r9</tt>, 'SECRET' patched</td><td><tt>6669d652357a56737b36e2cde0acd473</tt></td></tr>
79 <tr><td><tt>WinVNC.exe-3.3.3r7</tt>, original</td>        <td><tt>d8d9d04901a4896f278d59a1cdc99aef</tt></td></tr>
80 <tr><td><tt>WinVNC.exe-3.3.3r7</tt>, 'SECRET' patched</td><td><tt>8423b8f9598893b517a4f5eebbf0749b</tt></td></tr>
81 </table>
82 HERE
83
84
85 exit;
86 }
87 1;