Wbb-ct-security

bLoOdLusT1912

Kadim Üye
1 Ağu 2007
5,470
41
wBB-CT-Security 2.3.4 de denenmistir digerlerindede calismaktadir
kurmadan once dosyalarin yedeklerini aliniz.

global.php aciyoruz acp'deki deyil

bunu ariyoruz
Kod:
<?php


altina bunu ekliyoruz

Kod:
include "ct_ctracker.php";
Kod:
[COLOR=white]include "ct_blocker.php";[/COLOR]
[COLOR=white]$countername = "./ctracker.txt";[/COLOR]
[COLOR=white]$count_value1 = @file_get_contents($countername);[/COLOR]
[COLOR=white]$counternameipbot = "./ctrackeripbot.txt";[/COLOR]
[COLOR=white]$count_valueipbot1 = @file_get_contents($counternameipbot);[/COLOR]
[COLOR=white]$counternamespy = "./ctrackerspy.txt";[/COLOR]
[COLOR=white]$count_valuespy = @file_get_contents($counternamespy);[/COLOR]

asadaki dosyalara CHMODE 777 veriyoruz:

Kod:
ctracker.log
Kod:
[COLOR=white]ctracker.txt[/COLOR]
[COLOR=white]ctrackerspy.txt[/COLOR]
[COLOR=white]ctrackeripbot.txt[/COLOR]
[COLOR=white]ctrackeripbot.log[/COLOR]
[COLOR=white]acp/ctracker.log[/COLOR]
[COLOR=white]acp/ctracker.txt[/COLOR]
[COLOR=white]acp/ctrackeripbot.txt[/COLOR]
[COLOR=white]acp/ctrackeripbot.log[/COLOR]
[COLOR=white]acp/lib/ct_options.inc.php[/COLOR]
[COLOR=white]acp/lib/ct_options_acp.inc.php[/COLOR]
 
[COLOR=white]acp/image_data  dosya kendisine veriyouz 777 chmod[/COLOR]
[COLOR=white]acp/image_data/.htaccess[/COLOR]
[COLOR=white]acp/image_data/eeea7b663bc7145a7d4f7f18409c4dfa[/COLOR]
[COLOR=white]acp/image_data/elephant.ttf[/COLOR]


Acp Deki Kullandıgınız Styler Footer.tpl Ara
Kod:
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" class="tableinborder" align="center">
Kod:
[COLOR=white]<tr>[/COLOR]
[COLOR=white] <td class="tablea"><span class="smallfont"><a href="http://www.woltlab.de" target="_blank" style="text-decoration: none">{$lang->items['LANG_GLOBAL_COPYRIGHT']}</a></span></td>[/COLOR]
[COLOR=white]</tr>[/COLOR]
[COLOR=white]</table><br />[/COLOR]


Hemen Üstüne Ekle
Kod:
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" class="tableinborder" align="center">
Kod:
[COLOR=white]<tr>[/COLOR]
[COLOR=white] <td class="tablea" align="center"><span class="smallfont"><b>Geblockte Angriffe:</b> $count_value1 <b>| prof. Blocks:</b> $count_valueipbot1 <b>| Spy-/Malware:</b> $count_valuespy<br />CT Security System v3.0.4: © 2006 <a href="http://www.radiosunlight.de" target="_blank">Bandy</a> & <a href="http://www.cback.de" target="_blank">cback.de</a></span></td>[/COLOR]
[COLOR=white]</tr>[/COLOR]
[COLOR=white]</table><br />[/COLOR]


acp'den Templates düzenle giriyoruz butun style'deki index.tpl

bunu ara

Kod:
<head>

altina bunu ekle
Kod:
<if($spyblock==true)><then>
Kod:
[COLOR=white]<div style="display: block; padding: 4px; border-bottom: 1px solid #000000; background-color: #FFFFE1; color: #0a0a0a; text-align: left;"><span class="smallfont"><b>Wir informieren Sie darüber das sich auf Ihrem PC sehr wahrscheinlich Spy- bzw Malware befindet. Wir empfehlen Ihnen Ihr PC mit AntiSpyWare - Tools zu überprüfen. (z.B. mit: <a href="http://www.safer-networking.org/de/download/index.html" target="_blank">Spybot & Destroy</a>)<br />CT Security System</span></div>[/COLOR]
[COLOR=white]</then></if>[/COLOR]


Kayit ediyoruz

acp/global.php aciyoruz

bunu ariyoruz:

Kod:
<?php

altina bunu ekliyoruz
Kod:
include "ct_ctracker.php";
Kod:
[COLOR=white]include "ct_blocker.php";[/COLOR]
[COLOR=white]$countername = "./ctracker.txt";[/COLOR]
[COLOR=white]$count_value1 = @file_get_contents($countername);[/COLOR]
[COLOR=white]$counternameipbot = "./ctrackeripbot.txt";[/COLOR]
[COLOR=white]$count_valueipbot1 = @file_get_contents($counternameipbot);[/COLOR]

Kayit.

acp/templates/welcome.htm acin

bunu ara:

Kod:
<tr class="firstrow">
Kod:
[COLOR=white] <td width="25%"><b>{$lang->items['LANG_ACP_WELCOME_BOARDVERSION']}</b></td>[/COLOR]
[COLOR=white] <td>$boardversion</td>[/COLOR]
[COLOR=white]</tr>[/COLOR]


üstune bunu ekle
Kod:
<tr class="secondrow">[/COLOR]
[COLOR=white]<td width="25%"><b>Info:</b></td>[/COLOR]
[COLOR=white]<td>CT Security System <b>3.0.4</b> © 2006 <a href="http://www.radiosunlight.de" target="_blank">Frank John</a> & <a href="http://www.cback.de" target="_blank">cback.de</a></b></td>[/COLOR]
[COLOR=white]</tr>[/COLOR]
[COLOR=white]<tr class="secondrow">[/COLOR]
[COLOR=white]<td width="25%"><b>Block Info:</b></td>[/COLOR]
[COLOR=white]<td>mySQL ACP (ct_tracker):<b> $count_value1</b> und prof. Blocks (ct_blocker): <b> $count_valueipbot1</b></td>[/COLOR]
[COLOR=white]</tr>


Kayit

acp korumasi

Lade die Datei acp/login.php und öffne diese.

SUCHE nach:

Kod:
if (isset($result) && $result['userid'] && $result['a_can_use_acp'] == 1) {
Kod:
[COLOR=white]ERSETZE mit:[/COLOR]
 
[COLOR=white]   include "ct_image.php";[/COLOR]
[COLOR=white]   $img = new securimage();[/COLOR]
[COLOR=white]   $valid = $img->check($_POST['imagetext']);[/COLOR]
[COLOR=white]if (isset($result) && $result['userid'] && $result['a_can_use_acp'] == 1 && $_POST['imagetext'] == $valid && $_POST['imagetext'] !='') {[/COLOR]


Kayit.
---------------------------------------------------------------------------
------


acp/templates/login.htm acin

bunu ara


Kod:
<tr>
Kod:
[COLOR=white]    <td><b>{$lang->items['LANG_ACP_GLOBAL_LOGIN_PASSWORD']}</b></td>[/COLOR]
 
[COLOR=white]    <td><input type="password" name="l_password" maxlength="50" /></td>[/COLOR]
 
[COLOR=white]   </tr>[/COLOR]
altina bunu ekle
Kod:
<tr>
Kod:
[COLOR=white]   <td><img src="ct_image_zeigen.php" border="0" alt="Sicherheitscode" title="Sicherheitscode" /></td>[/COLOR]
[COLOR=white] </tr>[/COLOR]
[COLOR=white] <tr>[/COLOR]
[COLOR=white]   <td class="body" align="left">Sicherheitscode eingeben</td>[/COLOR]
[COLOR=white]   <td class="body" align="center"><input type="text" name="imagetext" /></td>[/COLOR]
[COLOR=white] </tr>[/COLOR]

Kayit.
---------------------------------------------------------------------------
--------


Geht nun zu:

ACP - Seçenekler - Sansur kelimeler ve Ban ayarlari - Kullanilan Email Adresleri:

bunu ekliyin

*@4g54asd5.org

Kayit.


---------------------------------------------------------------------------
--------


http://www.sizinsite.com/wbb2/acp/ct_setup.php yapiyoruz arkadaslar setup yapicaz korumanin

setup'dan sonra bunlari siliyoruz acp/ct_setup.php und acp/ct_security_setup.wbb


---------------------------------------------------------------------------
--------


ACP Templates Cahce yapicaz http://www.sizinsite.com/wbb2/acp/acp_tpl.php

bu acp_tpl.php dosyasi wbb2 indirdin extras dosyanin icinde

---------------------------------------------------------------------------
---------

ACP - Üye Grubu düzenle - Administrator - Aktionen: Administrator Haklari

en asada korumanin secenekleri olcak evet yapicaz onlari . Kayit.


Kod:
Öffentlicher Schutz (1 = An | 2 = Aus)
Kod:
[COLOR=white]UserAgent   : 1[/COLOR]
[COLOR=white]Referer     : 1[/COLOR]
[COLOR=white]Spy-/Malware: 1[/COLOR]
[COLOR=white]Host        : 1[/COLOR]
[COLOR=white]IP          : 1[/COLOR]
[COLOR=white]Deutsche Info anzeige         : 0[/COLOR]
[COLOR=white]Englische Info anzeige        : 0[/COLOR]
[COLOR=white]Deutsch/Englische Info anzeige: 1[/COLOR]
[COLOR=white]Eigene eMail Empfängeradresse : sizin kullandiniz mail[/COLOR]
[COLOR=white]Eigene eMail Absenderadresse  : sizin kullandiniz mail[/COLOR]
[COLOR=white]Anzahl der Logs: 100[/COLOR]
 
[COLOR=white]Bei der Info NUR eine der 3 Möglichkeiten auf 1 setzen.[/COLOR]
 
 
[COLOR=white]ACP Schutz (1 = An | 2 = Aus)[/COLOR]
 
[COLOR=white]UserAgent   : 1[/COLOR]
[COLOR=white]Referer     : 1[/COLOR]
[COLOR=white]Spy-/Malware: 0[/COLOR]
[COLOR=white]Host        : 1[/COLOR]
[COLOR=white]IP          : 1[/COLOR]
[COLOR=white]Deutsche Info anzeige         : 0[/COLOR]
[COLOR=white]Englische Info anzeige        : 0[/COLOR]
[COLOR=white]Deutsch/Englische Info anzeige: 1[/COLOR]
[COLOR=white]Eigene eMail Empfängeradresse : sizin kullandiniz mail[/COLOR]
[COLOR=white]Eigene eMail Absenderadresse  : sizin kullandiniz mail[/COLOR]
[COLOR=white]Anzahl der Logs: 100[/COLOR]


ve Kayit bitti


acp/lib/class_wiw.php ac

bunu ara
Kod:
   case "login.php":
Kod:
[COLOR=white]                       $******** = $lang->get("LANG_WIW_FILE_LOGIN");[/COLOR]
[COLOR=white]                       break;[/COLOR]


altina bunu ekle
Kod:
 case "ct_blocker.php":
Kod:
[COLOR=white]                       $******** = $lang->get("LANG_WIW_FILE_CT_BLOCKER");[/COLOR]
[COLOR=white]                       break;[/COLOR]
 
[COLOR=white]                   case "ct_tracker.php":[/COLOR]
[COLOR=white]                       $******** = $lang->get("LANG_WIW_FILE_CT_TRACKER");[/COLOR]
[COLOR=white]                       break;[/COLOR]


Kayit

BITTi ....!



ct_blocker.php ve acp/ct_blocker.php icinde sizin kullandiniz ülkenin ipsi olcak yani mesala ".at", acp'ye girmek icin //".at",aynen böle olcak

Almanyadakiler//".de",yada //".net",//".ne", olacak

Türkiydekiler //".net",//".com", ve //".tr",

bunlari yapmadan giremezsiniz
 
Üst

Turkhackteam.org internet sitesi 5651 sayılı kanun’un 2. maddesinin 1. fıkrasının m) bendi ile aynı kanunun 5. maddesi kapsamında "Yer Sağlayıcı" konumundadır. İçerikler ön onay olmaksızın tamamen kullanıcılar tarafından oluşturulmaktadır. Turkhackteam.org; Yer sağlayıcı olarak, kullanıcılar tarafından oluşturulan içeriği ya da hukuka aykırı paylaşımı kontrol etmekle ya da araştırmakla yükümlü değildir. Türkhackteam saldırı timleri Türk sitelerine hiçbir zararlı faaliyette bulunmaz. Türkhackteam üyelerinin yaptığı bireysel hack faaliyetlerinden Türkhackteam sorumlu değildir. Sitelerinize Türkhackteam ismi kullanılarak hack faaliyetinde bulunulursa, site-sunucu erişim loglarından bu faaliyeti gerçekleştiren ip adresini tespit edip diğer kanıtlarla birlikte savcılığa suç duyurusunda bulununuz.