summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2017-07-05 13:21:56 -0300
committerRenato Botelho <renato@netgate.com>2017-07-05 13:22:25 -0300
commit41744bf96fcfe754da1e812c0cb3d7bf98a56dd1 (patch)
tree9da5ce4b59c98c25425866e283f04cb445c154d5 /src/usr/local/www
parentea8abb80b3f799b67e6695f808bbaa48f939564d (diff)
downloadpfsense-41744bf96fcfe754da1e812c0cb3d7bf98a56dd1.zip
pfsense-41744bf96fcfe754da1e812c0cb3d7bf98a56dd1.tar.gz
Send uniqueid instead of UUID on user-agent
Diffstat (limited to 'src/usr/local/www')
-rw-r--r--src/usr/local/www/crash_reporter.php10
-rw-r--r--src/usr/local/www/system_advanced_misc.php18
2 files changed, 17 insertions, 11 deletions
diff --git a/src/usr/local/www/crash_reporter.php b/src/usr/local/www/crash_reporter.php
index d674440..74af74e 100644
--- a/src/usr/local/www/crash_reporter.php
+++ b/src/usr/local/www/crash_reporter.php
@@ -61,11 +61,13 @@
require_once("guiconfig.inc");
require_once("functions.inc");
require_once("captiveportal.inc");
+require_once("system.inc");
define("FILE_SIZE", 450000);
function upload_crash_report($files) {
- global $g;
+ global $g, $config;
+
$post = array();
$counter = 0;
foreach ($files as $file) {
@@ -77,7 +79,11 @@ function upload_crash_report($files) {
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_USERAGENT, $g['product_name'] . '/' . $g['product_version']);
+ if (!isset($config['system']['do_not_send_uniqueid'])) {
+ curl_setopt($ch, CURLOPT_USERAGENT, $g['product_name'] . '/' . $g['product_version'] . ' : ' . system_get_uniqueid());
+ } else {
+ curl_setopt($ch, CURLOPT_USERAGENT, $g['product_name'] . '/' . $g['product_version']);
+ }
curl_setopt($ch, CURLOPT_URL, $g['crashreporterurl']);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
diff --git a/src/usr/local/www/system_advanced_misc.php b/src/usr/local/www/system_advanced_misc.php
index 79ca581..8c370ba 100644
--- a/src/usr/local/www/system_advanced_misc.php
+++ b/src/usr/local/www/system_advanced_misc.php
@@ -87,7 +87,7 @@ $pconfig['skip_rules_gw_down'] = isset($config['system']['skip_rules_gw_down']);
$pconfig['use_mfs_tmpvar'] = isset($config['system']['use_mfs_tmpvar']);
$pconfig['use_mfs_tmp_size'] = $config['system']['use_mfs_tmp_size'];
$pconfig['use_mfs_var_size'] = $config['system']['use_mfs_var_size'];
-$pconfig['do_not_send_host_uuid'] = isset($config['system']['do_not_send_host_uuid']);
+$pconfig['do_not_send_uniqueid'] = isset($config['system']['do_not_send_uniqueid']);
$pconfig['powerd_ac_mode'] = "hadp";
if (!empty($config['system']['powerd_ac_mode'])) {
@@ -215,10 +215,10 @@ if ($_POST) {
unset($config['system']['pkg_nochecksig']);
}
- if ($_POST['do_not_send_host_uuid'] == "yes") {
- $config['system']['do_not_send_host_uuid'] = true;
+ if ($_POST['do_not_send_uniqueid'] == "yes") {
+ $config['system']['do_not_send_uniqueid'] = true;
} else {
- unset($config['system']['do_not_send_host_uuid']);
+ unset($config['system']['do_not_send_uniqueid']);
}
if ($_POST['powerd_enable'] == "yes") {
@@ -597,11 +597,11 @@ if ($g['platform'] == "pfSense") {
$section = new Form_Section('Installation Feedback');
$section->addInput(new Form_Checkbox(
- 'do_not_send_host_uuid',
- 'Host UUID',
- 'Do NOT send HOST UUID with user agent',
- $pconfig['do_not_send_host_uuid']
-))->setHelp('Enable this option to not send HOST UUID to pfSense as part of User-Agent header.');
+ 'do_not_send_uniqueid',
+ 'Netgate Device ID',
+ 'Do NOT send Netgate Device ID with user agent',
+ $pconfig['do_not_send_uniqueid']
+))->setHelp('Enable this option to not send Netgate Device ID to pfSense as part of User-Agent header.');
$form->add($section);
OpenPOWER on IntegriCloud