yawast 0.2.0.beta1
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.
- checksums.yaml +7 -0
- data/.gitignore +21 -0
- data/.ruby-version +1 -0
- data/.travis.yml +7 -0
- data/README.md +454 -0
- data/Rakefile +9 -0
- data/bin/yawast +69 -0
- data/lib/commands/cms.rb +10 -0
- data/lib/commands/head.rb +12 -0
- data/lib/commands/scan.rb +11 -0
- data/lib/commands/ssl.rb +11 -0
- data/lib/commands/utils.rb +36 -0
- data/lib/resources/common.txt +1960 -0
- data/lib/scanner/apache.rb +72 -0
- data/lib/scanner/cms.rb +14 -0
- data/lib/scanner/core.rb +95 -0
- data/lib/scanner/generic.rb +323 -0
- data/lib/scanner/iis.rb +63 -0
- data/lib/scanner/nginx.rb +13 -0
- data/lib/scanner/obj_presence.rb +63 -0
- data/lib/scanner/php.rb +19 -0
- data/lib/scanner/ssl.rb +237 -0
- data/lib/scanner/ssl_labs.rb +491 -0
- data/lib/shared/http.rb +67 -0
- data/lib/string_ext.rb +16 -0
- data/lib/uri_ext.rb +5 -0
- data/lib/util.rb +25 -0
- data/lib/yawast.rb +57 -0
- data/test/base.rb +43 -0
- data/test/data/apache_server_info.txt +486 -0
- data/test/data/apache_server_status.txt +184 -0
- data/test/data/cms_none_body.txt +242 -0
- data/test/data/cms_wordpress_body.txt +467 -0
- data/test/data/iis_server_header.txt +13 -0
- data/test/data/tomcat_release_notes.txt +172 -0
- data/test/data/wordpress_readme_html.txt +86 -0
- data/test/test_cmd_util.rb +35 -0
- data/test/test_helper.rb +5 -0
- data/test/test_object_presence.rb +36 -0
- data/test/test_scan_apache_banner.rb +58 -0
- data/test/test_scan_apache_server_info.rb +22 -0
- data/test/test_scan_apache_server_status.rb +22 -0
- data/test/test_scan_cms.rb +27 -0
- data/test/test_scan_iis_headers.rb +40 -0
- data/test/test_scan_nginx_banner.rb +18 -0
- data/test/test_shared_http.rb +40 -0
- data/test/test_shared_util.rb +44 -0
- data/test/test_string_ext.rb +15 -0
- data/test/test_yawast.rb +17 -0
- data/yawast.gemspec +35 -0
- metadata +283 -0
@@ -0,0 +1,184 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
2
|
+
<html><head>
|
3
|
+
<title>Apache Status</title>
|
4
|
+
</head><body>
|
5
|
+
<h1>Apache Server Status for www.apache.org (via 140.211.11.105)</h1>
|
6
|
+
|
7
|
+
<dl><dt>Server Version: Apache/2.4.7 (Ubuntu) OpenSSL/1.0.1f</dt>
|
8
|
+
<dt>Server MPM: event</dt>
|
9
|
+
<dt>Server Built: Sep 2 2015 13:02:10
|
10
|
+
</dt></dl><hr /><dl>
|
11
|
+
<dt>Current Time: Saturday, 06-Feb-2016 21:08:34 UTC</dt>
|
12
|
+
<dt>Restart Time: Monday, 02-Nov-2015 20:22:09 UTC</dt>
|
13
|
+
<dt>Parent Server Config. Generation: 97</dt>
|
14
|
+
<dt>Parent Server MPM Generation: 96</dt>
|
15
|
+
<dt>Server uptime: 96 days 46 minutes 25 seconds</dt>
|
16
|
+
<dt>Server load: 1.74 1.98 1.99</dt>
|
17
|
+
<dt>Total accesses: 1003515622 - Total Traffic: 44137.0 GB</dt>
|
18
|
+
<dt>CPU Usage: u38687.4 s1293.05 cu0 cs0 - .482% CPU load</dt>
|
19
|
+
<dt>121 requests/sec - 5.4 MB/second - 46.1 kB/request</dt>
|
20
|
+
<dt>221 requests currently being processed, 529 idle workers</dt>
|
21
|
+
</dl>
|
22
|
+
|
23
|
+
<table rules="all" cellpadding="1%">
|
24
|
+
<tr><th rowspan="2">PID</th><th colspan="2">Connections</th>
|
25
|
+
<th colspan="2">Threads</th><th colspan="4">Async connections</th></tr>
|
26
|
+
<tr><th>total</th><th>accepting</th><th>busy</th><th>idle</th><th>writing</th><th>keep-alive</th><th>closing</th></tr>
|
27
|
+
<tr><td>6819</td><td>148</td><td>yes</td><td>32</td><td>118</td><td>1</td><td>89</td><td>26</td></tr>
|
28
|
+
<tr><td>46349</td><td>340</td><td>no</td><td>68</td><td>82</td><td>3</td><td>241</td><td>28</td></tr>
|
29
|
+
<tr><td>8306</td><td>281</td><td>yes</td><td>68</td><td>82</td><td>1</td><td>176</td><td>38</td></tr>
|
30
|
+
<tr><td>7921</td><td>91</td><td>yes</td><td>23</td><td>127</td><td>1</td><td>49</td><td>17</td></tr>
|
31
|
+
<tr><td>8076</td><td>118</td><td>yes</td><td>30</td><td>120</td><td>0</td><td>76</td><td>15</td></tr>
|
32
|
+
<tr><td>Sum</td><td>978</td><td> </td><td>221</td><td>529</td><td>6</td><td>631</td><td>124</td></tr>
|
33
|
+
</table>
|
34
|
+
<pre>................................................................
|
35
|
+
................................................................
|
36
|
+
................................................................
|
37
|
+
................................................................
|
38
|
+
............................................R_R___WR____________
|
39
|
+
____RW__R____W____W____RR_____R___WR_____________W____W____R___R
|
40
|
+
__R_W_R_R_R___W_________________W_RR_________W_________RR_R_____
|
41
|
+
W_..............................................................
|
42
|
+
................................................................
|
43
|
+
........................RW_RR___R____WR__W______W_R_RWW_WR__RR_R
|
44
|
+
__WRR_R____R_W_WR____R________R_R_WW__RWRWRRW___R_RW_R___RR_RR_R
|
45
|
+
__R_W_____RWW__R_R_WRR__WW_RWWW_RWW__R__R_____..................
|
46
|
+
................................................................
|
47
|
+
................................................................
|
48
|
+
................................................................
|
49
|
+
................................................................
|
50
|
+
................................................................
|
51
|
+
................................................................
|
52
|
+
................................................................
|
53
|
+
................................................................
|
54
|
+
................................................................
|
55
|
+
......__R_WR______R_R_RRW___WW_RR__R_____W_RR__RR_R__R___R_W_WRW
|
56
|
+
R____RR_RW_WWW_W______W________R_W_RW_RW__WRR__R__RRR__RWRR_____
|
57
|
+
W_RR___WRW_RRRW_WR_W_____WRR....................................
|
58
|
+
................................................................
|
59
|
+
................................................................
|
60
|
+
................................................................
|
61
|
+
................................................................
|
62
|
+
................................................................
|
63
|
+
................................................................
|
64
|
+
..............................__________W__W_WR_____R_______R__R
|
65
|
+
________________WWW________________R___R________W__W________R___
|
66
|
+
_______________R_W_RW_____________R____W_____R_R_____W_________W
|
67
|
+
____W__R________W__________________R_________R__R__W_W_______W__
|
68
|
+
R__W___________R______R__W___WW____R___RW__R_R__RWWR___W________
|
69
|
+
__R_R_____......................................................
|
70
|
+
................................................................
|
71
|
+
................................................................
|
72
|
+
................................................................
|
73
|
+
................................................................
|
74
|
+
................................................................
|
75
|
+
................................................................
|
76
|
+
................................................................
|
77
|
+
................................................................
|
78
|
+
................................................................
|
79
|
+
................................................................
|
80
|
+
................................................................
|
81
|
+
................................................................
|
82
|
+
................................................................
|
83
|
+
................................................................
|
84
|
+
................................................................
|
85
|
+
................................................................
|
86
|
+
................................................................
|
87
|
+
................................................................
|
88
|
+
................................................................
|
89
|
+
................................................................
|
90
|
+
................................................................
|
91
|
+
................................................................
|
92
|
+
......................................</pre>
|
93
|
+
<p>Scoreboard Key:<br />
|
94
|
+
"<b><code>_</code></b>" Waiting for Connection,
|
95
|
+
"<b><code>S</code></b>" Starting up,
|
96
|
+
"<b><code>R</code></b>" Reading Request,<br />
|
97
|
+
"<b><code>W</code></b>" Sending Reply,
|
98
|
+
"<b><code>K</code></b>" Keepalive (read),
|
99
|
+
"<b><code>D</code></b>" DNS Lookup,<br />
|
100
|
+
"<b><code>C</code></b>" Closing connection,
|
101
|
+
"<b><code>L</code></b>" Logging,
|
102
|
+
"<b><code>G</code></b>" Gracefully finishing,<br />
|
103
|
+
"<b><code>I</code></b>" Idle cleanup of worker,
|
104
|
+
"<b><code>.</code></b>" Open slot with no current process<br />
|
105
|
+
<p />
|
106
|
+
|
107
|
+
|
108
|
+
<table border="0"><tr><th>Srv</th><th>PID</th><th>Acc</th><th>M</th><th>CPU
|
109
|
+
</th><th>SS</th><th>Req</th><th>Conn</th><th>Child</th><th>Slot</th><th>Client</th><th>VHost</th><th>Request</th></tr>
|
110
|
+
|
111
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/872812</td><td>.
|
112
|
+
</td><td>2278.44</td><td>8185</td><td>364</td><td>0.0</td><td>0.00</td><td>38242.98
|
113
|
+
</td><td>12.3.83.92</td><td nowrap></td><td nowrap></td></tr>
|
114
|
+
|
115
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/873334</td><td>.
|
116
|
+
</td><td>2277.17</td><td>8185</td><td>10921</td><td>0.0</td><td>0.00</td><td>38862.97
|
117
|
+
</td><td>212.47.227.72</td><td nowrap>www.apache.org:80</td><td nowrap>POST / HTTP/1.1</td></tr>
|
118
|
+
|
119
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/872621</td><td>.
|
120
|
+
</td><td>2277.42</td><td>8185</td><td>10599</td><td>0.0</td><td>0.00</td><td>39611.80
|
121
|
+
</td><td>212.47.227.72</td><td nowrap>www.apache.org:80</td><td nowrap>POST / HTTP/1.1</td></tr>
|
122
|
+
|
123
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/871925</td><td>.
|
124
|
+
</td><td>2277.11</td><td>8185</td><td>10023</td><td>0.0</td><td>0.00</td><td>36812.04
|
125
|
+
</td><td>81.180.113.103</td><td nowrap>www.openoffice.org:443</td><td nowrap>NULL</td></tr>
|
126
|
+
|
127
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/872323</td><td>.
|
128
|
+
</td><td>2279.20</td><td>8185</td><td>10495</td><td>0.0</td><td>0.00</td><td>38449.78
|
129
|
+
</td><td>212.47.227.72</td><td nowrap>www.apache.org:80</td><td nowrap>POST / HTTP/1.1</td></tr>
|
130
|
+
|
131
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/871983</td><td>.
|
132
|
+
</td><td>2277.91</td><td>8185</td><td>0</td><td>0.0</td><td>0.00</td><td>37707.66
|
133
|
+
</td><td>41.249.5.187</td><td nowrap>www.openoffice.org:80</td><td nowrap>GET /art/galleries/marketing/web_buttons/nicu/80x15_3.png HTTP/</td></tr>
|
134
|
+
|
135
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/871124</td><td>.
|
136
|
+
</td><td>2278.12</td><td>8185</td><td>0</td><td>0.0</td><td>0.00</td><td>39098.86
|
137
|
+
</td><td>75.107.253.26</td><td nowrap></td><td nowrap></td></tr>
|
138
|
+
|
139
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/873393</td><td>.
|
140
|
+
</td><td>2277.67</td><td>8185</td><td>0</td><td>0.0</td><td>0.00</td><td>40089.63
|
141
|
+
</td><td>54.82.59.182</td><td nowrap>www.apache.org:80</td><td nowrap>GET /index.html?org/apache/struts2/views/freemarker/tags/ElseMo</td></tr>
|
142
|
+
|
143
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/869937</td><td>.
|
144
|
+
</td><td>2279.25</td><td>8185</td><td>120101</td><td>0.0</td><td>0.00</td><td>41553.07
|
145
|
+
</td><td>12.3.83.92</td><td nowrap></td><td nowrap></td></tr>
|
146
|
+
|
147
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/871280</td><td>.
|
148
|
+
</td><td>2277.40</td><td>8185</td><td>10710</td><td>0.0</td><td>0.00</td><td>38879.65
|
149
|
+
</td><td>212.47.227.72</td><td nowrap>www.apache.org:80</td><td nowrap>POST / HTTP/1.1</td></tr>
|
150
|
+
|
151
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/874224</td><td>.
|
152
|
+
</td><td>2277.11</td><td>8185</td><td>10013</td><td>0.0</td><td>0.00</td><td>39515.29
|
153
|
+
</td><td>78.88.84.145</td><td nowrap></td><td nowrap></td></tr>
|
154
|
+
|
155
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/873554</td><td>.
|
156
|
+
</td><td>2279.25</td><td>8185</td><td>120101</td><td>0.0</td><td>0.00</td><td>41065.53
|
157
|
+
</td><td>12.3.83.92</td><td nowrap></td><td nowrap></td></tr>
|
158
|
+
|
159
|
+
<tr><td><b>0-96</b></td><td>-</td><td>0/0/872863</td><td>.
|
160
|
+
</td><td>2277.40</td><td>8185</td><td>3</td><td>0.0</td><td>0.00</td><td>39486.19
|
161
|
+
</td><td>54.147.44.13</td><td nowrap></td><td nowrap></td></tr>
|
162
|
+
|
163
|
+
</table>
|
164
|
+
<hr /> <table>
|
165
|
+
<tr><th>Srv</th><td>Child Server number - generation</td></tr>
|
166
|
+
<tr><th>PID</th><td>OS process ID</td></tr>
|
167
|
+
<tr><th>Acc</th><td>Number of accesses this connection / this child / this slot</td></tr>
|
168
|
+
<tr><th>M</th><td>Mode of operation</td></tr>
|
169
|
+
<tr><th>CPU</th><td>CPU usage, number of seconds</td></tr>
|
170
|
+
<tr><th>SS</th><td>Seconds since beginning of most recent request</td></tr>
|
171
|
+
<tr><th>Req</th><td>Milliseconds required to process most recent request</td></tr>
|
172
|
+
<tr><th>Conn</th><td>Kilobytes transferred this connection</td></tr>
|
173
|
+
<tr><th>Child</th><td>Megabytes transferred this child</td></tr>
|
174
|
+
<tr><th>Slot</th><td>Total megabytes transferred this slot</td></tr>
|
175
|
+
</table>
|
176
|
+
<hr>
|
177
|
+
<table cellspacing=0 cellpadding=0>
|
178
|
+
<tr><td bgcolor="#000000">
|
179
|
+
<b><font color="#ffffff" face="Arial,Helvetica">SSL/TLS Session Cache Status:</font></b>
|
180
|
+
</td></tr>
|
181
|
+
<tr><td bgcolor="#ffffff">
|
182
|
+
cache type: <b>SHMCB</b>, shared memory: <b>512000</b> bytes, current entries: <b>1673</b><br>subcaches: <b>32</b>, indexes per subcache: <b>88</b><br>time left on oldest entries' objects: avg: <b>4</b> seconds, (range: 0...11)<br>index usage: <b>59%</b>, cache usage: <b>68%</b><br>total entries stored since starting: <b>305201</b><br>total entries replaced since starting: <b>0</b><br>total entries expired since starting: <b>301083</b><br>total (pre-expiry) entries scrolled out of the cache: <b>2319</b><br>total retrieves since starting: <b>21725</b> hit, <b>11162</b> miss<br>total removes since starting: <b>0</b> hit, <b>0</b> miss<br></td></tr>
|
183
|
+
</table>
|
184
|
+
</body></html>
|
@@ -0,0 +1,242 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
|
3
|
+
<head profile="http://gmpg.org/xfn/11">
|
4
|
+
<meta charset="utf-8" />
|
5
|
+
<!--
|
6
|
+
<meta property="fb:page_id" content="6427302910" />
|
7
|
+
-->
|
8
|
+
<link href="https://plus.google.com/107188080561309681193" rel="publisher" />
|
9
|
+
<meta name="google-site-verification" content="7VWES_-rcHBcmaQis9mSYamPfNwE03f4vyTj4pfuAw0" />
|
10
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
11
|
+
<meta name="robots" content="noodp">
|
12
|
+
<title>Blog Tool, Publishing Platform, and CMS — WordPress</title>
|
13
|
+
<meta name="referrer" content="always">
|
14
|
+
<link href="//s.w.org/wp-includes/css/dashicons.css?20150710" rel="stylesheet" type="text/css" />
|
15
|
+
<link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css'>
|
16
|
+
<link rel="stylesheet" href="//s.w.org/style/wp4.css?40" />
|
17
|
+
<link media="only screen and (max-device-width: 480px)" href="//s.w.org/style/iphone.css?1" type="text/css" rel="stylesheet" />
|
18
|
+
<link rel="shortcut icon" href="//s.w.org/favicon.ico?2" type="image/x-icon" />
|
19
|
+
<meta name="apple-itunes-app" content="app-id=335703880" />
|
20
|
+
<script type="text/javascript">
|
21
|
+
var _gaq = _gaq || [];
|
22
|
+
_gaq.push(['_setAccount', 'UA-52447-1']);
|
23
|
+
_gaq.push(['_setDomainName', 'wordpress.org']);
|
24
|
+
_gaq.push(['_trackPageview']);
|
25
|
+
(function() {
|
26
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
27
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
28
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
29
|
+
})();
|
30
|
+
function recordOutboundLink(link, category, action) {
|
31
|
+
_gaq.push(['_trackEvent', category, action])
|
32
|
+
setTimeout('document.location = "' + link.href + '"', 100);
|
33
|
+
}
|
34
|
+
</script>
|
35
|
+
<!--[if lte IE 8]>
|
36
|
+
<style type="text/css">
|
37
|
+
@import url("//s.w.org/style/ie.css?1");
|
38
|
+
</style>
|
39
|
+
<![endif]-->
|
40
|
+
<link rel="alternate" type="application/rss+xml" title="WordPress Blog RSS" href="http://wordpress.org/news/feed/" /><script type="text/javascript" src="//s.w.org/wp-includes/js/jquery/jquery.js?v=1.11.1"></script>
|
41
|
+
<script>document.cookie='devicePixelRatio='+((window.devicePixelRatio === undefined) ? 1 : window.devicePixelRatio)+'; path=/';</script>
|
42
|
+
<script type="text/javascript">
|
43
|
+
var toggleMenu = function(){
|
44
|
+
var m = document.getElementById('wporg-header-menu'),
|
45
|
+
c = m.className;
|
46
|
+
m.className = c.match( ' active' ) ? c.replace( ' active', '' ) : c + ' active';
|
47
|
+
}
|
48
|
+
</script>
|
49
|
+
|
50
|
+
</head>
|
51
|
+
|
52
|
+
<body id="wordpress-org" >
|
53
|
+
<div id="wporg-header">
|
54
|
+
<div class="wrapper">
|
55
|
+
<a id="mobile-menu-button" class="" href="#" onclick="toggleMenu();"></a>
|
56
|
+
<h1><a href="//wordpress.org">WordPress.org</a></h1> <div id="head-search">
|
57
|
+
<form action="//wordpress.org/search/do-search.php" method="get">
|
58
|
+
<label for="global-search" class="screen-reader-text">Search WordPress.org for:</label>
|
59
|
+
<input id="global-search" class="text" name="search" type="text" value="" maxlength="150" placeholder="Search WordPress.org" /> <input type="submit" class="button" value="" />
|
60
|
+
</form>
|
61
|
+
</div>
|
62
|
+
<div style="clear:both"></div>
|
63
|
+
|
64
|
+
<ul id="wporg-header-menu">
|
65
|
+
<li><a href='//wordpress.org/showcase/' title='See some of the sites built on WordPress.'>Showcase</a></li>
|
66
|
+
<li><a href='//wordpress.org/themes/' title='Find just the right look for your website.'>Themes</a></li>
|
67
|
+
<li><a href='//wordpress.org/plugins/' title='Plugins can extend WordPress to do almost anything you can imagine.'>Plugins</a></li>
|
68
|
+
<li><a href='//wordpress.org/mobile/' title='Take your website on the go!'>Mobile</a></li>
|
69
|
+
<li><a href='//wordpress.org/support/' title='Forums, documentation, help.'>Support</a><ul class="nav-submenu"><li><a href='//wordpress.org/support/' title='Support and discussion forums.'>Forums</a></li><li><a href='//codex.wordpress.org/Main_Page' title='Documentation, tutorials, best practices.'>Documentation</a></li></ul><div class="uparrow"></div></li>
|
70
|
+
<li><a href='//make.wordpress.org/' title='Contribute your knowledge.'>Get Involved</a></li>
|
71
|
+
<li><a href='//wordpress.org/about/' title='About the WordPress Organization, and where we're going.'>About</a></li>
|
72
|
+
<li><a href='//wordpress.org/news/' title='Come here for the latest scoop.'>Blog</a></li>
|
73
|
+
<li><a href='//wordpress.org/hosting/' title='Find a home for your blog.'>Hosting</a></li>
|
74
|
+
<li id="download" class="button download-button"><a href='//wordpress.org/download/' title='Get it. Got it? Good.'>Download WordPress</a></li>
|
75
|
+
</ul>
|
76
|
+
<div style="clear:both"></div>
|
77
|
+
</div>
|
78
|
+
</div>
|
79
|
+
|
80
|
+
<div id="download-mobile">
|
81
|
+
<div class="wrapper">
|
82
|
+
<span class="download-ready">Ready to get started?</span><a class="button download-button" href="//wordpress.org/download/" title="Get it. Got it? Good.">Download WordPress</a>
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
|
86
|
+
<!-- feed is cached -->
|
87
|
+
|
88
|
+
<div id="home-welcome" style="padding-bottom: 14px;">
|
89
|
+
<div class="wrapper">
|
90
|
+
<img alt="" class="screenshot" src="//s.w.org/screenshots/3.8/responsive.png" width="466" height="332" />
|
91
|
+
<div id="home-text">
|
92
|
+
<p class="intro"><strong>WordPress</strong> is web software you can use to create a beautiful website, blog, or app. We like to say that WordPress is both free and priceless at the same time.</p>
|
93
|
+
|
94
|
+
<p>The core software is built by hundreds of community volunteers, and when you’re ready for more there are thousands of <a href="/plugins/">plugins</a> and <a href="/themes/">themes</a> available to transform your site into almost <a href="/showcase/">anything you can imagine</a>. Over 60 million people have chosen WordPress to power the place on the web they call “home” — we’d love you to join the family.</p>
|
95
|
+
|
96
|
+
<p>Ready to get started? <a class="button download-button button-large" href="/download/">Download WordPress 4.4.2</a></p>
|
97
|
+
</div>
|
98
|
+
<div style="clear:both;"></div>
|
99
|
+
</div>
|
100
|
+
</div>
|
101
|
+
<div id="lang-guess-wrap"></div>
|
102
|
+
|
103
|
+
<div id="home-below">
|
104
|
+
<div class="wrapper">
|
105
|
+
<div class="col-2">
|
106
|
+
|
107
|
+
|
108
|
+
<h4><a href="/about/swag/">WordPress Swag</a></h4>
|
109
|
+
<a href="/about/swag/"><img width="132" height="177" src="//wpdotorg.files.wordpress.com/2015/10/gray-tshirt-swag.jpg" alt="WordPress Swag" /></a>
|
110
|
+
|
111
|
+
</div>
|
112
|
+
|
113
|
+
<div class="col-4">
|
114
|
+
<h4><a href="/news/">News From Our Blog</a></h4>
|
115
|
+
|
116
|
+
<h5><a href="https://wordpress.org/news/2016/02/wordpress-4-4-2-security-and-maintenance-release/">WordPress 4.4.2 Security and Maintenance Release</a></h5>
|
117
|
+
<p>WordPress 4.4.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.4.1 and earlier are affected by two security issues: a possible SSRF for certain local URIs, reported by Ronni Skansing; and an open redirection attack, reported by Shailesh Suthar. Thank you […]</p>
|
118
|
+
</div>
|
119
|
+
|
120
|
+
<div class="col-4">
|
121
|
+
<h4>It’s Easy As…</h4>
|
122
|
+
|
123
|
+
<ol class="steps">
|
124
|
+
<li class="one"><span></span><a href="/hosting/">Find a Web Host</a> and get great hosting while supporting WordPress at the same time.</li>
|
125
|
+
<li class="two"><span></span><a href="/download/">Download & Install WordPress</a> with our famous 5-minute installation. Feel like a rock star.</li>
|
126
|
+
<li class="three"><span></span><a href="http://codex.wordpress.org/Main_Page">Read the Documentation</a> and become a WordPress expert yourself, impress your friends.</li>
|
127
|
+
|
128
|
+
</ol>
|
129
|
+
</div>
|
130
|
+
|
131
|
+
<div class="col-2">
|
132
|
+
<h4><a href="/showcase/">WordPress Users</a></h4>
|
133
|
+
<ul id="notable-users">
|
134
|
+
<li><a href='//wordpress.org/showcase/blondie/'><img src='//s.w.org/images/notableusers/blondie-2x.png' alt='blondie' width='130' height='57' /></a></li><li><a href='//wordpress.org/showcase/themarthablog/'><img src='//s.w.org/images/notableusers/marthastewart-2x.png' alt='marthastewart' width='130' height='57' /></a></li><li><a href='//wordpress.org/showcase/motley-crue/'><img src='//s.w.org/images/notableusers/motleycrue-2x.png' alt='motleycrue' width='130' height='57' /></a></li> </ul>
|
135
|
+
<p id="showcase-link"><a href="/showcase/">… and hundreds more</a></p>
|
136
|
+
</div>
|
137
|
+
</div>
|
138
|
+
</div>
|
139
|
+
|
140
|
+
<div id="wporg-footer">
|
141
|
+
<div class="wrapper">
|
142
|
+
<ul>
|
143
|
+
<li><a href="//wordpress.org/about/" title="An introduction to the WordPress project">About</a></li>
|
144
|
+
<li><a href="//wordpress.org/news/" title="News and Updates">Blog</a></li>
|
145
|
+
<li><a href="//wordpress.org/hosting/" title="Recommended web hosting providers">Hosting</a></li>
|
146
|
+
<li><a href="http://jobs.wordpress.net/" title="Find or post WordPress jobs">Jobs</a></li>
|
147
|
+
</ul>
|
148
|
+
|
149
|
+
<ul>
|
150
|
+
<li><a href="//wordpress.org/support/" title="Forums, documentation, and other resources">Support</a></li>
|
151
|
+
<li><a href="//developer.wordpress.org" title="Resources for WordPress developers">Developers</a></li>
|
152
|
+
<li><a href="//make.wordpress.org/" title="Give back to WordPress through code, support, translation and more">Get Involved</a></li>
|
153
|
+
<li><a href="//learn.wordpress.org/" title="Workshops and training materials">Learn</a></li>
|
154
|
+
</ul>
|
155
|
+
|
156
|
+
<ul>
|
157
|
+
<li><a href="//wordpress.org/showcase/" title="Some of the best WordPress sites on the Web">Showcase</a></li>
|
158
|
+
<li><a href="//wordpress.org/plugins/" title="Add extra functionality to WordPress">Plugins</a></li>
|
159
|
+
<li><a href="//wordpress.org/themes/" title="Make your WordPress pretty">Themes</a></li>
|
160
|
+
<li><a href="//wordpress.org/ideas/" title="Share your ideas for improving WordPress">Ideas</a></li>
|
161
|
+
</ul>
|
162
|
+
|
163
|
+
<ul>
|
164
|
+
<li><a href="//central.wordcamp.org/" title="Find a WordPress event near you">WordCamp</a></li>
|
165
|
+
<li><a href="//wordpress.tv/" title="Videos, tutorials, and WordCamp sessions">WordPress.TV</a></li>
|
166
|
+
<li><a href="//buddypress.org/" title="A set of plugins to transform your WordPress into a social network">BuddyPress</a></li>
|
167
|
+
<li><a href="//bbpress.org/" title="Fast, slick forums built on WordPress">bbPress</a></li>
|
168
|
+
</ul>
|
169
|
+
|
170
|
+
<ul>
|
171
|
+
<li><a href="//wordpress.com/?ref=wporg-footer" title="Hassle-free WordPress hosting">WordPress.com</a></li>
|
172
|
+
<li><a href="//ma.tt/" title="Co-founder of WordPress, an example of what WordPress can do">Matt</a></li>
|
173
|
+
<li><a href="//wordpress.org/about/privacy/" title="WordPress.org Privacy Policy">Privacy</a></li>
|
174
|
+
<li><a href="//wordpress.org/about/license/" title="WordPress is open source software">License / GPLv2</a></li>
|
175
|
+
</ul>
|
176
|
+
|
177
|
+
<ul>
|
178
|
+
<li>
|
179
|
+
<iframe title="Follow @WordPress on Twitter" allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=WordPress&show_count=false" style="width:135px; height:20px;"></iframe>
|
180
|
+
</li>
|
181
|
+
<li>
|
182
|
+
<iframe title="Like WordPress on Facebook" src="//www.facebook.com/plugins/like.php?app_id=121415197926116&href=http%3A%2F%2Fwww.facebook.com%2Fwordpress&send=false&layout=button_count&width=135&show_faces=false&action=like&colorscheme=light&font=lucida+grande&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:135px; height:21px;" allowTransparency="true"></iframe>
|
183
|
+
</li>
|
184
|
+
<li>
|
185
|
+
<script src="https://apis.google.com/js/platform.js" async defer></script>
|
186
|
+
<div class="g-plusone" data-size="medium" data-href="https://plus.google.com/+WordPress"></div>
|
187
|
+
</li>
|
188
|
+
</ul>
|
189
|
+
</div>
|
190
|
+
|
191
|
+
<h6 class="aligncenter cip-image">Code is Poetry.</h6>
|
192
|
+
</div>
|
193
|
+
|
194
|
+
<script type="text/javascript">
|
195
|
+
(function($){
|
196
|
+
$.ajax({
|
197
|
+
url : '/lang-guess/lang-guess-ajax.php?uri=%2F',
|
198
|
+
dataType: 'html'
|
199
|
+
}).done(function(data) {
|
200
|
+
if ( ! data ) return;
|
201
|
+
$(document).ready( function() {
|
202
|
+
$('#lang-guess-wrap').html(data);
|
203
|
+
});
|
204
|
+
});
|
205
|
+
})(jQuery);
|
206
|
+
</script>
|
207
|
+
|
208
|
+
<script type="text/javascript">
|
209
|
+
var _qevents = _qevents || [];
|
210
|
+
(function() {
|
211
|
+
var elem = document.createElement('script');
|
212
|
+
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge")
|
213
|
+
+ ".quantserve.com/quant.js";
|
214
|
+
elem.async = true;
|
215
|
+
elem.type = "text/javascript";
|
216
|
+
var scpt = document.getElementsByTagName('script')[0];
|
217
|
+
scpt.parentNode.insertBefore(elem, scpt);
|
218
|
+
})();
|
219
|
+
</script>
|
220
|
+
<script type="text/javascript">_qevents.push( { qacct:"p-18-mFEk4J448M"} );</script>
|
221
|
+
<noscript><img src="//pixel.quantserve.com/pixel/p-18-mFEk4J448M.gif" style="display: none;" border="0" height="1" width="1" alt=""/></noscript>
|
222
|
+
<!-- -->
|
223
|
+
<script type="text/javascript" src="//gravatar.com/js/gprofiles.js"></script>
|
224
|
+
|
225
|
+
<script type="text/javascript">
|
226
|
+
(function($){
|
227
|
+
$(document).ready(function() {
|
228
|
+
$('#footer a').click(function() {
|
229
|
+
if (this.href.indexOf('wordpress.org') == -1 && this.href.indexOf('http') == 0) {
|
230
|
+
recordOutboundLink(this, 'Outbound Links', this.href);
|
231
|
+
return false;
|
232
|
+
}
|
233
|
+
});
|
234
|
+
$('#download a, a.download-button').click(function() {
|
235
|
+
recordOutboundLink(this, 'Download Links', $(this).hasClass('download-button') ? 'button' : 'nav' );
|
236
|
+
return false;
|
237
|
+
});
|
238
|
+
});
|
239
|
+
})(jQuery);
|
240
|
+
</script>
|
241
|
+
</body>
|
242
|
+
</html>
|