Statistik: Verfasst Author: VEGETA — 25.04.2004, 19:48
Statistik: Verfasst Author: WiZaRd — 25.04.2004, 19:47
Oder zieh mal ne exe durch einen Assembler
Da t?uscht du dich - das sieht ja im Prinzip noch viel schlimmer aus - ?ffne mal eine .exe mit nem HexEditor, dann verstehst, was ich meine
Statistik: Verfasst Author: VEGETA — 25.04.2004, 19:45
Statistik: Verfasst Author: WiZaRd — 25.04.2004, 19:22
- Code: Alles auswählen
if (StrStrI(m_clientModString, "emule-client")||
StrStrI(m_clientModString, "Powermule")||
Ban();
CString strBuffer = m_pszUsername;
strBuffer.MakeUpper();
strBuffer.Remove(' ');
//Ban unwanted, PowerMule, eMule-Client
if (strBuffer.Find("POWERMULE") != -1){
if(!this->IsBanned()){
AddWiZaRdLogLine(false, "Client (%s) benutzt PowerMule -> banned!",m_pszUsername);
this->Ban();
}
}
if (strBuffer.Find("EMULE-CLIENT") != -1){
if(!this->IsBanned()){
AddWiZaRdLogLine(false, "Client (%s) benutzt eine eMule-Client.de-Version -> banned!",m_pszUsername);
this->Ban();
}
}
Statistik: Verfasst Author: Kriegsheld — 25.04.2004, 19:13
Statistik: Verfasst Author: WiZaRd — 25.04.2004, 15:45
Statistik: Verfasst Author: VEGETA — 25.04.2004, 15:43
- Code: Alles auswählen
if (StrStrI(m_clientModString, "emule-client")||
StrStrI(m_clientModString, "Powermule")||
Ban();
CString strBuffer = m_pszUsername;
strBuffer.MakeUpper();
strBuffer.Remove(' ');
//Ban unwanted, PowerMule, eMule-Client
if (strBuffer.Find("POWERMULE") != -1){
if(!this->IsBanned()){
AddWiZaRdLogLine(false, "Client (%s) benutzt PowerMule -> banned!",m_pszUsername);
this->Ban();
}
}
if (strBuffer.Find("EMULE-CLIENT") != -1){
if(!this->IsBanned()){
AddWiZaRdLogLine(false, "Client (%s) benutzt eine eMule-Client.de-Version -> banned!",m_pszUsername);
this->Ban();
}
}
Statistik: Verfasst Author: WiZaRd — 25.04.2004, 15:39
- Code: Alles auswählen
if (StrStrI(m_clientModString, "emule-client")||
StrStrI(m_clientModString, "Powermule")||
Ban();
theApp.ipfilter->AddBannedIP(m_dwUserIP,"LeecherMod");
theApp.emuledlg->AddDebugLogLine(true, "Leecher Mod -> detected [by ModString]-> username '%s', Version String %s, ip %i.%i.%i.%i:%i", m_pszUsername, m_clientVerString, (uint8)m_dwUserIP, (uint8)(m_dwUserIP>>8),(uint8)(m_dwUserIP>>16),(uint8)(m_dwUserIP>>24), GetUserPort());
return true;
Statistik: Verfasst Author: VEGETA — 25.04.2004, 15:34
// We want to educate Users of major comercial GPL breaking mods by telling them about the effects
// check for known advertising in usernames
// the primary aim is not to technical block those but to make users use a GPL-conform version
Statistik: Verfasst Author: WiZaRd — 25.04.2004, 15:12