aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/main_window_slots.cpp
diff options
context:
space:
mode:
authorMoshe Kaplan <me@moshekaplan.com>2018-03-28 22:58:29 -0400
committerPeter Wu <peter@lekensteyn.nl>2018-03-29 15:33:53 +0000
commite2ec760d5ec00168d20b6c87095d8752934d732f (patch)
tree17dcf9d15a396d22af4d0ec6244943192759c9d1 /ui/qt/main_window_slots.cpp
parentc7d06ea675388d8af2ae44a3b86500298cb3dcf5 (diff)
Extend 'HTTP Referer statistics' to sequence HTTP Redirects
This patch adds support for sequencing HTTP Redirects. This enables tracking of HTTP-based redirects, which may not have a Referer header. As such, this patch also renames 'HTTP Referer statistics' to 'HTTP Request Sequences' to better reflect the more generic functionality. Note that this does not fully support RFC 3986. An external library like uriparser.github.io may be a better option for efficient, full relative HTTP URL resolution. A Sample PCAP to test functionality is available here: https://wiki.wireshark.org/SampleCaptures?action=AttachFile&do=get&target=http_redirects.pcapng A sample PCAP to demonstrate usefulness is available here: https://www.malware-traffic-analysis.net/2015/08/31/page2.html (examine request to hxxp://lk2gaflsgh.jgy658snfyfnvh.com/service.php) Change-Id: I9edd1a1de86228b0dcb1df9f6f30e24379684321 Reviewed-on: https://code.wireshark.org/review/26679 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'ui/qt/main_window_slots.cpp')
-rw-r--r--ui/qt/main_window_slots.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index 1c70a6f389..b1cc787ad4 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -3324,9 +3324,9 @@ void MainWindow::on_actionStatisticsHTTPLoadDistribution_triggered()
openStatisticsTreeDialog("http_srv");
}
-void MainWindow::on_actionStatisticsHTTPReferers_triggered()
+void MainWindow::on_actionStatisticsHTTPRequestSequences_triggered()
{
- openStatisticsTreeDialog("http_ref");
+ openStatisticsTreeDialog("http_seq");
}
void MainWindow::on_actionStatisticsPacketLengths_triggered()