Skip to content

Instantly share code, notes, and snippets.

@venj
Created May 7, 2013 05:54
Show Gist options
  • Save venj/5530521 to your computer and use it in GitHub Desktop.
Save venj/5530521 to your computer and use it in GitHub Desktop.
Bypass cloudflare. via http://pastebin.com/UG24rC0y (GFWed)
<form method="POST">
<title>Bypass CloudFlare</title>
<center>
</head>
<body>
<p align="center" dir="ltr"><b><font size="5" face="Tahoma">Bypass
<font color="#F68B1F">CloudFlare</font> !</font></b></p>
<select name="krz">
<option>ftp</option>
<option>direct-conntect</option>
<option>webmail</option>
<option>cpanel</option>
</select>
<input type="text" name="target" value="url">
<input type="submit" value="Bypass">
<?
/*
* [~] Coded By : Dr.KroOoZ
* [~] Fixed Bt : DameneDz
* [~] Homepage : www.sec4ever.com
* [~] Greets To : b0x - n4ss1m - DamaneDz - Asmar - No-QRQR
* [~] MyBlog : www.drkroooz.wordpress.com
* [~] Function : i using [ gethostbyname ] fucntion :D
*/
$target = $_POST['target'];
# Bypass From FTP
if($_POST['krz'] == "ftp") {
$ftp = gethostbyname("ftp."."$target");
if(intval($ftp)){
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#000000'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$ftp</font></p>";
}
}
# Bypass From Direct-Connect
if($_POST['krz'] == "direct-conntect") {
$direct = gethostbyname("direct-connect."."$target");
if(intval($direct)){
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#000000'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$direct</font></p>";
}
}
# Bypass From Webmail
if($_POST['krz'] == "webmail") {
$web = gethostbyname("webmail."."$target");
if(intval($web)){
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#000000'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$web</font></p>";
}
}
# Bypass From Cpanel
if($_POST['krz'] == "cpanel") {
$cpanel = gethostbyname("cpanel."."$target");
if(intval($cpanel)){
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#000000'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$cpanel</font></p>";
}
}
?>
<p align="center" dir="ltr"><b><font face="Tahoma" size="2">Coded By :
<font color="#CC0000">Dr.KroOoZ</font> |<font color="#CC0000"> </font>
<a href="http://www.sec4ever.com" style="text-decoration: none">
<font color="#F68B1F">www.sec4ever.com</font><font color="#CC0000"> </font><font color="#000000">|</font><font color="#CC0000">
</font></a></font></b></p>
<p align="center" dir="ltr"><b><font face="Tahoma" size="2" color="#000000">Greets To</font><font face="Tahoma" size="2" color="#CC0000">
: b0x - n4ss1m - DamaneDz - AsMar&nbsp; - No-QRQR </font>
<font face="Tahoma" size="2" color="#000000">!</font></b></p>
</center>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment