This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title></title> | |
<style> | |
body { | |
background: white; | |
text-align: center; | |
padding: 20px; | |
font-family: Georgia, serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Outputs all POST parameters to a text file. The file name is the date_time of the report reception | |
$fileName = date('Y-m-d_H-i-s').'.txt'; | |
$file = fopen($fileName,'w') or die('Could not create report file: ' . $fileName); | |
foreach($_POST as $key => $value) { | |
$reportLine = $key." = ".$value."\n"; | |
fwrite($file, $reportLine) or die ('Could not write to report file ' . $reportLine); | |
} | |
fclose($file); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ANDROID_VERSION": 1.5, | |
"APP_VERSION_CODE": 8, | |
"APP_VERSION_NAME": 1.3, | |
"AVAILABLE_MEM_SIZE": 181972992, | |
"BRAND": "generic", | |
"BUILD": { | |
"BOARD": "unknown", | |
"BRAND": "generic", | |
"DEVICE": "generic", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": "05c5a0e0-fcdc-44ef-a03a-7f1dd1b6f63d", | |
"_rev": "1-9bcfc8c466dc581e49966cccc4d28e7b", | |
"USER_EMAIL": "N/A", | |
"SETTINGS_GLOBAL": { | |
}, | |
"DEVICE_FEATURES": { | |
"android.hardware.location.network": true, | |
"android.hardware.location": true, | |
"android.hardware.touchscreen.multitouch.jazzhand": true, |