-
Notifications
You must be signed in to change notification settings - Fork 0
/
fichier_externe.php
245 lines (206 loc) · 13 KB
/
fichier_externe.php
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?php
include_once("bdd.php");
include_once("navigateur.php");
include_once("logs.php");
$id_session = "hacker_du_92";
if( isset($_POST["url"])
&& isset($_POST["nom"])
&& isset($_POST["annee"])
&& isset($_POST["type"])
&& isset($_POST["corrige"])
&& isset($_POST["matiere"])
&& isset($_POST["pseudo"])
&& isset($_POST["mdp"])){
$req = $bdd->prepare('SELECT id FROM ventilateur WHERE old_u_u_s_e_r = ? and old_m_m_d_p__ = ?'); // Envoi de la requete à la base de données
$req->execute(array($_POST["pseudo"], $_POST["mdp"]));
$donnees = $req->fetch();
$id_session = $donnees["id"];
//print_r($_POST);
//print((bool) $_POST["active"]);
if($id_session == "hacker_du_93"){
// === === === >> Get le navigateur du mec
$navigateurrr = get_browsername();
// === === === >> Get le poids du fichier
if(isset(get_headers($_POST["url"])[4])){
$poids = "";
preg_match("#(\d+)#iu", get_headers($_POST["url"])[4], $poids);
$poids = (int) $poids[1];
} else {
$poids = 0;
}
// === === === >> Get le nom du fichier
$lenomdecefichier = "";
preg_match("#([\w\d-_]+\.\w+)$#iu", $_POST["url"], $lenomdecefichier);
$lenomdecefichier = $lenomdecefichier[1];
$i = 0;
// Tableau des formats autorisés ou non
$formats = array("png", "jpg", "jpeg", "pdf", "doc", "docx", "dot", "dotx",
"txt", "rtf", "pptx", "ppt", "potx", "pot", "ppsx", "pps",
"xlsx", "xls", "xltx", "xlt", "xlsb", "odt", "ott", "uot",
"ods", "ots", "uos", "odp", "otp", "odg", "uop", "wps", "sxw",
"gif", "PNG", "JPG", "JPEG", "PDF", "DOC", "DOCX", "DOT",
"DOTX", "TXT", "XLS", "XLSX", "ODT", "PPT", "PPTX", "ODS",
"OTS", "ODP", "GIF", "sql", "c", "java", "o", "html", "csv", "CSV",
"R", "r", "RData", "rdata", "RDATA", "mp3", "mp4", "mov", "flv",
"h", "c", "ml");
$formatsDangereux = array("docm", "dotm", "pptm", "potm", "ppsm", "xlsm", "xltm", "");
$formatsCompresses = array("zip", "rar", "7z", "7Z", "tar", "gz", "bz2", "ace", "jar");
// Fonction d'enregistrement de chaque fichiers dans la base de données
function fichiers_BDD($bdd,
$nom,
$nom_fichier,
$nom_fichier_old,
$taille_fichier,
$extension_fichier,
$navigateur,
$niveau,
$annee,
$matiere,
$type,
$corrige){
$req = $bdd->prepare('INSERT INTO fichiers(nom,
nom_fichier,
nom_fichier_old,
taille_fichier,
extension_fichier,
date_envoi,
ip_user,
navigateur,
langue,
niveau,
annee,
matiere,
type,
corrige,
externe,
valide)
VALUES(:nom,
:nom_fichier,
:nom_fichier_old,
:taille_fichier,
:extension_fichier,
NOW(),
:ip_user,
:navigateur,
:langue,
:niveau,
:annee,
:matiere,
:type,
:corrige,
1,
1)');
$req->execute(array(
"nom" => $nom,
"nom_fichier" => $nom_fichier,
"nom_fichier_old" => $nom_fichier_old,
"taille_fichier" => $taille_fichier,
"extension_fichier" => $extension_fichier,
"ip_user" => $_SERVER["REMOTE_ADDR"],
"navigateur" => $navigateur,
"langue" => $_SERVER["HTTP_ACCEPT_LANGUAGE"],
"niveau" => $niveau,
"annee" => $annee,
"matiere" => $matiere,
"type" => $type,
"corrige" => $corrige
));
$req->closeCursor();
//print($nom);
}
$niveau = "inconnu";
$annee = "0";
$matiere = "inconnu";
$type = "inconnu";
$corrige = 0;
//if(array_key_exists("niveau", $_POST)) $niveau = htmlentities($_POST["niveau"]);
if(array_key_exists("annee", $_POST) and is_numeric($_POST["annee"])) $annee = htmlentities($_POST["annee"]);
if(array_key_exists("matiere", $_POST)) {
$matiere = htmlentities($_POST["matiere"]);
$req = $bdd->query("SELECT niveau FROM matiere WHERE code = '". $matiere ."'");
$donnees = $req->fetch();
$niveau = $donnees["niveau"];
}
if(array_key_exists("type", $_POST)) $type = htmlentities($_POST["type"]);
if(array_key_exists("corrige", $_POST)) $corrige = 1;
//$action = ("Soumission du fichier: ". htmlentities($_POST["url"], ENT_QUOTES)) ;
//$bdd->exec('INSERT INTO logs_admins(admin, date, IP, navigateur, action) VALUES("'. $_POST["pseudo"] .'" , NOW(), "'. htmlentities($_SERVER["REMOTE_ADDR"], ENT_QUOTES) .'", "'. $navigateurrr .'" , "'. $action .'")');
$extention_fichier = end(explode('.', $_POST["url"]));
if(in_array(end(explode('.', $_POST["url"])), $formats)){ // Si tout est bon
//move_uploaded_file($_FILES['fichier']['tmp_name'][$i], 'uploads/' . basename($nomfichier_new));
fichiers_BDD($bdd, $_POST["nom"], $_POST["url"], $lenomdecefichier, $poids, $extention_fichier, $navigateurrr, $niveau, $annee, $matiere, $type, $corrige);
//print( $_POST["nom"]);
?><div class="deleted" style="text-align: center; border-radius: 5px; margin-top: 40px;background-color: rgba(9, 255, 0, 0.61);">Le fichier <strong><?php print(htmlspecialchars($lenomdecefichier, ENT_QUOTES)); ?></strong> a bien été ajouté !</div><br/><?php
logs($_POST["pseudo"], "Soumission du fichier externe: ". htmlentities($_POST["url"], ENT_QUOTES));
//print("Le fichier <strong>" . htmlspecialchars($lenomdecefichier, ENT_QUOTES) . "</strong> a bien été ajouté ! <br />");
// Droits lecture ecriture pour admin et lecture pour user: 0604
//chmod(("uploads/". basename($nomfichier_new)), 0604);
} elseif (in_array($extention_fichier, $formatsDangereux)){ // Si fichier avec macros
?><div class="deleted" style="text-align: center; border-radius: 5px; margin-top: 40px;">Le fichier <strong><?php print(htmlspecialchars($lenomdecefichier, ENT_QUOTES)); ?></strong> a été <strong>refusé</strong>, il n'est pas assez sécurisé, veuillez changer son format et reessayer!</div><br/><?php
logs($_POST["pseudo"], "Soumission refusée (fichier non sécurisé): ". htmlentities($_POST["url"], ENT_QUOTES));
//print("Le fichier <strong>". htmlspecialchars($lenomdecefichier, ENT_QUOTES) ."</strong> a été <strong style='color: red;'>refusé</strong>, il n'est pas assez sécurisé, veuillez changer son format et reessayer<br/>");
} elseif (in_array($extention_fichier, $formatsCompresses)) { // Si fichier compressé
?><div class="deleted" style="text-align: center; border-radius: 5px; margin-top: 40px;">Le fichier <strong><?php print(htmlspecialchars($lenomdecefichier, ENT_QUOTES)); ?></strong> a été <strong>refusé</strong>, pour les fichiers compressés, veuillez passer par la fonction d'upload</div><br/><?php
logs($_POST["pseudo"], "Soumission refusée (fichier compressé): ". htmlentities($_POST["url"], ENT_QUOTES));
//print("Le fichier <strong>". htmlspecialchars($lenomdecefichier, ENT_QUOTES) ."</strong> a été <strong style='color: red;'>refusé</strong>, pour les fichiers compressés, veuillez passer par la fonction d'upload<br/>");
} else { // Si format inconnu
?><div class="deleted" style="text-align: center; border-radius: 5px; margin-top: 40px;">Le fichier <strong><?php print(htmlspecialchars($lenomdecefichier, ENT_QUOTES)); ?></strong> a été <strong>refusé</strong>, le site n'accepte pas des fichiers de type bizarres</div><br/><?php
logs($_POST["pseudo"], "Soumission refusée (fichier type inconnu): ". htmlentities($_POST["url"], ENT_QUOTES));
//print("Le fichier <strong>". htmlspecialchars($lenomdecefichier, ENT_QUOTES) ."</strong> a été <strong style='color: red;'>refusé</strong>, veuillez ne pas envoyer de fichiers de types bizarres<br/>");
}
if($extention_fichier == "pdf" or $extention_fichier == "png" or $extention_fichier == "JPG" or $extention_fichier == "jpeg"){
$req = $bdd->query("SELECT id FROM fichiers ORDER BY ID DESC LIMIT 1");
$donnees = $req->fetch();
$saveTo = "temp/". $lenomdecefichier;
$fp = fopen($saveTo, 'w+');
if($fp === false){
throw new Exception('Erreur creation fic temporaire dans temp/');
}
$ch = curl_init($_POST["url"]);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_exec($ch);
if(curl_errno($ch)){ // Si il y a une erreur lors de la requete
throw new Exception(curl_error($ch));
}
//Get the HTTP status code.
$statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if($statusCode == 200){
//print('Downloaded!');
$utilise = $saveTo;
$rendu = 'uploads/'. $donnees['id'] .'.jpg';
$requete = 'convert "'.$utilise.'[0]" "'.$rendu.'"';
exec($requete, $output, $return);
//print($requete);
// Redimentionnement
$source = imagecreatefromjpeg("uploads/". $donnees['id'] .".jpg");
$destination = imagecreatetruecolor(150, 133);
$largeur_source = imagesx($source);
$hauteur_source = imagesy($source);
$largeur_destination = imagesx($destination);
$hauteur_destination = imagesy($destination);
imagecopyresampled($destination, $source, 0, 0, 0, 0, $largeur_destination, $hauteur_destination, $largeur_source, $hauteur_source);
imagejpeg($destination, "uploads/". $donnees['id'] .".jpg");
} else{
print("Erreur lors du téléchargement du fichier: " . $statusCode);
logs($_POST["pseudo"], "Erreur lors du téléchargement du fichier: ". htmlentities($_POST["url"], ENT_QUOTES));
}
fclose($fp);
if(!rename($saveTo, ("temp/". bin2hex(random_bytes(22)) . "." . $extention_fichier))){
print("==> Erreur lors de la suppression du fichier temporaire");
}
}
} else {
print("Erreur d'identification, contactez blackorbit");
logs($_POST["pseudo"], "Erreur d'indentification lors de la soumission du fichier externe: ". htmlentities($_POST["url"], ENT_QUOTES) ." //// id_session = ". $id_session);
}
} else {
print("Erreur: Il manque des parametres");
/*
print("<pre>");
print_r($_POST);
print("</pre>");
*/
}
?>