
Obtenir les informations client avec getdatareport (Plugin)
Script en PHP+JS pour obtenir des informations sur la cible via une application web, utilise les fonctions $_SERVER et les fonctions JS pour obtenir des informations sur notre client.
dans certaines applications web, il est nécessaire de collecter des informations sur le client pour effectuer des tâches ; avec ce plugin, il sera plus facile de travailler avec les variables dont vous avez besoin.
<?php
include(__DIR__."/GetdataReport.Plugin.php");
$data = new GetDataPlugin();
echo "<br>IP ".$data->ip();
echo "<br>Operative System ".$data->os();
echo "<br>Browser ".$data->browser();
echo "<br>Screen height ".$data->height();
echo "<br>Screen width ".$data->width();
echo "<br>Java enabled ".$data->javaenabled();
echo "<br>Cookie enabled ".$data->cookieenabled();
echo "<br>Language ".$data->language();
echo "<br>Architecture ".$data->architecture();
echo "<br>Device ".$data->device();
echo "<br>Country ".$data->geo('country');
echo "<br>Region ".$data->geo('region');
echo "<br>Continent ".$data->geo('continent');
echo "<br>City ".$data->geo('city');
echo "<br>Logitude ".$data->geo('logitude');
echo "<br>Latitude ".$data->geo('latitude');
echo "<br>Currency ".$data->geo('currency');
echo "<br>Provetor ".$data->provetor();
echo "<br>Agent ".$data->agent();
echo "<br>Referer ".$data->referer();
echo "<br>Date ".$data->getdate();
?>