IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası

IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası (https://www.ircforumlari.net/)
-   mIRC Scripting Sorunları (https://www.ircforumlari.net/mirc-scripting-sorunlari/)
-   -   Rast geLe fullname Ve identler'e gzLine (https://www.ircforumlari.net/mirc-scripting-sorunlari/125093-rast-gele-fullname-ve-identlere-gzline.html)

Toprak 08 Mart 2017 19:10

Cevap: Rast geLe fullname Ve identler'e gzLine
 
who +I $9
Unutmussun

Kod:

on *:snotice:*Client*connecting*:who +I $9

elhale 08 Mart 2017 19:37

Cevap: Rast geLe fullname Ve identler'e gzLine
 
Alıntı:

Toprak Nickli Üyeden Alıntı (Mesaj 1041847092)
who +I $9
Unutmussun

Kod:

on *:snotice:*Client*connecting*:who +I $9

;Connect
on *:snotice:*Client connecting on port*:{
who +I $9
}
;Hub connect
on *:snotice:*Client connecting at*:{
who +I $8
}

Bu şekilde yapıyorum ama normal kullanıcılar için yanıt alıyorum

Kod:

* Taksi H Mibbit@188.29.165.45 (Great Britain) :1
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
kill Taksi sebep


Sadece bunun için istiyorum


Djrina!jzpzv@106.46.136.172:yiha

Vindar!qzdun@58.23.181.42:adoyo

Nedin!oxlmx@179.91.62.130:gxeqc

Premt!nymi@211.143.22.11:trf

Mirdrit!xzue@119.40.106.136:mlt

Blega!olah@60.0.79.215:viyr

HacKBo[]Y]]]!brmgh@119.40.106.147:zgyj

Butar!qikm@125.94.0.254:ninje

Lucinda!oij@122.189.26.92:fklz

IrCbaStarD 08 Mart 2017 20:27

Cevap: Rast geLe fullname Ve identler'e gzLine
 
spamfilter add u block - Banned. (?-i).+![a-z]{3,5}@.+:[a-z]{3,5}$

Block yerine farkli ceza şekilleri yazabilirsiniz.

elhale 09 Mart 2017 00:08

Cevap: Rast geLe fullname Ve identler'e gzLine
 
Alıntı:

IrCbaStarD Nickli Üyeden Alıntı (Mesaj 1041847121)
spamfilter add u block - Banned. (?-i).+![a-z]{3,5}@.+:[a-z]{3,5}$

Block yerine farkli ceza şekilleri yazabilirsiniz.

Spam ile denedim ancak bundan sonra saldırgan nick identini ve tam adını değiştiriyor. Bu yüzden bir addon yapmak istiyorum.

Kod:

on *:snotice:*Client*connecting*:
raw 352:*:{ if $regex($3,/^([a-z]{3,5})$/) && $regex($9-,/^[a-z]{3,5}$/S) { echo -ast gline $+(*@,$4) - 5Proxy - }
}

@[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] Regex efendisi belki yardımcı olabilir. :P

IRC-Dancer 09 Mart 2017 00:23

Cevap: Rast geLe fullname Ve identler'e gzLine
 
Kod:

(?-i)^(.+![a-z]{3,4}@.+:([bcdfghjklmnprstvyz]){3,4})$
Bu şekilde işini görür. @[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
Alıntı:

[Spamfilter] WaqranT!rmtk@.* matches filter '(?-i)^(.+![a-z]{3,4}@.+:([bcdfghjklmnprstvyz]){3,4})$': [NICK: 'WaqranT!rmtk@.*:fjkf'] [X]

elhale 09 Mart 2017 00:39

Cevap: Rast geLe fullname Ve identler'e gzLine
 
@[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] Spam için çalıştığını biliyorum. Ama bir eklenti olarak istiyorum. spam değil.

Bunun nedeni, saldırganın eskiden personel olması ve casusları bilmesi, böylece içeri girmemesi veya çabucak yakalanması durumunda verileri (nick, ident, fullname) değiştireceğidir.

Onları normal bir kullanıcı yapacak, bu yüzden onun girmesini ancak addon tarafından yakalanmasını istiyorum.

IRC-Dancer 09 Mart 2017 01:02

Cevap: Rast geLe fullname Ve identler'e gzLine
 
ozaman su sekil yap spamı eklerken , U block değilde , u temshun olarak ekle , sunucuya gırerler ama ıslem yapamazlar. Sende en azından bu konunun detayını ogrenesıye kadar , kanallara saldırı yansımamıs olur.
Kod 'a gelince Who +I eklediğinde çalışması lazım.

CoCoRiCo 10 Mart 2017 09:12

Cevap: Rast geLe fullname Ve identler'e gzLine
 
@[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
The values in this code are set for the Turkish words to be sleeker.
normally; The vowel in English (ie: aiou etc.) is different from the quiet letter (bcdg etc.) ratio. It requires an adjustment accordingly. This is 73% in one word for Turkish.


Kod:

  var %t = $remove($1,1,2,3,4,5,6,7,8,9,0,\,`,^,|,-,_), %s+ $regex(%t,/([aeoöuüıiI])/gi),%s- $regex(%t,/([^aeoöuüıiI])/gi)
Some characters not found in the sample english should be removed
Kod:

  var %t = $remove($1,1,2,3,4,5,6,7,8,9,0,\,`,^,|,-,_), %s+ $regex(%t,/([aeouıi])/gi),%s- $regex(%t,/([^aeouıi])/gi)

elhale 10 Mart 2017 17:58

Cevap: Rast geLe fullname Ve identler'e gzLine
 
Alıntı:

CoCoRiCo Nickli Üyeden Alıntı (Mesaj 1041847325)
@[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
The values in this code are set for the Turkish words to be sleeker.
normally; The vowel in English (ie: aiou etc.) is different from the quiet letter (bcdg etc.) ratio. It requires an adjustment accordingly. This is 73% in one word for Turkish.


Kod:

  var %t = $remove($1,1,2,3,4,5,6,7,8,9,0,\,`,^,|,-,_), %s+ $regex(%t,/([aeoöuüıiI])/gi),%s- $regex(%t,/([^aeoöuüıiI])/gi)
Some characters not found in the sample english should be removed
Kod:

  var %t = $remove($1,1,2,3,4,5,6,7,8,9,0,\,`,^,|,-,_), %s+ $regex(%t,/([aeouıi])/gi),%s- $regex(%t,/([^aeouıi])/gi)

@[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] the spamfilter works. For example the one posted from @[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]

Kod:

(?-i).+![a-z]{3,5}@.+:[a-z]{3,5}$
I wanted it as an addon. The reason is that if the attacker gets blocked by spam it is done very fast. So the attacker understand that it is beeing blocked by spam and changes the data (nick, ident, fullname).

If he connects, but gets blocked by an addon, then he knows the proxy-s are working but they just cant pass through because someone has a scanner or smth. So he tries but doesn't change the random nick, ident or fullname...

However I got it working by trial and error (with echo command)

working code for me:

Kod:

;Connect
on *:snotice:*Client connecting on port*:{
who +I $9
}
;Hub connect
on *:snotice:*Client connecting at*:{
who +I $8
}

and
Kod:

on *:snotice:*Client*connecting*:
raw 352:*:{ if ($regex($3,/^([a-z]{3,5})$/) && $regex($9,/^([a-z]{3,5})$/)) { echo -ast gline $+(*@,$4) - 5Proxy/Clones }
}

* Dazem H iotzk@192.129.219.28 (United States) :1 xja
[03:11:24pm] gline *@192.129.219.28 - Proxy/Clones

* Borim H dav@192.129.244.188 (United States) :1 zvm
[03:11:23pm] gline *@192.129.244.188 - Proxy/Clones

* Bezim H foi@150.107.105.98 :2 ndmc
[03:11:22pm] gline *@150.107.105.98 - Proxy/Clones

* Artir H fcg@49.140.208.14 (China) :1 hbx
[03:11:19pm] gline *@49.140.208.14 - Proxy/Clones

* Hyeshi H cqjk@192.129.204.73 (United States) :1 tydb
[03:11:16pm] gline *@192.129.204.73 - Proxy/Clones

* Valmore H fbh@36.81.45.169 (Indonesia) :1 hnla
[03:11:10pm] gline *@36.81.45.169 - Proxy/Clones

I used google translate for my Turkish on the posts above ;s6 I think people here think i'm crazy or smth but I love this forum... I've learned a lot here. :)

Feragat 10 Mart 2017 21:58

Cevap: Rast geLe fullname Ve identler'e gzLine
 
Alıntı:

elhale Nickli Üyeden Alıntı (Mesaj 1041847428)

I used google translate for my Turkish on the posts above ;s6 I think people here think i'm crazy or smth but I love this forum... I've learned a lot here. :)

@[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] is an old man but so energetic ;olley also regex does not always suffice a clever code that is sometimes needed.

Good luck


Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 17:50.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO
Copyright ©2004 - 2025 IRCForumlari.Net Sparhawk