lookjapan.COM - IRC ve mIRC dünyasının forumu!

lookjapan.COM - IRC ve mIRC dünyasının forumu! (http://www.lookjapan.com/index.php)
-   Unreal - Parça Kodlar (http://www.lookjapan.com/forumdisplay.php?f=62)
-   -   Whois bilgilerinden IP adresini gizleme (http://www.lookjapan.com/showthread.php?t=1622)

Entrance 24 Temmuz 2015 11:18

Whois bilgilerinden IP adresini gizleme
 
Merhabalar,

Eklentinin amacı WHOIS bilgilerinden IP adresini network admin harici rütbelere gizlemek.

Klasör: -> Unreal3.2*/src/modules/
Dosya: -> (m_whois.c)

BULUN,
Kod:

if ((acptr == sptr) || IsAnOper(sptr))
{
sendto_one(sptr, rpl_str(RPL_WHOISHOST),
me.name, parv[0], acptr->name,
(MyConnect(acptr) && strcmp(acptr->username, "unknown")) ? acptr->username : "*",
user->realhost, user->ip_str ? user->ip_str : "");
}

DEGISTIRIN,
Kod:

if ((acptr == sptr) || IsNetAdmin(sptr))
{
sendto_one(sptr, rpl_str(RPL_WHOISHOST),
me.name, parv[0], acptr->name,
(MyConnect(acptr) && strcmp(acptr->username, "unknown")) ? acptr->username : "*",
user->realhost, user->ip_str ? user->ip_str : "");
}

Klasör: -> Unreal3.2*/src/modules/
Dosya: -> (webtv.c)

BULUN,
Kod:

if ((IsAnOper(sptr) && IsHidden(acptr)) || (acptr == sptr && IsHidden(sptr)))
{
sendto_one(sptr, ":IRC PRIVMSG %s :%s is connecting from %s",
sptr->name, acptr->name,
acptr->user->realhost);
}

DEGISTIRIN,
Kod:

if ((IsNetAdmin(sptr) && IsHidden(acptr)) || (acptr == sptr && IsHidden(sptr)))
{
sendto_one(sptr, ":IRC PRIVMSG %s :%s is connecting from %s",
sptr->name, acptr->name,
acptr->user->realhost);
}


UnrealIRCd
'in ana dizininde make ve ./unreal rehash komutlarını uygulayın.

İyi forumlar .. ^^


All times are GMT +3. The time now is 18:57.

Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.