unix and linux operating commands

Wikipedia: Trust but Verify


 
Thread Tools Search this Thread
# 1  
Old 05-28-2008
Wikipedia: Trust but Verify

Security professionals are, almost by definition, inclined to be skeptical (not to say paranoid) by nature, and among the least likely to say without irony "It must be true, I read it on Wikipedia!" Those of us who specialize in anti-malware research not only share these traits, but are also accustomed to being considered incompetent or downright crooked, not to mention the still widely-held belief that we write all the viruses. (I considered what I think are some of the reasons for all that in an article for Virus Bulletin a couple of years ago, by the way.)
So it's a pleasant surprise to come across a Wikipedia entry that's not only painstakingly accurate (to the point that the author went to the trouble of asking me to check its accuracy), but complimentary towards its subject despite his longstanding association with anti-virus research. :)
Author/reviewer/consultant (etc) Robert Slade's contributions to the common weal are not restricted to anti-virus, of course: his name is well known in (ISC)2 circles, and his longstanding book review project is a seriously useful resource. It's a pleasure to see an old friend and colleague (we wrote a book on viruses together some years ago) get some of the recognition he deserves. Cheers, Rob!


More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. HP-UX

Not Trust Host 10.10.10.10

I get a message similar to this, in the syslog file. Actually, I am trying to let the host at 10.10.10.10 access the HP-UX system. How do I get it trusted? Thanks! (2 Replies)
Discussion started by: instant000
2 Replies

2. News, Links, Events and Announcements

UNIX Entry in Wikipedia

I noticed that Wikipedia has a like to our forums on their Unix page at the bottom where the external links are listed. (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question
WWW::Wikipedia::Entry(3pm)				User Contributed Perl Documentation				WWW::Wikipedia::Entry(3pm)

NAME
WWW::Wikipedia::Entry - A class for representing a Wikipedia Entry SYNOPSIS
my $wiki = WWW::Wikipedia->new(); my $entry = $wiki->search( 'Perl' ); print $entry->text(); my $entry_es = $entry->language( 'es' ); print $entry_es->text(); DESCRIPTION
WWW::Wikipedia::Entry objects are usually created using the search() method on a WWW::Wikipedia object to search for a term. Once you've got an entry object you can then extract pieces of information from the entry using the following methods. METHODS
new() You probably won't use this one, it's the constructor that is called behind the scenes with the correct arguments by WWW::Wikipedia::search(). text() The brief text for the entry. This will provide the first paragraph of text; basically everything up to the first heading. Ordinarily this will be what you want to use. When there doesn't appear to be summary text you will be returned the fulltext instead. If text() returns nothing then you probably are looking at a disambiguation entry, and should use related() to lookup more specific entries. text_basic() The same as "text()", but not run through Text::Autoformat. fulltext() Returns the full text for the entry, which can be extensive. fulltext_basic() The same as "fulltext()", but not run through Text::Autoformat. title() Returns a title of the entry. related() Returns a list of terms in the wikipedia that are mentioned in the entry text. categories() Returns a list of categories which the entry is part of. So Perl is part of the Programming languages category. headings() Returns a list of headings used in the entry. raw() Returns the raw wikitext for the entry. language() With no parameters, it will return the current language of the entry. By specifying a two-letter language code, it will return the same entry in that language, if available. languages() Returns an array of two letter language codes denoting the languages in which this entry is available. AUTHORS
Ed Summers <ehs@pobox.com> Brian Cassidy <bricas@cpan.org> COPYRIGHT AND LICENSE
Copyright 2003-2011 by Ed Summers This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2011-02-16 WWW::Wikipedia::Entry(3pm)