|
Posted
over 18 years
ago
by
Admin
How
To Secure Your dasBlog Installation
Posted
by Alexander Groß http://www.therightstuff.de/
http://www.therightstuff.de/2007/06/08/How To Secure Your DasBlog Installation.aspx
... [More]
DasBlog has
a pretty large user base, and while browsing some dasBlog sites I occasionally check
if they're set up securely. It's not that dasBlog is inherently insecure, but some installations
allow for information leakage and most users aren't even aware of this.
Basic
setup
There
are a couple of locations where you can set up security
for any ASP.NET application:
NTFS
security,
IIS
virtual directory and folder security,
web.config <authentication> element
or a HttpForbiddenHandler for
certain ASP.NET file extensions.
Note
that web.config settings
only apply to file extensions mapped to ASP.NET on Windows Server 2003 and before.
I am working on IIS 6 here and while I like my security settings in (mostly)
one place I usually go with a generic read access configuration in IIS and
set the more fine-grained settings using NTFS.
When
deploying dasBlog to your web server you will likely enable read access
to the dasBlog folder for the IUSR
and NETWORK SERVICE accounts
on
the NTFS Security tab. This gives the IIS and ASP.NET runtimes the rights they
need to work. On the /logs, /content and /SiteConfig directories
you will also need to enable change access for the NETWORK SERVICE account since this
is where dasBlog stores its working data. (dasBlog is represented by the IIS worker
process identity, which is NETWORK SERVICE on Windows Server 2003 and ASPNET on Windows 2000
and XP.) If anything is set up incorrectly you'll see the configuration
error page
when
you're trying configure your blog or post a blog entry.
Folder
IUSR
access
NETWORK
SERVICE access
Notes
/dasBlog
root
R
R
/bin
RI
RI
Contents
protected by ASP.NET
/content
RI
RI,
W
Blog
posts, comments, trackbacks
/binary
RI
RI,
WI
Binary
content, i.e. images and enclosures
/profiles
RI
RI,
WI
User
profiles
/DatePicker
RI
RI
/ftb
RI
RI
/images
RI
RI
/logs
RI
RI,
W
Log
files
/SiteConfig
RI
RI,
W
Config
and error pages
/smilies
RI
RI
/themes
RI
RI
Legend:
R=Read, RI=Read (inherited), W=Write, WI=Write (inherited)
The
/logs folder
Sometimes
when I visit a random dasBlog site I try to download one of dasBlog's log files
which are located in the /logs folder.
Since IUSR's read access is most likely inherited (RI) in this folder, anonymous users
can download log files. The log file name format is publicy available so, for
example, the /logs/2007-06-08-referrer.log.zip file
contains the referrers for today. This information
leakage
could
be easily mitigated by denying IUSR read access to the /logs folder.
However, I've found at least three high-traffic blogs where this was not the
case (I e-mailed the owners, things are fixed now).
Themes
Another problem
that came
up recently on the developer mailing list
was
how to keep blog
templates
private.
Since we already incorporate the HttpForbiddenHandler for *.blogtemplate files
and IIS
doesn't serve files when there's no MIME type available
this
is really a non-issue. The template's manifest file, however, will be served but that
should not bother you since there's no valuable information in it.
Special
Case: The /content folder
One
rather interesting place is the /content folder.
Your posts, comments and blogged binary content like images are stored there. The /content/binary subfolder
holds images and enclosures, i.e. basically everything you attach to a certain post. The /content/profiles folder
serves as a container for user profiles stored in <Username>.format.html files.
Please note that *.format.html files
are always templated and served through FormatPage.aspx,
that is, are never accessed by IUSR directly.
With
the basic setup above, read access for anonymous users is enabled in the /content folder
and its subfolders. Thus, anonymous users are able to get the raw post data by requesting
the *.dayentry.xml and *.dayfeedback.xml files
for a certain date, i.e. /content/2007-06-08.dayentry.xml.
Again, the file name pattern is no secret.
This
last piece of public information should only be served through certain channels like
the templated font page or RSS. Because of dasBlog's folder structure securing the /content folder
it is kind of tricky:
First,
deny read access to the /content folder
for the IUSR account.
In
the next step, open the security tab of the /content/binary folder
and break NTFS inheritance there copying all existing ACLs.
Delete
the Deny ACL for IUSR.
Secure
Configuration
In
the end the NTFS security settings that work best for me look like this: (Changes
red)
Folder
IUSR
access
NETWORK
SERVICE access
Notes
/dasBlog
root
R
R
/bin
RI
RI
Contents
protected by ASP.NET
/content
RI, RD
RI,
W
Blog
posts, comments, trackbacks
/binary
R
R,
W
Binary
content, i.e. images and enclosures
/profiles
RI, RDI
RI,
WI
User
profiles
/DatePicker
RI
RI
/ftb
RI
RI
/images
RI
RI
/logs
RI, RD
RI,
W
Log
files
/SiteConfig
RI, RD
RI,
W
Config
and error pages
/smilies
RI
RI
/themes
RI
RI
Legend:
R=Read, RI=Read (inherited), W=Write, WI=Write (inherited), RD=Deny read, RDI=Deny
read (inherited)
Please
note that on Windows Deny ACLs have always preference over Allow ACLs.
This weblog is sponsored by DasBlog. [Less]
|
|
Posted
about 19 years
ago
by
Tom Watts
A relatively new macro that does not have much detail about the support it requires
is the <%drawTagCloud()%> macro or Tag
Cloud.
This Macro will not work unless you include the appropriate CSS class codes called
by your theme
... [More]
template CSS file.
For example something like this:
.smallestTag {
font-size: 0.8em;
}
.smallerTag {
font-size: 1.0em;
}
.smallTag {
font-size: 1.2em;
}
.mediumTag {
font-size: 1.4em;
}
.largeTag {
font-size: 1.6em;
}
.largerTag {
font-size: 1.8em;
}
.largestTag {
font-size: 2.0em;
}
For more detail on this macro and the others available see this Macro
Link.
[Less]
|
|
Posted
about 19 years
ago
by
Tom Watts
A relatively new macro that does not have much detail about the support it requires
is the <%drawTagCloud()%> macro or Tag
Cloud.
This Macro will not work unless you include the appropriate CSS class codes called
by your theme
... [More]
template CSS file.
For example something like this:
.smallestTag {
font-size: 0.8em;
}
.smallerTag {
font-size: 1.0em;
}
.smallTag {
font-size: 1.2em;
}
.mediumTag {
font-size: 1.4em;
}
.largeTag {
font-size: 1.6em;
}
.largerTag {
font-size: 1.8em;
}
.largestTag {
font-size: 2.0em;
}
For more detail on this macro and the others available see this Macro
Link.
This weblog is sponsored by DasBlog. [Less]
|
|
Posted
about 19 years
ago
by
Tom Watts
A relatively new macro that does not have much detail about the support it requires
is the <%drawTagCloud()%> macro or Tag
Cloud.
This Macro will not work unless you include the appropriate CSS class codes called
by your theme
... [More]
template CSS file.
For example something like this:
.smallestTag {
font-size: 0.8em;
}
.smallerTag {
font-size: 1.0em;
}
.smallTag {
font-size: 1.2em;
}
.mediumTag {
font-size: 1.4em;
}
.largeTag {
font-size: 1.6em;
}
.largerTag {
font-size: 1.8em;
}
.largestTag {
font-size: 2.0em;
}
For more detail on this macro and the others available see this Macro
Link.
This weblog is sponsored by DasBlog. [Less]
|
|
Posted
about 19 years
ago
by
John Forsythe
The RSS feed for the last 10 comments posted across your entire blog is:
http://[yoursite]/[blogdirectory]/
SyndicationService.asmx/GetCommentsRss
The RSS feed for all comments made on an individual post is:
... [More]
http://[yoursite]/[blogdirectory]/
SyndicationService.asmx/GetEntryCommentsRss?guid=[POST GUID]
Repost
from: jforsythe.com
- DasBlog tip: Comments RSS feed
technorati: dasBlog, RSS, comments [Less]
|
|
Posted
about 19 years
ago
by
John Forsythe
The RSS feed for the last 10 comments posted across your entire blog is:
http://[yoursite]/[blogdirectory]/
SyndicationService.asmx/GetCommentsRss
The RSS feed for all comments made on an individual post is:
... [More]
http://[yoursite]/[blogdirectory]/
SyndicationService.asmx/GetEntryCommentsRss?guid=[POST GUID]
Repost
from: jforsythe.com
- DasBlog tip: Comments RSS feed
technorati: dasBlog, RSS, comments
This weblog is sponsored by DasBlog. [Less]
|
|
Posted
about 19 years
ago
by
John Forsythe
The RSS feed for the last 10 comments posted across your entire blog is:
http://[yoursite]/[blogdirectory]/
SyndicationService.asmx/GetCommentsRss
The RSS feed for all comments made on an individual post is:
... [More]
http://[yoursite]/[blogdirectory]/
SyndicationService.asmx/GetEntryCommentsRss?guid=[POST GUID]
Repost
from: jforsythe.com
- DasBlog tip: Comments RSS feed
technorati: dasBlog, RSS, comments
This weblog is sponsored by DasBlog. [Less]
|
|
Posted
about 19 years
ago
by
Tom Watts
Ken Hughes a new dasBlog contributor has recently released a really cool new dasBlog
feature.
'Daily Report Email'
Basically it is a simple email activity report generated at the end of each day -
the layout is similar to the Activity
... [More]
Referrers page…
This new feature has been included in the dasBlog source, and is now available in
the daily builds. It will also be included in the next official release of dasBlog.
A real data sample of the report is below, information from WWW.dasblog.info today.
Weblog Daily Email Report (Friday, January 12, 2007 UTC)
Summary
Hits
Internet Searches
21
Referrers
351
Internet Searches
Count
dasblog (search.msn.com)
2
<add
path="*" verb="*" type= (www.google.com)
1
dasBlog
(www.google.com)
1
dasblog
install new theme (www.google.com)
1
DasBlog
v1.8 (www.google.com)
1
dasblog
(search.live.com)
1
developer
personal site (www.google.jo)
1
dasblog
(www.google.com)
1
dasblog
(www.google.com.au)
1
documentation
on dasblog (www.google.com)
1
cache:69fKPYFd3_8J:www.breaman.net/blog/PermaLink,guid,f6f79ac3-4df0-4a10-a4b6-3c899afae0fe.aspx
.net 2.0 "blog engine" (64.233.183.104)
1
dasblog
(www.google.com)
1
dasblog (www.google.com)
1
DasBlog (www.google.com.au)
1
DasBlog
(search.live.com)
1
das
blog (www.google.com)
1
homeTemplate.blogtemplate
(www.google.com)
1
dasblog
(search.yahoo.com)
1
dasBlog
how change displayname (www.google.ca)
1
dasblog
EnableTitlePermaLink (www.google.com)
1
Referrers
Count
177
http://www.dasblog.net/
123
http://dasblog.net/
7
http://en.wikipedia.org/wiki/DasBlog
5
http://sourceforge.net/projects/dasblogce/
3
http://channel9.msdn.com/ShowPost.aspx?PostID=147782
3
http://www.atmarkit.co.jp/fwin2k/operation/intrablog01/intrablog01_02.html
2
http://www.programacion.net/asp/noticias/
2
http://www.hanselman.com/blog/default.aspx
2
http://www.google.com/reader/view/
1
http://www.brainfuel.tv/blog-engines-for-windows-net
1
http://www.hanselman.com/blog/CategoryView.aspx?category=DasBlog
1
http://cp.ourhelmcp.com/interfaces/helmextreme/dasblog.asp?UserAccNum=6JLA1&DomainID=2630
1
http://dasblog.us/viewtopic.php?t=40
1
http://www.hanselman.com/blog/ScottHanselmans2006UltimateDeveloperAndPowerUsersToolListForWindows.aspx
1
http://www.hanselman.com/blog/ActiveASPNETBloggingEngines.aspx
1
http://www.webmaster-talk.com/website-review-and-suggestions/72847-site-review-commercestyle-com.html
1
http://hoser.lander.ca/ct.ashx?id=ef6034d4-1492-4780-9cfd-0fc43341ace0&url=http://www.dasblog.info/
1
http://adam.kahtava.com/journal/2006/07/20/Quality Assurance Unit Testing Test Driven Development TDD Write The Test First.aspx
1
http://localhost/DasBlog/PermaLink.aspx?guid=b705c37b-b47f-4e8d-8f8b-091efc4cb684
1
http://channel9.msdn.com/ShowPost.aspx?PostID=266432
1
http://graysmatter.codivation.com/CategoryView,category,DasBlog.aspx
1
http://blog.cronberg.dk/CategoryView,category,Foredrag.aspx
1
http://kyle.baley.org/ct.ashx?id=788ea723-8b4e-4460-ba2e-561ef7d746f9&url=http://dasblog.info/CategoryView,category,Development%2cVS2005.aspx
1
http://www.markitup.com/Posts/PostsByCategory.aspx?categoryId=5751cee9-5b20-4db1-93bd-7e7c66208236
1
http://robosapient.com/DasBlogBadgeArtworkReleased.aspx
1
http://dasblog.us/
1
http://www.programar.net/news/details.aspx?id=8
1
http://www.bostonpocketpc.com/Happy New Years And A Little QuotGiftquot.aspx
1
http://www.bostonpocketpc.com/ct.ashx?id=7f65af58-5d21-4cb6-9354-c3d0d69d8f21&url=http://www.dasblog.info/
1
http://www.google.com/
1
http://kyle.baley.org/ct.ashx?id=d7693727-87d9-41d6-ad4e-8cfa2339054e&url=http://www.dasblog.info
1
http://sourceforge.net/project/showfiles.php?group_id=127624&package_id=139759
1
http://dasblogce.sourceforge.net/
1
http://www.hoohee.com/CategoryView,category,Home.aspx
1
news:[email protected]
1
User Agents
Count
Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
52
Bloglines/3.1 (http://www.bloglines.com; 1 subscriber)
37
NewsGatorOnline/2.0 (http://www.newsgator.com; 1 subscribers)
36
NutchCVS/0.7.2 (Nutch; http://lucene.apache.org/nutch/bot.html; [email protected])
30
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
19
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
17
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
16
msnbot/1.0 ( http://search.msn.com/msnbot.htm)
9
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
8
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727)
8
nokia6610I/1.0 (4.10) Profile/MIDP-1.0 Configuration/CLDC-1.0 (FAST WAP Proxy/1.0)
6
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
.NET CLR 3.0.04506.30)
5
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
5
voyager/1.0
4
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; EzCenterExplorer; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
3
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; .NET CLR 3.0.04506.30)
3
RssBandit/1.3.0.42 (.NET CLR 1.1.4322.2032; WinNT 5.1.2600.0; http://www.rssbandit.org)
3
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
2
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)
2
Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
2
Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
2
Feedfetcher-Google; ( http://www.google.com/feedfetcher.html)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; InfoPath.1)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727;
.NET CLR 1.1.4322)
2
Opera/9.02 (Windows NT 5.1; U; en)
2
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
2
Mozilla/5.0 (Windows; U; Windows NT 5.0; es-ES; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
2
Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; InfoPath.1; .NET CLR
2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)
1
Opera/9.02 (Windows NT 5.1; U; de)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)
1
Opera/9.10 (X11; Linux i686; U; en)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705;
.NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.2; es-AR; rv:1.7.5) Gecko/20041108 Firefox/1.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.1) Gecko/20061204
Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X; it-it) AppleWebKit/418.9.1 (KHTML, like Gecko)
Safari/419.3
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Maxthon; .NET CLR 1.1.4322; .NET
CLR 2.0.50727)
1
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; de; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322;
InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR
1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2;
.NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
.NET CLR 3.0.04324.17)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
1
FeedBurner/1.0 (http://www.FeedBurner.com)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727;
Avalon 6.0.5070; WinFX RunTime 3.0.50727; .NET CLR 3.0.04506.30)
1
Mozilla/5.0 (Macintosh; U; Intel Mac OS X; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Opera/9.01 (Windows NT 5.0; U; ru)
1
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
1
Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322;
.NET CLR 3.0.04506.30; HANS)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)
1
Mozilla/5.0 (X11; U; Linux i686; es-AR; rv:1.8.0.9) Gecko/20070102 Ubuntu/dapper-security
Firefox/1.5.0.9
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1;
.NET CLR 2.0.50727)
1
intraVnews/1.2 (http://www.intravnews.com/)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1) Gecko/20061010 Firefox/2.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; Maxthon
2.0)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
1.0.3705)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1;
.NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) Sleipnir/2.49
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Maxthon; .NET CLR 1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MyIE2; Maxthon; TencentTraveler
; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
1
Mozilla/4.08 (Macintosh; I; PPC, Nav)
1
Mozilla/4.0 (compatible; DepSpid/5.07; http://about.depspid.net)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SU 2.009; .NET CLR 2.0.50727; .NET
CLR 1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727;
.NET CLR 3.0.04320; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
InfoPath.1; FDM)
1
Mozilla/5.0 (X11; U; Linux i686; it; rv:1.8.1.1) Gecko/20061208 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322;
.NET CLR 2.0.50727; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {145BB450-1DA4-F811-153D-D8231403EA7E};
Avant Browser; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727;
.NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/418.9.1 (KHTML, like Gecko)
Safari/419.3
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705;
.NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)
1
User Domains
Count
65.214.44.29
37
64.78.155.100
36
221.130.185.170
16
221.130.185.162
11
65.55.209.172
7
66.151.181.4
6
38.113.234.180
4
58.49.113.176
3
70.82.149.196
3
203.59.26.15
3
221.130.185.179
3
80.33.166.9
3
74.6.66.52
2
84.26.66.4
2
72.14.199.11
2
200.79.84.78
2
193.212.51.164
2
131.107.0.103
2
213.97.56.57
2
72.30.252.151
2
200.224.111.6
2
74.6.72.99
2
88.73.9.237
2
204.104.55.241
2
68.178.4.132
2
71.111.254.67
2
12.191.64.132
2
75.92.37.11
2
160.103.2.220
2
74.6.71.86
2
65.55.209.174
2
213.120.252.228
2
62.92.137.58
2
74.6.74.169
1
193.60.168.67
1
86.76.87.53
1
138.233.79.115
1
74.6.71.32
1
63.169.162.4
1
60.234.238.207
1
74.6.68.213
1
74.6.73.178
1
212.247.95.61
1
88.217.233.102
1
151.140.134.171
1
193.213.34.70
1
222.241.169.133
1
132.239.12.102
1
212.59.178.2
1
147.142.160.206
1
83.118.3.105
1
85.224.35.64
1
86.105.120.244
1
74.6.70.40
1
87.240.15.33
1
63.231.83.177
1
58.53.87.223
1
84.148.2.59
1
72.30.226.225
1
208.59.224.138
1
80.63.66.190
1
213.249.137.86
1
62.168.50.91
1
132.252.52.184
1
74.6.72.49
1
84.9.100.242
1
196.25.255.194
1
60.195.68.68
1
74.6.71.216
1
74.6.70.58
1
74.6.72.180
1
74.6.73.165
1
200.104.78.21
1
59.56.237.122
1
74.6.68.209
1
194.71.243.129
1
212.23.126.20
1
74.6.73.39
1
74.238.102.194
1
206.168.216.206
1
72.30.177.188
1
216.49.80.10
1
74.6.85.217
1
194.47.19.251
1
216.27.89.92
1
74.6.72.71
1
194.73.141.14
1
74.6.73.75
1
71.243.48.252
1
38.100.41.101
1
74.6.69.32
1
195.210.162.146
1
83.250.239.177
1
200.27.110.102
1
70.88.117.113
1
64.22.219.190
1
86.143.34.237
1
89.164.21.116
1
195.47.25.162
1
64.86.141.133
1
72.209.78.6
1
74.6.70.170
1
195.67.17.34
1
74.6.74.37
1
69.139.110.244
1
193.77.124.99
1
70.57.155.100
1
76.187.243.244
1
64.242.6.130
1
72.30.252.106
1
142.167.239.126
1
69.115.226.57
1
74.6.68.205
1
74.6.71.167
1
74.6.65.243
1
60.2.152.122
1
74.6.73.77
1
74.6.75.41
1
151.12.153.130
1
217.110.85.2
1
220.101.143.86
1
85.225.105.184
1
74.6.71.71
1
208.228.181.247
1
74.6.72.217
1
68.52.237.175
1
87.105.118.41
1
80.223.246.200
1
193.180.9.6
1
125.33.155.114
1
65.218.63.4
1
24.16.25.119
1
84.150.68.12
1
74.6.68.227
1
74.6.74.35
1
74.6.70.182
1
86.137.3.110
1
220.240.55.213
1
157.238.154.18
1
216.99.65.8
1
125.235.18.242
1
194.108.139.60
1
213.67.23.189
1
74.6.72.182
1
83.89.187.42
1
137.132.3.11
1
74.6.67.227
1
198.51.179.254
1
70.224.91.80
1
24.9.187.238
1
195.198.174.18
1
74.192.154.206
1
66.150.96.109
1
128.218.82.96
1
218.80.73.64
1
74.6.67.156
1
84.177.34.139
1
67.71.58.240
1
82.71.41.209
1
211.190.33.125
1
71.98.30.170
1
121.41.0.50
1
74.6.68.73
1
217.157.228.34
1
67.155.216.205
1
64.66.107.66
1
216.99.199.105
1
72.69.194.241
1
74.92.24.166
1
74.98.227.69
1
82.120.52.206
1
63.164.207.180
1
74.6.68.46
1
84.16.225.97
1
141.158.171.20
1
82.208.60.14
1
70.8.215.77
1
221.130.61.5
1
213.196.130.71
1
72.30.252.155
1
199.17.133.37
1
87.80.240.162
1
74.6.72.223
1
206.169.45.183
1
219.108.28.139
1
74.6.70.238
1
80.70.47.28
1
74.6.71.74
1
82.182.138.22
1
222.210.200.64
1
77.122.120.147
1
217.228.77.85
1
85.119.130.132
1
74.6.72.174
1
83.141.128.102
1
74.6.71.90
1
72.36.205.10
1
203.122.61.29
1
86.64.67.10
1
74.6.65.250
1
200.127.69.253
1
24.168.248.33
1
146.115.115.244
1
80.59.33.156
1
204.13.165.69
1
74.6.67.76
1
4.78.205.35
1
83.65.76.226
1
137.153.0.41
1
195.84.165.98
1
This weblog is sponsored by DasBlog. [Less]
|
|
Posted
about 19 years
ago
by
Tom Watts
Ken Hughes a new dasBlog contributor has recently released a really cool new dasBlog
feature.
'Daily Report Email'
Basically it is a simple email activity report generated at the end of each day -
the layout is similar to the Activity
... [More]
Referrers page…
This new feature has been included in the dasBlog source, and is now available in
the daily builds. It will also be included in the next official release of dasBlog.
A real data sample of the report is below, information from WWW.dasblog.info today.
Weblog Daily Email Report (Friday, January 12, 2007 UTC)
Summary
Hits
Internet Searches
21
Referrers
351
Internet Searches
Count
dasblog (search.msn.com)
2
<add
path="*" verb="*" type= (www.google.com)
1
dasBlog
(www.google.com)
1
dasblog
install new theme (www.google.com)
1
DasBlog
v1.8 (www.google.com)
1
dasblog
(search.live.com)
1
developer
personal site (www.google.jo)
1
dasblog
(www.google.com)
1
dasblog
(www.google.com.au)
1
documentation
on dasblog (www.google.com)
1
cache:69fKPYFd3_8J:www.breaman.net/blog/PermaLink,guid,f6f79ac3-4df0-4a10-a4b6-3c899afae0fe.aspx
.net 2.0 "blog engine" (64.233.183.104)
1
dasblog
(www.google.com)
1
dasblog (www.google.com)
1
DasBlog (www.google.com.au)
1
DasBlog
(search.live.com)
1
das
blog (www.google.com)
1
homeTemplate.blogtemplate
(www.google.com)
1
dasblog
(search.yahoo.com)
1
dasBlog
how change displayname (www.google.ca)
1
dasblog
EnableTitlePermaLink (www.google.com)
1
Referrers
Count
177
http://www.dasblog.net/
123
http://dasblog.net/
7
http://en.wikipedia.org/wiki/DasBlog
5
http://sourceforge.net/projects/dasblogce/
3
http://channel9.msdn.com/ShowPost.aspx?PostID=147782
3
http://www.atmarkit.co.jp/fwin2k/operation/intrablog01/intrablog01_02.html
2
http://www.programacion.net/asp/noticias/
2
http://www.hanselman.com/blog/default.aspx
2
http://www.google.com/reader/view/
1
http://www.brainfuel.tv/blog-engines-for-windows-net
1
http://www.hanselman.com/blog/CategoryView.aspx?category=DasBlog
1
http://cp.ourhelmcp.com/interfaces/helmextreme/dasblog.asp?UserAccNum=6JLA1&DomainID=2630
1
http://dasblog.us/viewtopic.php?t=40
1
http://www.hanselman.com/blog/ScottHanselmans2006UltimateDeveloperAndPowerUsersToolListForWindows.aspx
1
http://www.hanselman.com/blog/ActiveASPNETBloggingEngines.aspx
1
http://www.webmaster-talk.com/website-review-and-suggestions/72847-site-review-commercestyle-com.html
1
http://hoser.lander.ca/ct.ashx?id=ef6034d4-1492-4780-9cfd-0fc43341ace0&url=http://www.dasblog.info/
1
http://adam.kahtava.com/journal/2006/07/20/Quality Assurance Unit Testing Test Driven Development TDD Write The Test First.aspx
1
http://localhost/DasBlog/PermaLink.aspx?guid=b705c37b-b47f-4e8d-8f8b-091efc4cb684
1
http://channel9.msdn.com/ShowPost.aspx?PostID=266432
1
http://graysmatter.codivation.com/CategoryView,category,DasBlog.aspx
1
http://blog.cronberg.dk/CategoryView,category,Foredrag.aspx
1
http://kyle.baley.org/ct.ashx?id=788ea723-8b4e-4460-ba2e-561ef7d746f9&url=http://dasblog.info/CategoryView,category,Development%2cVS2005.aspx
1
http://www.markitup.com/Posts/PostsByCategory.aspx?categoryId=5751cee9-5b20-4db1-93bd-7e7c66208236
1
http://robosapient.com/DasBlogBadgeArtworkReleased.aspx
1
http://dasblog.us/
1
http://www.programar.net/news/details.aspx?id=8
1
http://www.bostonpocketpc.com/Happy New Years And A Little QuotGiftquot.aspx
1
http://www.bostonpocketpc.com/ct.ashx?id=7f65af58-5d21-4cb6-9354-c3d0d69d8f21&url=http://www.dasblog.info/
1
http://www.google.com/
1
http://kyle.baley.org/ct.ashx?id=d7693727-87d9-41d6-ad4e-8cfa2339054e&url=http://www.dasblog.info
1
http://sourceforge.net/project/showfiles.php?group_id=127624&package_id=139759
1
http://dasblogce.sourceforge.net/
1
http://www.hoohee.com/CategoryView,category,Home.aspx
1
news:[email protected]
1
User Agents
Count
Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
52
Bloglines/3.1 (http://www.bloglines.com; 1 subscriber)
37
NewsGatorOnline/2.0 (http://www.newsgator.com; 1 subscribers)
36
NutchCVS/0.7.2 (Nutch; http://lucene.apache.org/nutch/bot.html; [email protected])
30
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
19
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
17
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
16
msnbot/1.0 ( http://search.msn.com/msnbot.htm)
9
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
8
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727)
8
nokia6610I/1.0 (4.10) Profile/MIDP-1.0 Configuration/CLDC-1.0 (FAST WAP Proxy/1.0)
6
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
.NET CLR 3.0.04506.30)
5
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
5
voyager/1.0
4
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; EzCenterExplorer; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
3
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; .NET CLR 3.0.04506.30)
3
RssBandit/1.3.0.42 (.NET CLR 1.1.4322.2032; WinNT 5.1.2600.0; http://www.rssbandit.org)
3
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
2
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)
2
Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
2
Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
2
Feedfetcher-Google; ( http://www.google.com/feedfetcher.html)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; InfoPath.1)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727;
.NET CLR 1.1.4322)
2
Opera/9.02 (Windows NT 5.1; U; en)
2
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
2
Mozilla/5.0 (Windows; U; Windows NT 5.0; es-ES; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
2
Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; InfoPath.1; .NET CLR
2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)
1
Opera/9.02 (Windows NT 5.1; U; de)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)
1
Opera/9.10 (X11; Linux i686; U; en)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705;
.NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.2; es-AR; rv:1.7.5) Gecko/20041108 Firefox/1.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.1) Gecko/20061204
Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X; it-it) AppleWebKit/418.9.1 (KHTML, like Gecko)
Safari/419.3
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Maxthon; .NET CLR 1.1.4322; .NET
CLR 2.0.50727)
1
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; de; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322;
InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR
1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2;
.NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
.NET CLR 3.0.04324.17)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
1
FeedBurner/1.0 (http://www.FeedBurner.com)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727;
Avalon 6.0.5070; WinFX RunTime 3.0.50727; .NET CLR 3.0.04506.30)
1
Mozilla/5.0 (Macintosh; U; Intel Mac OS X; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Opera/9.01 (Windows NT 5.0; U; ru)
1
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
1
Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322;
.NET CLR 3.0.04506.30; HANS)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)
1
Mozilla/5.0 (X11; U; Linux i686; es-AR; rv:1.8.0.9) Gecko/20070102 Ubuntu/dapper-security
Firefox/1.5.0.9
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1;
.NET CLR 2.0.50727)
1
intraVnews/1.2 (http://www.intravnews.com/)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1) Gecko/20061010 Firefox/2.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; Maxthon
2.0)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
1.0.3705)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1;
.NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) Sleipnir/2.49
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Maxthon; .NET CLR 1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MyIE2; Maxthon; TencentTraveler
; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
1
Mozilla/4.08 (Macintosh; I; PPC, Nav)
1
Mozilla/4.0 (compatible; DepSpid/5.07; http://about.depspid.net)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SU 2.009; .NET CLR 2.0.50727; .NET
CLR 1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727;
.NET CLR 3.0.04320; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
InfoPath.1; FDM)
1
Mozilla/5.0 (X11; U; Linux i686; it; rv:1.8.1.1) Gecko/20061208 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322;
.NET CLR 2.0.50727; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {145BB450-1DA4-F811-153D-D8231403EA7E};
Avant Browser; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727;
.NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/418.9.1 (KHTML, like Gecko)
Safari/419.3
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705;
.NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)
1
User Domains
Count
65.214.44.29
37
64.78.155.100
36
221.130.185.170
16
221.130.185.162
11
65.55.209.172
7
66.151.181.4
6
38.113.234.180
4
58.49.113.176
3
70.82.149.196
3
203.59.26.15
3
221.130.185.179
3
80.33.166.9
3
74.6.66.52
2
84.26.66.4
2
72.14.199.11
2
200.79.84.78
2
193.212.51.164
2
131.107.0.103
2
213.97.56.57
2
72.30.252.151
2
200.224.111.6
2
74.6.72.99
2
88.73.9.237
2
204.104.55.241
2
68.178.4.132
2
71.111.254.67
2
12.191.64.132
2
75.92.37.11
2
160.103.2.220
2
74.6.71.86
2
65.55.209.174
2
213.120.252.228
2
62.92.137.58
2
74.6.74.169
1
193.60.168.67
1
86.76.87.53
1
138.233.79.115
1
74.6.71.32
1
63.169.162.4
1
60.234.238.207
1
74.6.68.213
1
74.6.73.178
1
212.247.95.61
1
88.217.233.102
1
151.140.134.171
1
193.213.34.70
1
222.241.169.133
1
132.239.12.102
1
212.59.178.2
1
147.142.160.206
1
83.118.3.105
1
85.224.35.64
1
86.105.120.244
1
74.6.70.40
1
87.240.15.33
1
63.231.83.177
1
58.53.87.223
1
84.148.2.59
1
72.30.226.225
1
208.59.224.138
1
80.63.66.190
1
213.249.137.86
1
62.168.50.91
1
132.252.52.184
1
74.6.72.49
1
84.9.100.242
1
196.25.255.194
1
60.195.68.68
1
74.6.71.216
1
74.6.70.58
1
74.6.72.180
1
74.6.73.165
1
200.104.78.21
1
59.56.237.122
1
74.6.68.209
1
194.71.243.129
1
212.23.126.20
1
74.6.73.39
1
74.238.102.194
1
206.168.216.206
1
72.30.177.188
1
216.49.80.10
1
74.6.85.217
1
194.47.19.251
1
216.27.89.92
1
74.6.72.71
1
194.73.141.14
1
74.6.73.75
1
71.243.48.252
1
38.100.41.101
1
74.6.69.32
1
195.210.162.146
1
83.250.239.177
1
200.27.110.102
1
70.88.117.113
1
64.22.219.190
1
86.143.34.237
1
89.164.21.116
1
195.47.25.162
1
64.86.141.133
1
72.209.78.6
1
74.6.70.170
1
195.67.17.34
1
74.6.74.37
1
69.139.110.244
1
193.77.124.99
1
70.57.155.100
1
76.187.243.244
1
64.242.6.130
1
72.30.252.106
1
142.167.239.126
1
69.115.226.57
1
74.6.68.205
1
74.6.71.167
1
74.6.65.243
1
60.2.152.122
1
74.6.73.77
1
74.6.75.41
1
151.12.153.130
1
217.110.85.2
1
220.101.143.86
1
85.225.105.184
1
74.6.71.71
1
208.228.181.247
1
74.6.72.217
1
68.52.237.175
1
87.105.118.41
1
80.223.246.200
1
193.180.9.6
1
125.33.155.114
1
65.218.63.4
1
24.16.25.119
1
84.150.68.12
1
74.6.68.227
1
74.6.74.35
1
74.6.70.182
1
86.137.3.110
1
220.240.55.213
1
157.238.154.18
1
216.99.65.8
1
125.235.18.242
1
194.108.139.60
1
213.67.23.189
1
74.6.72.182
1
83.89.187.42
1
137.132.3.11
1
74.6.67.227
1
198.51.179.254
1
70.224.91.80
1
24.9.187.238
1
195.198.174.18
1
74.192.154.206
1
66.150.96.109
1
128.218.82.96
1
218.80.73.64
1
74.6.67.156
1
84.177.34.139
1
67.71.58.240
1
82.71.41.209
1
211.190.33.125
1
71.98.30.170
1
121.41.0.50
1
74.6.68.73
1
217.157.228.34
1
67.155.216.205
1
64.66.107.66
1
216.99.199.105
1
72.69.194.241
1
74.92.24.166
1
74.98.227.69
1
82.120.52.206
1
63.164.207.180
1
74.6.68.46
1
84.16.225.97
1
141.158.171.20
1
82.208.60.14
1
70.8.215.77
1
221.130.61.5
1
213.196.130.71
1
72.30.252.155
1
199.17.133.37
1
87.80.240.162
1
74.6.72.223
1
206.169.45.183
1
219.108.28.139
1
74.6.70.238
1
80.70.47.28
1
74.6.71.74
1
82.182.138.22
1
222.210.200.64
1
77.122.120.147
1
217.228.77.85
1
85.119.130.132
1
74.6.72.174
1
83.141.128.102
1
74.6.71.90
1
72.36.205.10
1
203.122.61.29
1
86.64.67.10
1
74.6.65.250
1
200.127.69.253
1
24.168.248.33
1
146.115.115.244
1
80.59.33.156
1
204.13.165.69
1
74.6.67.76
1
4.78.205.35
1
83.65.76.226
1
137.153.0.41
1
195.84.165.98
1
[Less]
|
|
Posted
about 19 years
ago
by
Tom Watts
Ken Hughes a new dasBlog contributor has recently released a really cool new dasBlog
feature.
'Daily Report Email'
Basically it is a simple email activity report generated at the end of each day -
the layout is similar to the Activity
... [More]
Referrers page…
This new feature has been included in the dasBlog source, and is now available in
the daily builds. It will also be included in the next official release of dasBlog.
A real data sample of the report is below, information from WWW.dasblog.info today.
Weblog Daily Email Report (Friday, January 12, 2007 UTC)
Summary
Hits
Internet Searches
21
Referrers
351
Internet Searches
Count
dasblog (search.msn.com)
2
<add
path="*" verb="*" type= (www.google.com)
1
dasBlog
(www.google.com)
1
dasblog
install new theme (www.google.com)
1
DasBlog
v1.8 (www.google.com)
1
dasblog
(search.live.com)
1
developer
personal site (www.google.jo)
1
dasblog
(www.google.com)
1
dasblog
(www.google.com.au)
1
documentation
on dasblog (www.google.com)
1
cache:69fKPYFd3_8J:www.breaman.net/blog/PermaLink,guid,f6f79ac3-4df0-4a10-a4b6-3c899afae0fe.aspx
.net 2.0 "blog engine" (64.233.183.104)
1
dasblog
(www.google.com)
1
dasblog (www.google.com)
1
DasBlog (www.google.com.au)
1
DasBlog
(search.live.com)
1
das
blog (www.google.com)
1
homeTemplate.blogtemplate
(www.google.com)
1
dasblog
(search.yahoo.com)
1
dasBlog
how change displayname (www.google.ca)
1
dasblog
EnableTitlePermaLink (www.google.com)
1
Referrers
Count
177
http://www.dasblog.net/
123
http://dasblog.net/
7
http://en.wikipedia.org/wiki/DasBlog
5
http://sourceforge.net/projects/dasblogce/
3
http://channel9.msdn.com/ShowPost.aspx?PostID=147782
3
http://www.atmarkit.co.jp/fwin2k/operation/intrablog01/intrablog01_02.html
2
http://www.programacion.net/asp/noticias/
2
http://www.hanselman.com/blog/default.aspx
2
http://www.google.com/reader/view/
1
http://www.brainfuel.tv/blog-engines-for-windows-net
1
http://www.hanselman.com/blog/CategoryView.aspx?category=DasBlog
1
http://cp.ourhelmcp.com/interfaces/helmextreme/dasblog.asp?UserAccNum=6JLA1&DomainID=2630
1
http://dasblog.us/viewtopic.php?t=40
1
http://www.hanselman.com/blog/ScottHanselmans2006UltimateDeveloperAndPowerUsersToolListForWindows.aspx
1
http://www.hanselman.com/blog/ActiveASPNETBloggingEngines.aspx
1
http://www.webmaster-talk.com/website-review-and-suggestions/72847-site-review-commercestyle-com.html
1
http://hoser.lander.ca/ct.ashx?id=ef6034d4-1492-4780-9cfd-0fc43341ace0&url=http://www.dasblog.info/
1
http://adam.kahtava.com/journal/2006/07/20/Quality Assurance Unit Testing Test Driven Development TDD Write The Test First.aspx
1
http://localhost/DasBlog/PermaLink.aspx?guid=b705c37b-b47f-4e8d-8f8b-091efc4cb684
1
http://channel9.msdn.com/ShowPost.aspx?PostID=266432
1
http://graysmatter.codivation.com/CategoryView,category,DasBlog.aspx
1
http://blog.cronberg.dk/CategoryView,category,Foredrag.aspx
1
http://kyle.baley.org/ct.ashx?id=788ea723-8b4e-4460-ba2e-561ef7d746f9&url=http://dasblog.info/CategoryView,category,Development%2cVS2005.aspx
1
http://www.markitup.com/Posts/PostsByCategory.aspx?categoryId=5751cee9-5b20-4db1-93bd-7e7c66208236
1
http://robosapient.com/DasBlogBadgeArtworkReleased.aspx
1
http://dasblog.us/
1
http://www.programar.net/news/details.aspx?id=8
1
http://www.bostonpocketpc.com/Happy New Years And A Little QuotGiftquot.aspx
1
http://www.bostonpocketpc.com/ct.ashx?id=7f65af58-5d21-4cb6-9354-c3d0d69d8f21&url=http://www.dasblog.info/
1
http://www.google.com/
1
http://kyle.baley.org/ct.ashx?id=d7693727-87d9-41d6-ad4e-8cfa2339054e&url=http://www.dasblog.info
1
http://sourceforge.net/project/showfiles.php?group_id=127624&package_id=139759
1
http://dasblogce.sourceforge.net/
1
http://www.hoohee.com/CategoryView,category,Home.aspx
1
news:[email protected]
1
User Agents
Count
Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
52
Bloglines/3.1 (http://www.bloglines.com; 1 subscriber)
37
NewsGatorOnline/2.0 (http://www.newsgator.com; 1 subscribers)
36
NutchCVS/0.7.2 (Nutch; http://lucene.apache.org/nutch/bot.html; [email protected])
30
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
19
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
17
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
16
msnbot/1.0 ( http://search.msn.com/msnbot.htm)
9
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
8
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727)
8
nokia6610I/1.0 (4.10) Profile/MIDP-1.0 Configuration/CLDC-1.0 (FAST WAP Proxy/1.0)
6
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
.NET CLR 3.0.04506.30)
5
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
5
voyager/1.0
4
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; EzCenterExplorer; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
3
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; .NET CLR 3.0.04506.30)
3
RssBandit/1.3.0.42 (.NET CLR 1.1.4322.2032; WinNT 5.1.2600.0; http://www.rssbandit.org)
3
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
2
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)
2
Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
2
Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
2
Feedfetcher-Google; ( http://www.google.com/feedfetcher.html)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; InfoPath.1)
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727;
.NET CLR 1.1.4322)
2
Opera/9.02 (Windows NT 5.1; U; en)
2
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
2
Mozilla/5.0 (Windows; U; Windows NT 5.0; es-ES; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
2
Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
2
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; InfoPath.1; .NET CLR
2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)
1
Opera/9.02 (Windows NT 5.1; U; de)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)
1
Opera/9.10 (X11; Linux i686; U; en)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705;
.NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.2; es-AR; rv:1.7.5) Gecko/20041108 Firefox/1.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.1) Gecko/20061204
Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X; it-it) AppleWebKit/418.9.1 (KHTML, like Gecko)
Safari/419.3
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Maxthon; .NET CLR 1.1.4322; .NET
CLR 2.0.50727)
1
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; de; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322;
InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR
1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2;
.NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
.NET CLR 3.0.04324.17)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322;
.NET CLR 2.0.50727)
1
FeedBurner/1.0 (http://www.FeedBurner.com)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727;
Avalon 6.0.5070; WinFX RunTime 3.0.50727; .NET CLR 3.0.04506.30)
1
Mozilla/5.0 (Macintosh; U; Intel Mac OS X; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Opera/9.01 (Windows NT 5.0; U; ru)
1
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
1
Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322;
.NET CLR 3.0.04506.30; HANS)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)
1
Mozilla/5.0 (X11; U; Linux i686; es-AR; rv:1.8.0.9) Gecko/20070102 Ubuntu/dapper-security
Firefox/1.5.0.9
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1;
.NET CLR 2.0.50727)
1
intraVnews/1.2 (http://www.intravnews.com/)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR
2.0.50727; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1) Gecko/20061010 Firefox/2.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; Maxthon
2.0)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR
1.0.3705)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1;
.NET CLR 2.0.50727)
1
Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) Sleipnir/2.49
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Maxthon; .NET CLR 1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MyIE2; Maxthon; TencentTraveler
; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
1
Mozilla/4.08 (Macintosh; I; PPC, Nav)
1
Mozilla/4.0 (compatible; DepSpid/5.07; http://about.depspid.net)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SU 2.009; .NET CLR 2.0.50727; .NET
CLR 1.1.4322)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727;
.NET CLR 3.0.04320; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727;
InfoPath.1; FDM)
1
Mozilla/5.0 (X11; U; Linux i686; it; rv:1.8.1.1) Gecko/20061208 Firefox/2.0.0.1
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322;
.NET CLR 2.0.50727; InfoPath.1)
1
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {145BB450-1DA4-F811-153D-D8231403EA7E};
Avant Browser; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727;
.NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)
1
Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/418.9.1 (KHTML, like Gecko)
Safari/419.3
1
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705;
.NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)
1
User Domains
Count
65.214.44.29
37
64.78.155.100
36
221.130.185.170
16
221.130.185.162
11
65.55.209.172
7
66.151.181.4
6
38.113.234.180
4
58.49.113.176
3
70.82.149.196
3
203.59.26.15
3
221.130.185.179
3
80.33.166.9
3
74.6.66.52
2
84.26.66.4
2
72.14.199.11
2
200.79.84.78
2
193.212.51.164
2
131.107.0.103
2
213.97.56.57
2
72.30.252.151
2
200.224.111.6
2
74.6.72.99
2
88.73.9.237
2
204.104.55.241
2
68.178.4.132
2
71.111.254.67
2
12.191.64.132
2
75.92.37.11
2
160.103.2.220
2
74.6.71.86
2
65.55.209.174
2
213.120.252.228
2
62.92.137.58
2
74.6.74.169
1
193.60.168.67
1
86.76.87.53
1
138.233.79.115
1
74.6.71.32
1
63.169.162.4
1
60.234.238.207
1
74.6.68.213
1
74.6.73.178
1
212.247.95.61
1
88.217.233.102
1
151.140.134.171
1
193.213.34.70
1
222.241.169.133
1
132.239.12.102
1
212.59.178.2
1
147.142.160.206
1
83.118.3.105
1
85.224.35.64
1
86.105.120.244
1
74.6.70.40
1
87.240.15.33
1
63.231.83.177
1
58.53.87.223
1
84.148.2.59
1
72.30.226.225
1
208.59.224.138
1
80.63.66.190
1
213.249.137.86
1
62.168.50.91
1
132.252.52.184
1
74.6.72.49
1
84.9.100.242
1
196.25.255.194
1
60.195.68.68
1
74.6.71.216
1
74.6.70.58
1
74.6.72.180
1
74.6.73.165
1
200.104.78.21
1
59.56.237.122
1
74.6.68.209
1
194.71.243.129
1
212.23.126.20
1
74.6.73.39
1
74.238.102.194
1
206.168.216.206
1
72.30.177.188
1
216.49.80.10
1
74.6.85.217
1
194.47.19.251
1
216.27.89.92
1
74.6.72.71
1
194.73.141.14
1
74.6.73.75
1
71.243.48.252
1
38.100.41.101
1
74.6.69.32
1
195.210.162.146
1
83.250.239.177
1
200.27.110.102
1
70.88.117.113
1
64.22.219.190
1
86.143.34.237
1
89.164.21.116
1
195.47.25.162
1
64.86.141.133
1
72.209.78.6
1
74.6.70.170
1
195.67.17.34
1
74.6.74.37
1
69.139.110.244
1
193.77.124.99
1
70.57.155.100
1
76.187.243.244
1
64.242.6.130
1
72.30.252.106
1
142.167.239.126
1
69.115.226.57
1
74.6.68.205
1
74.6.71.167
1
74.6.65.243
1
60.2.152.122
1
74.6.73.77
1
74.6.75.41
1
151.12.153.130
1
217.110.85.2
1
220.101.143.86
1
85.225.105.184
1
74.6.71.71
1
208.228.181.247
1
74.6.72.217
1
68.52.237.175
1
87.105.118.41
1
80.223.246.200
1
193.180.9.6
1
125.33.155.114
1
65.218.63.4
1
24.16.25.119
1
84.150.68.12
1
74.6.68.227
1
74.6.74.35
1
74.6.70.182
1
86.137.3.110
1
220.240.55.213
1
157.238.154.18
1
216.99.65.8
1
125.235.18.242
1
194.108.139.60
1
213.67.23.189
1
74.6.72.182
1
83.89.187.42
1
137.132.3.11
1
74.6.67.227
1
198.51.179.254
1
70.224.91.80
1
24.9.187.238
1
195.198.174.18
1
74.192.154.206
1
66.150.96.109
1
128.218.82.96
1
218.80.73.64
1
74.6.67.156
1
84.177.34.139
1
67.71.58.240
1
82.71.41.209
1
211.190.33.125
1
71.98.30.170
1
121.41.0.50
1
74.6.68.73
1
217.157.228.34
1
67.155.216.205
1
64.66.107.66
1
216.99.199.105
1
72.69.194.241
1
74.92.24.166
1
74.98.227.69
1
82.120.52.206
1
63.164.207.180
1
74.6.68.46
1
84.16.225.97
1
141.158.171.20
1
82.208.60.14
1
70.8.215.77
1
221.130.61.5
1
213.196.130.71
1
72.30.252.155
1
199.17.133.37
1
87.80.240.162
1
74.6.72.223
1
206.169.45.183
1
219.108.28.139
1
74.6.70.238
1
80.70.47.28
1
74.6.71.74
1
82.182.138.22
1
222.210.200.64
1
77.122.120.147
1
217.228.77.85
1
85.119.130.132
1
74.6.72.174
1
83.141.128.102
1
74.6.71.90
1
72.36.205.10
1
203.122.61.29
1
86.64.67.10
1
74.6.65.250
1
200.127.69.253
1
24.168.248.33
1
146.115.115.244
1
80.59.33.156
1
204.13.165.69
1
74.6.67.76
1
4.78.205.35
1
83.65.76.226
1
137.153.0.41
1
195.84.165.98
1
This weblog is sponsored by DasBlog. [Less]
|