NAME
WWW::TamperData - Replay tamper data xml files
VERSION
Version 0.08
SYNOPSIS
Tamperdata is a firefox extension that lets you intercept or inspect browser requests and the server responses. WWW::TamperData can replay requests exported to an xml file from tamperdata.
Replaying a file can be as simple as:
use WWW::TamperData;
my $foo = WWW::TamperData->new(transcript => "myfile.xml");
my %data = $foo->replay();
FUNCTIONS
new
Initializes the new object, it takes some options;
- WWW::TamperData->new(%options);
-
KEY DEFAULT USE ------- ----------------- ------------------------------------ transcript tamperdata.xml Filename to read tamperdata xml from timeout 60 LWP connection timeout
replay
This function will replay all the requests provided in the xml file in sequential order.
request_filter
Callback function that allows inspection/tampering of the uri and parameters before the request is performed.
response_filter
Callback function that allows inspection of the response object.
AUTHOR
Eldar Marcussen, <japh at justanotherhacker.com>
BUGS
Please report any bugs or feature requests to bug-www-tamperdata at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-TamperData. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc WWW::TamperData
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
COPYRIGHT & LICENSE
Copyright 2009 Eldar Marcussen, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.