Wiki2Go 1.17.5 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/Wiki2Go_firewall_blacklist.rb +8 -0
- data/bin/Wiki2Go_make_cvs_repository.rb +1 -0
- data/bin/Wiki2Go_make_site.rb +1 -2
- data/bin/Wiki2Go_update_site.rb +1 -2
- data/lib/Web2Go/CGIRequest.rb +8 -2
- data/lib/Web2Go/CGIResponse.rb +17 -14
- data/lib/Web2Go/MockRequest.rb +12 -2
- data/lib/Web2Go/MockResponse.rb +10 -7
- data/lib/Web2Go/WebrickRequest.rb +106 -101
- data/lib/Web2Go/WebrickResponse.rb +4 -8
- data/lib/Wiki2Go/BlackList.rb +48 -25
- data/lib/Wiki2Go/DotGraphics.rb +1 -1
- data/lib/Wiki2Go/FileStorage.rb +266 -266
- data/lib/Wiki2Go/HTMLFormatter.rb +28 -0
- data/lib/Wiki2Go/Install/config/chonqed_blacklist.txt +418 -0
- data/lib/Wiki2Go/Install/config/passwords +1 -1
- data/lib/Wiki2Go/Install/config/url_blacklist.txt +3855 -0
- data/lib/Wiki2Go/Install/make_repository.rb +32 -26
- data/lib/Wiki2Go/Install/make_site.rb +197 -111
- data/lib/Wiki2Go/Install/site/error.html +1 -1
- data/lib/Wiki2Go/Install/site/robots.txt +10 -1
- data/lib/Wiki2Go/Install/site/style.css +129 -64
- data/lib/Wiki2Go/Install/templates/admin.htm +1 -1
- data/lib/Wiki2Go/Install/templates/admin_pages/edit.txt +2 -1
- data/lib/Wiki2Go/Install/templates/admin_pages/format_for_fck.txt +31 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/passwords.txt +1 -1
- data/lib/Wiki2Go/Install/templates/edit.htm +62 -46
- data/lib/Wiki2Go/Install/templates/full_footer.htm +31 -33
- data/lib/Wiki2Go/Install/templates/header.htm +0 -1
- data/lib/Wiki2Go/Install/templates/menu.htm +29 -0
- data/lib/Wiki2Go/Install/templates/pagelist.htm +46 -43
- data/lib/Wiki2Go/Install/templates/simple_footer.htm +20 -16
- data/lib/Wiki2Go/Install/templates/versionlist.htm +52 -40
- data/lib/Wiki2Go/Install/templates/view.htm +46 -29
- data/lib/Wiki2Go/Install/templates/wikiedit.htm +63 -0
- data/lib/Wiki2Go/Install/wiki/delete.png +0 -0
- data/lib/Wiki2Go/Install/wiki/style.css +133 -63
- data/lib/Wiki2Go/LineFormatter.rb +345 -197
- data/lib/Wiki2Go/Page.rb +16 -3
- data/lib/Wiki2Go/PrivateWikiConfig.rb +5 -5
- data/lib/Wiki2Go/PublicWikiConfig.rb +83 -37
- data/lib/Wiki2Go/ReadWriteWikiConfig.rb +8 -8
- data/lib/Wiki2Go/Server.rb +6 -1
- data/lib/Wiki2Go/SpamFilter.rb +32 -41
- data/lib/Wiki2Go/Web.rb +10 -3
- data/lib/Wiki2Go/Wiki2Go.rb +301 -94
- data/lib/Wiki2Go/Wiki2GoConfig.rb +87 -6
- data/lib/Wiki2Go/Wiki2GoServlet.rb +66 -12
- data/lib/Wiki2Go/WikiFormatter.rb +60 -30
- data/lib/Wiki2Go/cgi/diff.rb +20 -0
- data/lib/Wiki2Go/cgi/secure/log_rss.rb +21 -0
- data/lib/Wiki2Go/cgi/sidebyside.rb +20 -0
- data/lib/Wiki2Go/cgi/wikiedit.rb +20 -0
- data/lib/Wiki2Go/firewall_blacklist.rb +88 -0
- data/test/All.rb +5 -2
- data/test/TestBlackList.rb +70 -14
- data/test/TestConfig.rb +5 -5
- data/test/TestDiff.rb +95 -0
- data/test/TestFormatter.rb +14 -16
- data/test/TestHTMLFormatter.rb +37 -0
- data/test/TestInstall.rb +70 -27
- data/test/TestLineFormatter.rb +71 -15
- data/test/TestRSS.rb +8 -7
- data/test/TestRepository.rb +50 -0
- data/test/TestServer.rb +3 -8
- data/test/TestSpamFilter.rb +33 -1
- data/test/TestStorage.rb +11 -0
- data/test/TestWeb.rb +2 -2
- data/test/TestWiki2Go.rb +766 -166
- data/test/TestWiki2GoServlet.rb +1122 -524
- data/test/UnitTestFiles.rb +7 -3
- data/test/Wiki2GoConfigForTest.rb +40 -6
- data/test/checksite.rb +17 -50
- data/test/test_firewall_blacklist.rb +131 -0
- data/test/test_page.rb +45 -0
- data/test/testdata/Registration.rbl.txt +7 -0
- data/test/testdata/config/url_blacklist.txt +38822 -0
- data/test/testdata/expected_changes.html +1 -2
- data/test/testdata/expected_edit.html +108 -59
- data/test/testdata/expected_full_rss.xml +2 -2
- data/test/testdata/expected_out.html +97 -61
- data/test/testdata/expected_put.html +88 -53
- data/test/testdata/expected_save.html +88 -52
- data/test/testdata/expected_savehtml.html +88 -52
- data/test/testdata/expected_search.html +68 -53
- data/test/testdata/expected_upload.html +88 -53
- data/test/testdata/expected_versions.html +97 -82
- data/test/testdata/expected_view.html +97 -61
- data/test/testdata/firewall/iptables.config +37 -0
- data/test/testdata/firewall/user_blacklist.txt +162 -0
- data/test/testdata/logs/wiki.log +652 -0
- data/test/testdata/logs/wiki.log.0 +113 -0
- data/test/testdata/logs/wiki.log.1 +113 -0
- data/test/testdata/logs/wiki.log.2 +113 -0
- data/test/testdata/logs/wiki.log.3 +115 -0
- data/test/testdata/logs/wiki.log.4 +5 -0
- data/test/testdata/logs/wiki.log.5 +7 -0
- data/test/testdata/logs/wiki.log.6 +5 -0
- data/test/testdata/logs/wiki.log.7 +118 -0
- data/test/testdata/logs/wiki.log.8 +12 -0
- data/test/testdata/site/html/Xpday/rss.xml +53 -103
- data/test/testdata/texts/Bugs/FrontPage.txt +6 -0
- data/test/testdata/texts/Bugs/NoHidden.spam +17850 -0
- data/test/testdata/texts/Bugs/PairProgrammingParties.spam +102 -0
- data/test/testdata/texts/Bugs/PairProgrammingParties.txt +99 -0
- metadata +53 -7
- data/test/TestMail.rb +0 -29
- data/test/gc.log +0 -2
@@ -1,85 +1,100 @@
|
|
1
1
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
2
|
<HTML>
|
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
|
-
|
3
|
+
<HEAD>
|
4
|
+
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
5
|
+
<META http-equiv="Pragma" content="no-cache">
|
6
|
+
<META name="Author" content="Pascal Van Cauwenberghe">
|
7
|
+
<META name="Keywords" content="ruby,wiki">
|
8
|
+
<LINK rel="stylesheet" href="/html/Xpday/style.css" type="text/css">
|
9
|
+
<LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="/html/Xpday/rss.xml">
|
10
|
+
<META name="robots" content="noindex,nofollow">
|
11
|
+
<TITLE>
|
12
|
+
Versions of 'FrontPage'
|
13
|
+
</TITLE>
|
14
|
+
</HEAD>
|
15
|
+
<BODY>
|
16
|
+
<table id="container">
|
17
|
+
<tr>
|
18
|
+
<td colspan="2" id="header">
|
19
|
+
<TABLE border="0" cellpadding="0" cellspacing="0" width="95%" class="Header">
|
20
|
+
<TR>
|
21
|
+
<TD><H1>Versions of 'FrontPage'</H1>
|
22
|
+
</TD>
|
23
|
+
<td align="right"><a href="/view/Xpday/FrontPage">Home</a></td>
|
24
|
+
</TR>
|
25
|
+
</TABLE>
|
26
|
+
</td>
|
27
|
+
</tr>
|
28
|
+
<tr>
|
29
|
+
<td id="menu" valign="top" nowrap>
|
30
|
+
|
31
|
+
<ul>
|
32
|
+
<li>
|
33
|
+
<a href="/changes/Xpday" rel="nofollow">Recent changes</a>
|
34
|
+
</li>
|
35
|
+
<li>
|
36
|
+
<a href="/html/Xpday/rss.xml"><img src="/html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
|
37
|
+
</li>
|
38
|
+
</ul>
|
39
|
+
</td>
|
40
|
+
<td id="body" width="100%" valign="top">
|
41
|
+
<TABLE border="0" width="100%">
|
42
|
+
<TR>
|
43
|
+
<td>
|
44
|
+
<table class="topiclist">
|
45
|
+
|
46
|
+
<tr class="even">
|
47
|
+
<td class="date">DATE</td>
|
48
|
+
<td class="topic"><a href="/view/Xpday/FrontPage?version=1">FrontPage</a></td>
|
49
|
+
<td class="author"><a href="/search/Xpday?text=goodguy" rel="nofollow">goodguy</a></td>
|
50
|
+
<td class="topic"><a href="/sidebyside/Xpday/FrontPage?from=0&to=1" rel="nofollow">compare</a></td>
|
51
|
+
<td class="topic"><a href="/diff/Xpday/FrontPage?from=0&to=1" rel="nofollow">diff</a></td>
|
52
|
+
|
53
|
+
</tr>
|
54
|
+
|
55
|
+
<tr class="odd">
|
56
|
+
<td class="date"> </td>
|
57
|
+
<td class="topic"><a href="/view/Xpday/FrontPage?version=0">FrontPage</a></td>
|
58
|
+
<td class="author"><a href="/search/Xpday?text=goodgirl" rel="nofollow">goodgirl</a></td>
|
59
|
+
<td class="topic"></td>
|
60
|
+
<td class="topic"></td>
|
61
|
+
|
62
|
+
</tr>
|
63
|
+
|
64
|
+
</table>
|
65
|
+
</td>
|
66
|
+
</TR>
|
67
|
+
</TABLE>
|
68
|
+
</td>
|
69
|
+
</tr>
|
70
|
+
<tr>
|
71
|
+
<td colspan="2" id="footer">
|
72
|
+
<TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
|
73
|
+
<TR>
|
74
|
+
<TD width="50%">
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
</TD>
|
79
|
+
<TD width="50%" align="right">
|
80
|
+
Contact the site administrator:
|
81
|
+
<a href="/view/Xpday/MailFormattingRules" rel="nofollow" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '@' + 'nayima.be'">wiki2go</a>
|
82
|
+
</TD>
|
83
|
+
</TR>
|
84
|
+
<tr><td colspan="2"><hr></td></tr>
|
85
|
+
<tr>
|
86
|
+
<td><FORM action="/search/Xpday" method="post" id="search" name="search">
|
87
|
+
Search for <INPUT name="text" size="30" ID="Text1"> <input type="submit" name="Go" value="Go">
|
88
|
+
</FORM>
|
89
|
+
</td>
|
90
|
+
<td>
|
91
|
+
|
92
|
+
</td>
|
93
|
+
</tr>
|
94
|
+
</TABLE>
|
95
|
+
</td>
|
96
|
+
</tr>
|
31
97
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
</tr>
|
37
|
-
|
38
|
-
<tr class="odd">
|
39
|
-
<td class="date"> </td>
|
40
|
-
<td class="author">pvc</td>
|
41
|
-
|
42
|
-
</tr>
|
43
|
-
|
44
|
-
<tr class="even">
|
45
|
-
<td class="date"> </td>
|
46
|
-
<td class="author">johan</td>
|
47
|
-
|
48
|
-
</tr>
|
49
|
-
|
50
|
-
<tr class="odd">
|
51
|
-
<td class="date">10/07/2004</td>
|
52
|
-
<td class="author">pvc</td>
|
53
|
-
|
54
|
-
</tr>
|
55
|
-
|
56
|
-
</table>
|
57
|
-
</td>
|
58
|
-
</TR>
|
59
|
-
</TABLE>
|
60
|
-
</TD>
|
61
|
-
</TR>
|
62
|
-
</TABLE>
|
63
|
-
<TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer" ID="Table1">
|
64
|
-
<TR>
|
65
|
-
<TD width="50%"><a href="changes/Xpday">Recent changes</a></TD>
|
66
|
-
<TD width="50%">
|
67
|
-
<FORM action="search/Xpday" method="post" id="form1" name="form1">
|
68
|
-
Search: <INPUT name="text" size="30" ID="Text1">
|
69
|
-
</FORM>
|
70
|
-
</TD>
|
71
|
-
</TR>
|
72
|
-
<TR>
|
73
|
-
<td><a href="html/Xpday/rss.xml"><img src="html/xml.gif" width="36" height="14" border="0" alt="Keep informed"></a>
|
74
|
-
</td>
|
75
|
-
<TD align="right">
|
76
|
-
Contact the site administrator: <a href="view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '@' + 'nayima.be'">wiki2go</a>
|
77
|
-
</TD>
|
78
|
-
</TR>
|
79
|
-
</TABLE>
|
80
|
-
</TD>
|
81
|
-
</TR>
|
82
|
-
</TABLE>
|
83
|
-
</div>
|
84
|
-
</BODY>
|
85
|
-
</HTML>
|
98
|
+
</table>
|
99
|
+
</BODY>
|
100
|
+
</HTML>
|
@@ -1,33 +1,67 @@
|
|
1
1
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
2
|
<HTML>
|
3
3
|
<HEAD>
|
4
|
-
<BASE href="http://localhost/">
|
5
4
|
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
6
5
|
<META http-equiv="Pragma" content="no-cache">
|
7
6
|
<META name="Author" content="Pascal Van Cauwenberghe">
|
8
7
|
<META name="Keywords" content="ruby,wiki">
|
9
8
|
<LINK rel="stylesheet" href="/html/Xpday/style.css" type="text/css">
|
10
9
|
<LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="/html/Xpday/rss.xml">
|
11
|
-
<TITLE>
|
10
|
+
<TITLE>
|
11
|
+
|
12
|
+
Xpday
|
13
|
+
-
|
14
|
+
|
15
|
+
homepage
|
16
|
+
</TITLE>
|
12
17
|
</HEAD>
|
13
18
|
<BODY>
|
14
|
-
<
|
15
|
-
<
|
16
|
-
<
|
17
|
-
<
|
18
|
-
<
|
19
|
-
<
|
20
|
-
|
21
|
-
</
|
22
|
-
|
23
|
-
</
|
24
|
-
</
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
<
|
19
|
+
<table id="container">
|
20
|
+
<tr>
|
21
|
+
<td colspan="2" id="header">
|
22
|
+
<TABLE border="0" cellpadding="0" cellspacing="0" width="95%" class="Header">
|
23
|
+
<TR>
|
24
|
+
<TD><h1><a href="/search/Xpday?text=FrontPage" rel="nofollow">homepage</a>
|
25
|
+
|
26
|
+
</h1>
|
27
|
+
</TD>
|
28
|
+
<td align="right"><a href="/view/Xpday/FrontPage">Home</a></td>
|
29
|
+
</TR>
|
30
|
+
</TABLE>
|
31
|
+
</td>
|
32
|
+
</tr>
|
33
|
+
<tr>
|
34
|
+
<td id="menu" valign="top" nowrap>
|
35
|
+
|
36
|
+
<ul>
|
37
|
+
<li>
|
38
|
+
<a href="/versions/Xpday/FrontPage" rel="nofollow">Page History</a>
|
39
|
+
</li>
|
40
|
+
<li>
|
41
|
+
<a href="/sidebyside/Xpday/FrontPage" rel="nofollow">What changed?</a>
|
42
|
+
</li>
|
43
|
+
<li>
|
44
|
+
<a href="/diff/Xpday/FrontPage" rel="nofollow">Diff</a>
|
45
|
+
</li>
|
46
|
+
<li>
|
47
|
+
<a href="/wikiedit/Xpday/FrontPage" rel="nofollow">Edit this page</a>
|
48
|
+
</li>
|
49
|
+
</ul>
|
50
|
+
<hr>
|
51
|
+
|
52
|
+
<ul>
|
53
|
+
<li>
|
54
|
+
<a href="/changes/Xpday" rel="nofollow">Recent changes</a>
|
55
|
+
</li>
|
56
|
+
<li>
|
57
|
+
<a href="/html/Xpday/rss.xml"><img src="/html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
|
58
|
+
</li>
|
59
|
+
</ul>
|
60
|
+
</td>
|
61
|
+
<td id="body" width="100%" valign="top">
|
62
|
+
<h2>Welcome to XP Day Benelux 2003</h2>
|
29
63
|
<h3>21 November 2003</h3>
|
30
|
-
<h3>NAC BREDA "MyCom<a href="/
|
64
|
+
<h3>NAC BREDA "MyCom<a href="/wikiedit/Xpday/MyCom" rel="nofollow">?</a>" Football stadium, Breda, The Netherlands</h3>
|
31
65
|
<hr>
|
32
66
|
The XP Day Benelux is a one day conference about all aspects of Extreme Programming and other agile software development methods like DSDM, Scrum, Feature-driven development, and Crystal. See the "<a href="/redirect/Xpday?url=http%3A%2F%2Fwww.agilemanifesto.org" rel="nofollow" target="_blank">Agile Manifesto</a>" for the principles of agile software development.
|
33
67
|
<p>
|
@@ -41,57 +75,59 @@ This event was organized by members of the <a href="http://www.xp.be" target="_b
|
|
41
75
|
<p>
|
42
76
|
<STRONG> LATEST NEWS:</STRONG>
|
43
77
|
<p>
|
44
|
-
<ul><li> <STRONG>The next XP Day Benelux will take place on 19 November 2004 in Mechelen, Belgium</STRONG>. See FrontPage<a href="/
|
78
|
+
<ul><li> <STRONG>The next XP Day Benelux will take place on 19 November 2004 in Mechelen, Belgium</STRONG>. See FrontPage<a href="/wikiedit/Xpday2004/FrontPage" rel="nofollow">?</a>
|
45
79
|
<li> The conference is now over. The organizers had lots of fun and learned a lot. We hope you did too.
|
46
|
-
<li> Session presentations and workshop transcripts available from the Program<a href="/
|
47
|
-
<li> Images from the event are available at XpDay2003Pictures<a href="/
|
48
|
-
<li> Now the conference is over, the story can be told, over at Xpday2003Story<a href="/
|
80
|
+
<li> Session presentations and workshop transcripts available from the Program<a href="/wikiedit/Xpday/Program" rel="nofollow">?</a> page
|
81
|
+
<li> Images from the event are available at XpDay2003Pictures<a href="/wikiedit/Xpday/XpDay2003Pictures" rel="nofollow">?</a> and more at <a href="/redirect/Xpday?url=http%3A%2F%2Fwww.willemvandenende.com%2Fimages%2F2003%2Fxpdaybenelux%2F" rel="nofollow" target="_blank">http://www.willemvandenende.com/images/2003/xpdaybenelux/</a>
|
82
|
+
<li> Now the conference is over, the story can be told, over at Xpday2003Story<a href="/wikiedit/Xpday/Xpday2003Story" rel="nofollow">?</a>
|
49
83
|
</ul>
|
50
84
|
<hr>
|
51
85
|
<p>
|
52
|
-
<ul><li> See the conference Program<a href="/
|
53
|
-
<li> The ConferenceLocation<a href="/
|
86
|
+
<ul><li> See the conference Program<a href="/wikiedit/Xpday/Program" rel="nofollow">?</a> for a list of sessions and presenters. There is also a <a href="/html/Xpday/programma.pdf" target="_blank">printable version</a>
|
87
|
+
<li> The ConferenceLocation<a href="/wikiedit/Xpday/ConferenceLocation" rel="nofollow">?</a> page tells you all about the location and acces by car and public transport.
|
54
88
|
<li> Download the <a href="/html/Xpday/flyer.pdf" target="_blank">flyer</a>.
|
55
|
-
<li> RelatedEvents<a href="/
|
89
|
+
<li> RelatedEvents<a href="/wikiedit/Xpday/RelatedEvents" rel="nofollow">?</a>
|
56
90
|
</ul>
|
57
91
|
<hr>
|
58
92
|
<p>
|
59
|
-
XP Day Benelux is an Organisation<a href="/
|
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
|
-
</TR>
|
93
|
+
XP Day Benelux is an Organisation<a href="/wikiedit/Xpday/Organisation" rel="nofollow">?</a> of AgileSystems<a href="/wikiedit/Xpday/AgileSystems" rel="nofollow">?</a> vzwFor more information, the organizers can be contacted at: <a href="/view/Xpday/MailFormattingRules" rel="nofollow" onmouseover="this.href='mai' + 'lto:' + 'xpdayinfo' + '@' + 'xpday.be'">xpdayinfo</a>
|
94
|
+
</td>
|
95
|
+
</tr>
|
96
|
+
<tr>
|
97
|
+
<td colspan="2" id="footer">
|
98
|
+
<TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
|
99
|
+
<TR>
|
100
|
+
<TD width="50%">
|
101
|
+
|
102
|
+
<a href="/sidebyside/Xpday/FrontPage" rel="nofollow">Changed</a>
|
103
|
+
on
|
104
|
+
08/03/2005
|
105
|
+
by
|
106
|
+
<a href="/search/Xpday?text=pvc" rel="nofollow">pvc</a>
|
107
|
+
|
108
|
+
</TD>
|
109
|
+
<TD width="50%" align="right">
|
110
|
+
Contact the site administrator:
|
111
|
+
<a href="/view/Xpday/MailFormattingRules" rel="nofollow" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '@' + 'nayima.be'">wiki2go</a>
|
112
|
+
</TD>
|
113
|
+
</TR>
|
114
|
+
<tr><td colspan="2"><hr></td></tr>
|
115
|
+
<tr>
|
116
|
+
<td><FORM action="/search/Xpday" method="post" id="search" name="search">
|
117
|
+
Search for <INPUT name="text" size="30" ID="Text1"> <input type="submit" name="Go" value="Go">
|
118
|
+
</FORM>
|
119
|
+
</td>
|
120
|
+
<td>
|
121
|
+
|
122
|
+
</td>
|
123
|
+
</tr>
|
91
124
|
</TABLE>
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
125
|
+
</td>
|
126
|
+
</tr>
|
127
|
+
</table>
|
128
|
+
<span style="float:right">
|
129
|
+
<a target="_blank" href="http://validator.w3.org/check?uri=http://localhost/view/Xpday/FrontPage">
|
130
|
+
<img border="0" src="/html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
|
131
|
+
</span>
|
96
132
|
</BODY>
|
97
133
|
</HTML>
|
@@ -0,0 +1,37 @@
|
|
1
|
+
*filter
|
2
|
+
|
3
|
+
# Allows all loopback (lo0) traffic
|
4
|
+
-A INPUT -i lo -j ACCEPT
|
5
|
+
# Drop all loopback addressed traffic not on the loopback adapter
|
6
|
+
-A INPUT -i ! lo -d 127.0.0.0/8 -j REJECT
|
7
|
+
|
8
|
+
# Accept SSH connections
|
9
|
+
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
|
10
|
+
|
11
|
+
|
12
|
+
# Allows all established and related inbound connections
|
13
|
+
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
|
14
|
+
|
15
|
+
# All outbound traffic accepted
|
16
|
+
-A OUTPUT -j ACCEPT
|
17
|
+
|
18
|
+
# Keep out losers
|
19
|
+
-A INPUT -p tcp --dport 80 --source 203.162.2.133 -j LOG --log-prefix "oepsie" --log-level 7
|
20
|
+
-A INPUT -p tcp --dport 80 --source 203.162.2.133 -j REJECT
|
21
|
+
-A INPUT -p tcp --dport 80 --source 78.129.208.30 -j LOG --log-prefix "oepsie" --log-level 7
|
22
|
+
-A INPUT -p tcp --dport 80 --source 78.129.208.30 -j REJECT
|
23
|
+
|
24
|
+
-A INPUT -p tcp -m state --state NEW -j ACCEPT
|
25
|
+
-A INPUT -p udp -m state --state NEW -j ACCEPT
|
26
|
+
|
27
|
+
# Respond to ping
|
28
|
+
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
|
29
|
+
|
30
|
+
# log iptables denied packets up to 5 a minute
|
31
|
+
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7
|
32
|
+
|
33
|
+
# Reject all other inbound traffic
|
34
|
+
-A INPUT -j REJECT
|
35
|
+
-A FORWARD -j REJECT
|
36
|
+
|
37
|
+
COMMIT
|
@@ -0,0 +1,162 @@
|
|
1
|
+
118\.98\.163\.170
|
2
|
+
118\.98\.176\.4
|
3
|
+
121\.124\.104\.110
|
4
|
+
121\.14\.241\.67
|
5
|
+
121\.9\.205\.131
|
6
|
+
123\.252\.192\.155
|
7
|
+
124\.146\.182\.218
|
8
|
+
124\.146\.182\.220
|
9
|
+
124\.254\.31\.91
|
10
|
+
125\.243\.119\.194
|
11
|
+
137\.164\.143\.110
|
12
|
+
140\.109\.195\.62
|
13
|
+
148\.208\.238\.253
|
14
|
+
156\.17\.75\.95
|
15
|
+
161\.116\.153\.5
|
16
|
+
163\.28\.96\.15
|
17
|
+
164\.116\.224\.11
|
18
|
+
189\.21\.62\.2
|
19
|
+
189\.2\.189\.131
|
20
|
+
189\.34\.129\.30
|
21
|
+
189\.56\.42\.212
|
22
|
+
189\.77\.28\.219
|
23
|
+
190\.187\.13\.194
|
24
|
+
192\.93\.19\.10
|
25
|
+
193\.188\.105\.235
|
26
|
+
195\.75\.146\.228
|
27
|
+
198\.151\.38\.70
|
28
|
+
200\.118\.2\.162
|
29
|
+
200\.141\.141\.202
|
30
|
+
200\.150\.70\.10
|
31
|
+
200\.157\.216\.20
|
32
|
+
200\.165\.133\.72
|
33
|
+
200\.172\.34\.51
|
34
|
+
200\.175\.110\.75
|
35
|
+
200\.189\.232\.81
|
36
|
+
200\.196\.119\.231
|
37
|
+
200\.216\.66\.243
|
38
|
+
200\.25\.194\.154
|
39
|
+
200\.63\.213\.2
|
40
|
+
200\.75\.8\.98
|
41
|
+
201\.15\.195\.238
|
42
|
+
201\.18\.158\.93
|
43
|
+
201\.38\.155\.2
|
44
|
+
201\.62\.170\.114
|
45
|
+
201\.76\.128\.10
|
46
|
+
201\.91\.135\.204
|
47
|
+
202\.120\.139\.212
|
48
|
+
202\.138\.93\.231
|
49
|
+
202\.45\.119\.134
|
50
|
+
202\.53\.236\.26
|
51
|
+
202\.96\.187\.22
|
52
|
+
203\.144\.143\.12
|
53
|
+
203\.144\.144\.164
|
54
|
+
203\.144\.160\.244
|
55
|
+
203\.144\.160\.245
|
56
|
+
203\.144\.160\.251
|
57
|
+
203\.146\.213\.180
|
58
|
+
203\.158\.221\.227
|
59
|
+
203\.158\.226\.251
|
60
|
+
203\.160\.1\.138
|
61
|
+
203\.162\.2\.133
|
62
|
+
203\.162\.2\.134
|
63
|
+
203\.162\.2\.135
|
64
|
+
203\.162\.2\.136
|
65
|
+
203\.162\.2\.137
|
66
|
+
203\.172\.184\.19
|
67
|
+
203\.189\.68\.3
|
68
|
+
203\.198\.126\.106
|
69
|
+
203\.222\.31\.64
|
70
|
+
203\.7\.207\.100
|
71
|
+
203\.7\.207\.101
|
72
|
+
206\.55\.180\.50
|
73
|
+
207\.182\.137\.18
|
74
|
+
207\.197\.99\.209
|
75
|
+
208\.17\.215\.235
|
76
|
+
208\.46\.77\.228
|
77
|
+
209\.9\.243\.185
|
78
|
+
210\.196\.64\.114
|
79
|
+
210\.22\.176\.75
|
80
|
+
210\.41\.224\.237
|
81
|
+
210\.51\.14\.197
|
82
|
+
212\.116\.219\.108
|
83
|
+
212\.200\.126\.69
|
84
|
+
212\.241\.180\.239
|
85
|
+
212\.241\.183\.143
|
86
|
+
212\.24\.224\.18
|
87
|
+
212\.76\.224\.165
|
88
|
+
213\.140\.18\.143
|
89
|
+
216\.255\.187\.158
|
90
|
+
216\.72\.6\.139
|
91
|
+
217\.219\.115\.190
|
92
|
+
218\.16\.118\.173
|
93
|
+
218\.25\.214\.216
|
94
|
+
218\.26\.219\.186
|
95
|
+
218\.26\.91\.74
|
96
|
+
218\.57\.243\.50
|
97
|
+
218\.75\.83\.98
|
98
|
+
219\.103\.162\.186
|
99
|
+
219\.179\.68\.106
|
100
|
+
219\.240\.12\.175
|
101
|
+
219\.9\.158\.168
|
102
|
+
220\.132\.190\.23
|
103
|
+
221\.120\.250\.104
|
104
|
+
221\.120\.250\.106
|
105
|
+
221\.120\.250\.9
|
106
|
+
222\.122\.28\.230
|
107
|
+
222\.141\.220\.168
|
108
|
+
222\.243\.199\.150
|
109
|
+
222\.243\.209\.7
|
110
|
+
222\.35\.3\.83
|
111
|
+
222\.73\.57\.233
|
112
|
+
58\.97\.1\.24
|
113
|
+
60\.191\.73\.186
|
114
|
+
60\.247\.100\.2
|
115
|
+
60\.28\.31\.194
|
116
|
+
60\.6\.241\.101
|
117
|
+
61\.132\.253\.193
|
118
|
+
61\.155\.41\.165
|
119
|
+
61\.175\.194\.110
|
120
|
+
61\.180\.236\.222
|
121
|
+
61\.19\.54\.164
|
122
|
+
61\.86\.48\.145
|
123
|
+
61\.89\.211\.45
|
124
|
+
62\.3\.32\.27
|
125
|
+
62\.97\.246\.238
|
126
|
+
63\.226\.162\.114
|
127
|
+
64\.250\.235\.238
|
128
|
+
64\.34\.173\.112
|
129
|
+
65\.114\.105\.100
|
130
|
+
65\.198\.140\.246
|
131
|
+
66\.135\.96\.95
|
132
|
+
66\.240\.35\.204
|
133
|
+
66\.99\.246\.227
|
134
|
+
69\.64\.92\.128
|
135
|
+
70\.84\.230\.34
|
136
|
+
72\.55\.188\.165
|
137
|
+
77\.30\.112\.200
|
138
|
+
78\.107\.253\.167
|
139
|
+
78\.129\.208\.115
|
140
|
+
78\.129\.208\.20
|
141
|
+
78\.129\.208\.30
|
142
|
+
78\.61\.110\.150
|
143
|
+
78\.61\.87\.11
|
144
|
+
80\.191\.83\.5
|
145
|
+
80\.199\.118\.210
|
146
|
+
80\.70\.22\.122
|
147
|
+
80\.71\.249\.147
|
148
|
+
82\.230\.171\.62
|
149
|
+
82\.3\.50\.102
|
150
|
+
83\.167\.114\.225
|
151
|
+
83\.229\.21\.7
|
152
|
+
83\.238\.44\.8
|
153
|
+
84\.204\.87\.201
|
154
|
+
85\.236\.136\.221
|
155
|
+
85\.91\.81\.188
|
156
|
+
85\.91\.82\.38
|
157
|
+
86\.105\.181\.238
|
158
|
+
87\.230\.22\.233
|
159
|
+
89\.149\.197\.252
|
160
|
+
89\.149\.244\.45
|
161
|
+
91\.197\.128\.6
|
162
|
+
91\.74\.160\.18
|