Giriş
Sayt bölmələri
Xəbərlər
Qonaq dəftəri
Forum
Bloqlar
Musiqi
Foto
Video
Yükləmələr
İcmalar
Lotereyalar
İstifadəçilər Onlayn oyunlar
Onlayn kinoteatr
Mağaza
Bu sayt kukilərdən istifadə edir. Onların istifadəsinə razılıq verirsinizmi?
Bəli, icazə verirəm.
Şərhlər 28
Əməliyyatlar
BY_LEGIONER, Baza verersen baxaram
----
Hub...
21 Yan 2021, 17:30
----
Hub...
0
Əməliyyatlar
ProHack, Sende berke Rehberlik.Php ola
5 Okt 2020, 13:39
Xarici keçid
http://Zorlama.Tk
ucun mende nese iwlemir ele bil kodlanibdi zipin yukledim ama burda meselen atmaq olmadihttp://Zorlama.Tk
0
Əməliyyatlar
[c]# BY_LEGIONER ([time]04.10.2020 16:20[/time])
ProHack, Paylawma ucun twk yorulmuyasan ehtiyaci olanlar istifade ede biler mene http://Zorlama.Tk in rehberlik.php in ici lazimdi berke sende ola birde Azn.php da dirka var onu nece baglamaq olar me[/c]Atarsan php baglayaram
4 Okt 2020, 21:12
ProHack, Paylawma ucun twk yorulmuyasan ehtiyaci olanlar istifade ede biler mene http://Zorlama.Tk in rehberlik.php in ici lazimdi berke sende ola birde Azn.php da dirka var onu nece baglamaq olar me[/c]Atarsan php baglayaram
0
Əməliyyatlar
ProHack, Paylawma ucun twk yorulmuyasan ehtiyaci olanlar istifade ede biler mene
4 Okt 2020, 20:20
Xarici keçid
http://Zorlama.Tk
in rehberlik.php in ici lazimdi berke sende ola birde Azn.php da dirka var onu nece baglamaq olar meselen azn.php baglamamiwdan evel bezi ermeniler gelib ordan rehberlik alib 0 aznla id1 in giriwin qadaga edirdiler esas rehberlik.php in ici lazimdi dirkasiz olsun ama inden twk Allah herbirmizin ureyine gore versin Aminhttp://Zorlama.Tk
0
Əməliyyatlar
xP_M4ST3R, Deymez nese lazim olsa yaz
8 Apr 2020, 11:57
0
Əməliyyatlar
Qəşəy ? belə mövzuları görəndə adamın ürəyi açılır ?
8 Apr 2020, 04:38
0
Əməliyyatlar
Anti ddos 2 anti-ddos.php ye bu kodlari
anti-ddos.html e urey sozlerinizi yazin))
[code=php]
<?php
/**
* Cleantalk base class
*
* @version 1.0
* @package Cleantalk
* @author Cleantalk team (welcome@cleantalk.org)
* @copyright (C) CleanTalk team (
* @license GNU/GPL:
*
*/
// Switch to control AntiDDoS state.
$anti_ddos_protection_enable = true;
// Activate debug statements.
$anti_ddos_debug = false;
if ($anti_ddos_protection_enable && isset($_SERVER['REMOTE_ADDR'])) {
// List of trusted Autonomous systems.
$not_rated_as = '13238,15169,8075,10310,36647,13335,2635,32934,38365,55967,16509,2559,19500,47764,17012,1449,43247,32734,15768,33512,18730,30148';
$remote_ip = $_SERVER['REMOTE_ADDR'];
$secure__label = 'ct_anti_ddos_key';
// Secret key salt to avoid copy/past of the Cookie between visitors.
// ATTENTION!!!
// YOU MUST GENERATE NEW $security__salt BEFORE USE IT ON YOUR OWN SITE.
// ATTENTION!!!
$secure__salt = '4xU9mn2X7iPZpeW2';
$secure__key = md5($remote_ip . ':' . $secure__salt);
// Days to use secure .
$secure__days = 180;
// Delay in seconds before redirection to original URL.
$redirect_delay = 3;
$test_ip = true;
$set_secure_ = true;
if (isset($_COOKIE[$secure__label]) && $_COOKIE[$secure__label] == $secure__key) {
$test_ip = false;
$set_secure_ = false;
}
//
// Skiping visitors from trusted AS
// Example: Google, Microsoft and etc.
//
$skip_trusted = false;
if ($test_ip && function_exists('geoip_org_by_name')) {
$visitor_org = geoip_org_by_name($remote_ip);
if ($visitor_org !== false && preg_match("/^AS(d+)s/", $visitor_org, $matches)) {
$not_rated_as = explode(",", $not_rated_as);
foreach ($not_rated_as as $asn) {
if ($skip_trusted) {
continue;
}
if ($asn == $matches[1]) {
$skip_trusted = true;
}
}
if ($skip_trusted) {
if ($anti_ddos_debug) {
error_log(sprintf('Skip antiddos protection for %s, because it's trusted AS%d.', $remote_ip, $asn));
}
$test_ip = false;
}
}
}
$run_stop_action = $test_ip;
if ($run_stop_action) {
$html_file = file_get_contents(dirname(__FILE__) . '/anti-ddos.html');
echo sprintf($html_file,
$remote_ip,
$remote_ip,
$redirect_delay,
$secure__days,
$secure__label,
$secure__key,
$redirect_delay * 1000
);
if ($anti_ddos_debug) {
error_log(sprintf('Blacklisted IP, drop connection %s to %s.',
$remote_ip,
$_SERVER['REQUEST_URI']
));
}
exit;
}
if ($set_secure_ && !$run_stop_action) {
set($secure__label, $secure__key, null, '/');
}
}
?>
[/code]
8 Apr 2020, 00:43
anti-ddos.html e urey sozlerinizi yazin))
[code=php]
<?php
/**
* Cleantalk base class
*
* @version 1.0
* @package Cleantalk
* @author Cleantalk team (welcome@cleantalk.org)
* @copyright (C) CleanTalk team (
Xarici keçid
* @license GNU/GPL:
Xarici keçid
http://www.gnu.org/copyleft/gpl.html
http://www.gnu.org/copyleft/gpl.html
*
*/
// Switch to control AntiDDoS state.
$anti_ddos_protection_enable = true;
// Activate debug statements.
$anti_ddos_debug = false;
if ($anti_ddos_protection_enable && isset($_SERVER['REMOTE_ADDR'])) {
// List of trusted Autonomous systems.
$not_rated_as = '13238,15169,8075,10310,36647,13335,2635,32934,38365,55967,16509,2559,19500,47764,17012,1449,43247,32734,15768,33512,18730,30148';
$remote_ip = $_SERVER['REMOTE_ADDR'];
$secure__label = 'ct_anti_ddos_key';
// Secret key salt to avoid copy/past of the Cookie between visitors.
// ATTENTION!!!
// YOU MUST GENERATE NEW $security__salt BEFORE USE IT ON YOUR OWN SITE.
// ATTENTION!!!
$secure__salt = '4xU9mn2X7iPZpeW2';
$secure__key = md5($remote_ip . ':' . $secure__salt);
// Days to use secure .
$secure__days = 180;
// Delay in seconds before redirection to original URL.
$redirect_delay = 3;
$test_ip = true;
$set_secure_ = true;
if (isset($_COOKIE[$secure__label]) && $_COOKIE[$secure__label] == $secure__key) {
$test_ip = false;
$set_secure_ = false;
}
//
// Skiping visitors from trusted AS
// Example: Google, Microsoft and etc.
//
$skip_trusted = false;
if ($test_ip && function_exists('geoip_org_by_name')) {
$visitor_org = geoip_org_by_name($remote_ip);
if ($visitor_org !== false && preg_match("/^AS(d+)s/", $visitor_org, $matches)) {
$not_rated_as = explode(",", $not_rated_as);
foreach ($not_rated_as as $asn) {
if ($skip_trusted) {
continue;
}
if ($asn == $matches[1]) {
$skip_trusted = true;
}
}
if ($skip_trusted) {
if ($anti_ddos_debug) {
error_log(sprintf('Skip antiddos protection for %s, because it's trusted AS%d.', $remote_ip, $asn));
}
$test_ip = false;
}
}
}
$run_stop_action = $test_ip;
if ($run_stop_action) {
$html_file = file_get_contents(dirname(__FILE__) . '/anti-ddos.html');
echo sprintf($html_file,
$remote_ip,
$remote_ip,
$redirect_delay,
$secure__days,
$secure__label,
$secure__key,
$redirect_delay * 1000
);
if ($anti_ddos_debug) {
error_log(sprintf('Blacklisted IP, drop connection %s to %s.',
$remote_ip,
$_SERVER['REQUEST_URI']
));
}
exit;
}
if ($set_secure_ && !$run_stop_action) {
set($secure__label, $secure__key, null, '/');
}
}
?>
[/code]
0
Əməliyyatlar
Sql injek acigin baglamaq
[code=php]
function prohacker( $prohack )
{
return htmlspecialchars(addslashes( $prohack ));
}
echo prohacker();
[/code]
8 Apr 2020, 00:30
[code=php]
function prohacker( $prohack )
{
return htmlspecialchars(addslashes( $prohack ));
}
echo prohacker();
[/code]
0
Əməliyyatlar
Sekile Olcu Vermek
[code=php]
function ajx_sharpen_resized_files( $resized_file ) {
$image = wp_load_image( $resized_file );
if ( !is_resource( $image ) )
return new WP_Error( 'error_loading_image', $image, $file );
$size = @getimagesize( $resized_file );
if ( !$size )
return new WP_Error('invalid_image', __('Could not read image size'), $file);
list($orig_w, $orig_h, $orig_type) = $size;
switch ( $orig_type ) {
case IMAGETYPE_JPEG:
$matrix = array(
array(-1, -1, -1),
array(-1, 16, -1),
array(-1, -1, -1),
);
$divisor = array_sum(array_map('array_sum', $matrix));
$offset = 0;
imageconvolution($image, $matrix, $divisor, $offset);
imagejpeg($image, $resized_file,apply_filters( 'jpeg_quality', 90, 'edit_image' ));
break;
case IMAGETYPE_PNG:
return $resized_file;
case IMAGETYPE_GIF:
return $resized_file;
}
return $resized_file;
}
add_filter('image_make_intermediate_size', 'ajx_sharpen_resized_files',900);
[/code]
8 Apr 2020, 00:26
[code=php]
function ajx_sharpen_resized_files( $resized_file ) {
$image = wp_load_image( $resized_file );
if ( !is_resource( $image ) )
return new WP_Error( 'error_loading_image', $image, $file );
$size = @getimagesize( $resized_file );
if ( !$size )
return new WP_Error('invalid_image', __('Could not read image size'), $file);
list($orig_w, $orig_h, $orig_type) = $size;
switch ( $orig_type ) {
case IMAGETYPE_JPEG:
$matrix = array(
array(-1, -1, -1),
array(-1, 16, -1),
array(-1, -1, -1),
);
$divisor = array_sum(array_map('array_sum', $matrix));
$offset = 0;
imageconvolution($image, $matrix, $divisor, $offset);
imagejpeg($image, $resized_file,apply_filters( 'jpeg_quality', 90, 'edit_image' ));
break;
case IMAGETYPE_PNG:
return $resized_file;
case IMAGETYPE_GIF:
return $resized_file;
}
return $resized_file;
}
add_filter('image_make_intermediate_size', 'ajx_sharpen_resized_files',900);
[/code]
0
Əməliyyatlar
[code=php]
// wordpress versiyonu gizletme
function complete_version_removal() {
return '';
}
add_filter('the_generator', 'complete_version_removal');
[/code]
8 Apr 2020, 00:25
// wordpress versiyonu gizletme
function complete_version_removal() {
return '';
}
add_filter('the_generator', 'complete_version_removal');
[/code]
0
Əməliyyatlar
Wordpress de Guncellenme gelende Ekrana yazdirmasina qadaga
[code=php]
global $user_login;
get_currentuserinfo();
if (!current_user_can('update_plugins')) { //
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
}
[/code]
8 Apr 2020, 00:23
[code=php]
global $user_login;
get_currentuserinfo();
if (!current_user_can('update_plugins')) { //
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
}
[/code]
0
Əməliyyatlar
[code=php]
// WordPress giriş seyfesi logosun deyiwmek
function custom_loginlogo() {
echo '<style type="text/css">
body.login div#login h1 a {
background-image: url(https://sizinsayt.com/logo.png);
}
.login h1 a {
background-size: 269px;
width: 269px;
height:60px;
</style>';
}
add_action('login_head', 'custom_loginlogo');
[/code]
8 Apr 2020, 00:22
// WordPress giriş seyfesi logosun deyiwmek
function custom_loginlogo() {
echo '<style type="text/css">
body.login div#login h1 a {
background-image: url(https://sizinsayt.com/logo.png);
}
.login h1 a {
background-size: 269px;
width: 269px;
height:60px;
</style>';
}
add_action('login_head', 'custom_loginlogo');
[/code]
0
Əməliyyatlar
Anti ddos 100% iwlek
[code=php]
$country = geoip_country_name_by_name($_SERVER['REMOTE_ADDR']);
if ($country != "Azerbaijan" && $country != "Russian" && $_SERVER['REMOTE_ADDR']!="SERVERINIZIN IPLERI"){
exit();
}
[/code]
8 Apr 2020, 00:10
[code=php]
$country = geoip_country_name_by_name($_SERVER['REMOTE_ADDR']);
if ($country != "Azerbaijan" && $country != "Russian" && $_SERVER['REMOTE_ADDR']!="SERVERINIZIN IPLERI"){
exit();
}
[/code]
0
Əməliyyatlar
Mövzu adı "Lazimli (Kodlar)" olaraq dəyişdirildi!
Mövzu açarkən diqqətli olun!
8 Apr 2020, 00:06
Mövzu açarkən diqqətli olun!
0
Əməliyyatlar
Index.php
[code=php]
<?
if($user_input != "" && $user_input != "aranacak kelime"){
?>
<span style="font-size:18px;">arama sonucları: <span style="color:#01a4a6;">"<?=$user_input;?>"</span></span><br/><br/>
<?
if(count($found) == 0)
{?>
Sonuc bulunamadı
<?}
else{
foreach($found as $i => $v)
echo "<a href='".$index[$v][0]."'>".$index[$v][1]."</a><br/>";
}
}
else{?>
arama kutusuna deger girin.
<?}?>
[/code]
8 Apr 2020, 00:00
[code=php]
<?
if($user_input != "" && $user_input != "aranacak kelime"){
?>
<span style="font-size:18px;">arama sonucları: <span style="color:#01a4a6;">"<?=$user_input;?>"</span></span><br/><br/>
<?
if(count($found) == 0)
{?>
Sonuc bulunamadı
<?}
else{
foreach($found as $i => $v)
echo "<a href='".$index[$v][0]."'>".$index[$v][1]."</a><br/>";
}
}
else{?>
arama kutusuna deger girin.
<?}?>
[/code]
0
Əməliyyatlar
Sayt ici axtariw[code=php]
<?
function get_param($name, $type="post", $default = "")
{
$returnee = "";
if(isset($_POST[$name]) && (($type == "post") || ($type == "both")))
$returnee = $_POST[$name];
else if(isset($_GET[$name]) && (($type == "get") || ($type == "both")) )
$returnee = $_GET[$name];
else
$returnee = $default;
if (1 == get_magic_quotes_gpc())
$returnee = stripslashes($returnee);
return trim($returnee);
}
function get_dir($name){
$temp = array();
$cnt = 0;
if($dh = opendir($name)) {
while(($file = readdir($dh)) !== false){
if($cnt >= 2)
array_push($temp, $file);
$cnt++;
}
$cnt = 0;
closedir($dh);
}
return $temp;
}
function arama($text_arama, $dir="arama_docs/"){
$text_arama = explode(" ", $text_arama);
$files = get_dir($dir);
$buffer = array();
foreach($files as $i => $v)
if(is_file($dir.$v))
array_push($buffer, array($dir.$v, file_get_contents($dir.$v)));
$found = array();
foreach($buffer as $i => $v)
foreach($text_arama as $ti => $tv)
if(strpos($v[1], $tv) !== false && !in_array($v[0], $found))
array_push($found, $v[0]);
return $found;
}
$index = array();
$index["arama_docs/iletisim.txt"] = array("iletisim.php", "iletisim sayfası");
$index["arama_docs/urunler.txt"] = array("urunler.php", "urunler sayfası");
$index["arama_docs/hakkimizda.txt"] = array("hakkimizda.php", "hakkımızda sayfası");
$user_input = get_param("arama", "get");
if($user_input != "" && $user_input != "Type arama text here")
$found = arama($user_input);
?>
[/code]
8 Apr 2020, 00:00
<?
function get_param($name, $type="post", $default = "")
{
$returnee = "";
if(isset($_POST[$name]) && (($type == "post") || ($type == "both")))
$returnee = $_POST[$name];
else if(isset($_GET[$name]) && (($type == "get") || ($type == "both")) )
$returnee = $_GET[$name];
else
$returnee = $default;
if (1 == get_magic_quotes_gpc())
$returnee = stripslashes($returnee);
return trim($returnee);
}
function get_dir($name){
$temp = array();
$cnt = 0;
if($dh = opendir($name)) {
while(($file = readdir($dh)) !== false){
if($cnt >= 2)
array_push($temp, $file);
$cnt++;
}
$cnt = 0;
closedir($dh);
}
return $temp;
}
function arama($text_arama, $dir="arama_docs/"){
$text_arama = explode(" ", $text_arama);
$files = get_dir($dir);
$buffer = array();
foreach($files as $i => $v)
if(is_file($dir.$v))
array_push($buffer, array($dir.$v, file_get_contents($dir.$v)));
$found = array();
foreach($buffer as $i => $v)
foreach($text_arama as $ti => $tv)
if(strpos($v[1], $tv) !== false && !in_array($v[0], $found))
array_push($found, $v[0]);
return $found;
}
$index = array();
$index["arama_docs/iletisim.txt"] = array("iletisim.php", "iletisim sayfası");
$index["arama_docs/urunler.txt"] = array("urunler.php", "urunler sayfası");
$index["arama_docs/hakkimizda.txt"] = array("hakkimizda.php", "hakkımızda sayfası");
$user_input = get_param("arama", "get");
if($user_input != "" && $user_input != "Type arama text here")
$found = arama($user_input);
?>
[/code]
0
Bağışlayın, sizin üçün şərh yazmaq əlçatan deyil
Geriyə





