- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Perl - Using LWP or Similar - Logging into ITR...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2003 09:32 AM
09-18-2003 09:32 AM
Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
I'll post the code later. But mainly wanted to see if someone already invented that wheel.
Thanks
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2003 09:43 AM
09-18-2003 09:43 AM
Re: Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
http://us-support.external.hp.com/digest/bin/doc.pl
Sign up and you get it all by email.
I'm sure procura/merijn(who I still owe work) has code that can be modified for the job.
The email is the reliable way to go.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2003 11:51 AM
09-18-2003 11:51 AM
Re: Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
Thanks
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2003 04:48 PM
09-18-2003 04:48 PM
Re: Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
If you are going to write a perl script(you can) to go through itrc like Merijn does for statistics, it is going to be less reliable than email.
If you run your query between 12:30 a.m. and 1:00 a.m.(CST( You'll get nothing because some wild network thing is going on and itrc is non-responsive.
Then there is the three day outage of itrc due to the sql virus in February.
As I recall, I was still getting email from HP during those times.
Here is were to get the source code to start.
http://www.cmve.net/~merijn/#Statistics
It will get you to the basics of getting into itrc beyond the login. It will also probably use up all the band width you have while its running.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2003 04:27 AM
09-19-2003 04:27 AM
Re: Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2003 05:25 AM
09-19-2003 05:25 AM
Re: Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
Thanks
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2003 06:32 AM
09-19-2003 06:32 AM
Re: Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
--8<---
sub webget ($$)
{
my ($t, $p) = @_;
$t = $t ? "-T 30 -t 5" : "";
(my $f = $p) =~ s:.*/::;
unlink $f;
printf STDERR "wget %-38s\t", $f;
my $now = time;
system "wget -q $t $p";
$p = time - $now;
$t = -s $f;
printf STDERR "[ %6d %5.1f kbps ]\n", $t, $t / $p / 1024;
$t;
} # webget
-->8---
The 'system "wget -q $t $p";' line does the access, using the wonderful external program wget. This is the only funtion that does access, so just scan for webget
HTH, Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2003 12:43 PM
09-19-2003 12:43 PM
Re: Perl - Using LWP or Similar - Logging into ITRC to Get Sec. Bulletins?
Michael