View difference between Paste ID: DNeZ421V and wVrH6bAs
SHOW: | | - or go back to the newest paste.
1
<?php
2-
// DefacePageChecker
2+
3-
// Rinto AR :p
3+
4-
//J3MBOD
4+
5-
// NB : Lihat Hasil Di Found.txt :P
5+
6-
// Thanks : Shutdown57 - Zat Cyber - Xai Syndicate - And Haters
6+
7
    $ch=curl_init($sites);
8
    curl_setopt($ch, CURLOPT_NOBODY, true);
9
    curl_exec($ch);
10
    $check = curl_getinfo($ch, CURLINFO_HTTP_CODE);
11
    curl_close($ch);
12
	if($check == 200) {
13
		echo $sites." -> TerDeface\n";
14
		fwrite(fopen("found.txt","a"),$sites."\n");
15
	}
16
	elseif($check == 404) {
17
		echo $sites." -> 404\n";
18
	}
19
	elseif($check == 500) {
20
		echo $sites." -> 500 Internal Error\n";
21
	}
22
	elseif($check == 403) {
23
		echo $sites." -> 403 Forbidden\n";
24
        }
25
}
26
?>