| Author | Message |
Dvdbil
2,096 posts |
#7047 2007-10-08 20:23 GMT |
|
adense, anasayfada belirttiğim şekilde yap. |
|
Dvdbil
2,096 posts |
#7048 2007-10-08 20:26 GMT |
Quote Amaç, # girişimin engellemek.. o yüzden çözüm değil o. Dolayısıyla fix kodu uygulamalısın. |
|
Kilandor
2 posts |
#7144 2007-10-10 11:50 GMT |
|
Should be the final Version, There was a problems with URL's where #bottom becomes broken. This will fix that, and there should be no other problems Hopefully. See the text file on my site to copy it correctly (it won't show right here). Code: Fix Solution by Kilandor - http://www.seditioforge.com/ Updated, Replace the whole function. (Easier to do it like this) Thanks to Orkan for Suggesting the eregi_replace Search for in system/functions.php function sed_cc Replace the function with this function sed_cc($text) { $text = eregi_replace('([0-9]+)', '\\1', $text); $text = str_replace( array('{', '<', '>' , '$', '\'', '"', '\\', '&', ' '), array('{', '<', '>', '$', ''', '"', '\', '&amp;', '&nbsp;'), $text); return($text); } You can see the fix working in action here. http://www.seditioforge.com/tutorials/core-hacks/security-fix---ascii-insertion-into-text-i63.html Fix Solution by Kilandor - http://www.seditioforge.com/ // Arkadaşlar tüm Seditio kullanıcılarının bu mesajda belirtildiği gibi yamayı tekrar uygulaması gerekmektedir. (Dvdbil) This post was edited by Dvdbil (2007-10-10 18:37 GMT, 272 Gün ago) |
|
alikoza
231 posts |
#7161 2007-10-10 22:42 GMT |
|
http://www.seditioforge.com/datas/users/1-seditio_ascii_vunerablity.txt bu adrestekilerle burda yayinlanan farkli seyler ama ...niye???
|
|
emremix
437 posts |
#7162 2007-10-10 22:47 GMT |
|
Dvdbil kilandorun verdiğin son yama tamamen fix mi ? sorun çıkarır mı ?
|
|
Dvdbil
2,096 posts |
#7164 2007-10-10 22:54 GMT |
|
Sorun saptamadım, hatasız çalışmakta.
|
|
alikoza
231 posts |
#7165 2007-10-10 23:23 GMT |
|
simdi kardes hangi adrestekini yapalim???
http://www.seditioforge.com/datas/users/1-seditio_ascii_vunerablity.txt bu adrestekilerimi yoksa yukaridakilerimi??? Dvdbil bi cevap verirsen aydinlatmis olursun bizleri... |
|
Kaan
1,926 posts |
#7167 2007-10-11 00:00 GMT |
|
Buradaki kodlar hatalı hata veriyor.
Bu linkdekiler dogru çalışıyor. http://www.seditioforge.com/tutorials/core-hacks/security-fix---ascii-insertion-into-text-i63.html Quote |
|
Dvdbil
2,096 posts |
#7168 2007-10-11 00:01 GMT |
adense
51 posts |
#7200 2007-10-11 23:44 GMT |
|
Code: function sed_cc($text) { $text = eregi_replace('([0-9]+)', '\\1', $text); $text = str_replace( array('{', '<', '>' , '$', '\'', '"', '\\', '&', ' '), array('{', '<', '>', '$', ''', '"', '\', '&amp;', '&nbsp;'), $text); return($text); } yukarıdaki kodu uyguladığımda Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /usr/hosts/domains/siteadı/www.siteadı.com/httpdocs/system/functions.php on line 1275 bu hatayı alıyorum |
|
Dvdbil
2,096 posts |
#7208 2007-10-12 04:03 GMT |
|
Kaan'ın son yazdığını uygulayın.
Karma karışık oldu bu iş |
|
emremix
437 posts |
#7235 2007-10-12 21:37 GMT |
|
bu yamada bug var
Code: ' karakteri arıza veriyo istersen kaana sor |
|
Kripteks
439 posts |
#7237 2007-10-12 21:52 GMT |
|
Internetim kapandi, izin'lerden sonra actiracam insallah!
|
|
BaTu
99 posts |
#7248 2007-10-13 20:15 GMT |
|
system/functions.php nin nresine yapistiricaz bu kodlari :S :
[f]Fix Solution by Kilandor - http://www.seditioforge.com/ Updated, Replace the whole function. (Easier to do it like this) Thanks to Orkan for Suggesting the eregi_replace Search for in system/functions.php function sed_cc Replace the function with this function sed_cc($text) { $text = eregi_replace('([0-9]+)', '\\1', $text); $text = str_replace( array('{', '<', '>' , '$', '\'', '"', '\\', '&', ' '), array('{', '<', '>', '$', ''', '"', '\', '&amp;', '&nbsp;'), $text); return($text); } You can see the fix working in action here. http://www.seditioforge.com/tutorials/core-hacks/security-fix---ascii-insertion-into-text-i63.html Fix Solution by Kilandor - http://www.seditioforge.com/ [/f] |
|
|
Turkce Karakterlerim oLmadigi icin uzgunum :S
|
|
Kaan
1,926 posts |
#7439 2007-10-18 23:39 GMT |
|
En Son Fix Yayınlandı Süper Olmuş ama Ben Test etmedim
Buyrun http://www.seditioforge.com/tutorials/core-hacks/pcre-for-bbcodes-i66.html |
|
Kaan
1,926 posts |
#7632 2007-10-31 02:36 GMT |
|
Ldu İçin Kodları Ekleyin %100 test edilmiştir.
Code: function ldu_cc($text) { $text = eregi_replace('([0-9]+)', '&#\\1', $text); $text = str_replace( array('{', '<', '>' , '$', '\'', '"', '\\', '&', ' '), array('{', '<', '>', '$', ''', '"', '\', '&amp;', '&nbsp;'), $text); return($text); } Seditio için ise bunları Ekleyin..%100 test edilmiştir. Code: function sed_cc($text)
{ $text = eregi_replace('([0-9]+)', '&#\\1', $text); $text = str_replace( array('{', '<', '>' , '$', '\'', '"', '\\', '&', ' '), array('{', '<', '>', '$', ''', '"', '\', '&amp;', '&nbsp;'), $text); return($text); } |
|
Sender
334 posts |
#7639 2007-10-31 16:02 GMT |
|
kaan function ldu_cc($text) bunu bulup senin ldu için verdiğinle değişitirdim ama hata verdi?
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in |
|
Kaan
1,926 posts |
#7642 2007-10-31 16:45 GMT |
|
Bende hata vermedi uyguladım kendi siteme aynısını ama karakter sorunu oluşturdugu için kaldırdım
2 sinide test ettim Sorun yoktu bir yanlışlık yapmış olabilirsin.. |
|
Sender
334 posts |
#7644 2007-10-31 17:10 GMT |
|
functions'da nereye koydun sen? |
|
Sender
334 posts |
#7645 2007-10-31 17:10 GMT |
|
functions'da nereye koydun sen?
|
|
Benzer konular (Similar topics) #BETA
| Konular | Mesajlar | Son Yazar | Güncelleme |
| Ya Lütfen Yardım Bbcode Açığı Yaması Tr Karakter Sorunu | 17 | teamkral | 112 Gün |
| sed122 bbcode alt forum bbcode | 2 | keahya | 254 Gün |
| bbcode yardım! | 8 | serkan | 273 Gün |
| Youtube BBCode | 16 | Bi0systeM | 63 Gün |
| Cookies mi BBCode mu? | 3 | Sender | 250 Gün |


Next page






