Clan System? Register Page?

Trying to be better
Joined
Aug 28, 2006
Messages
529
Reaction score
13
Hi ppl im not using IIS MANAGER im using Quick 'n Easy Web Server...
What have total suport for virtual directories and etc...
So my clan dont works ever error 57 i have the SQL.DLL working Clan.dll with my conections all the pages are configurated my hotuk have
*CLAN_SERVER 127.0.0.1 8080 127.0.0.1 8080 127.0.0.1 8080
*ENABLE_CLAN
and dont works =(((
And im using Frogg pt reg page and dont works too stay talking this account already registered but this account dont exists can someone send me a .asp register page?
Thanks in advance
 
Last edited:
Hi ppl im not using IIS MANAGER im using Quick 'n Easy Web Server...
What have total suport for virtual directories and etc...
So my clan dont works ever error 57 i have the SQL.DLL working Clan.dll with my conections all the pages are configurated my hotuk have
*CLAN_SERVER 127.0.0.1 8080 127.0.0.1 8080 127.0.0.1 8080
*ENABLE_CLAN
and dont works =(((
And im using Frogg pt reg page and dont works too stay talking this account already registered but this account dont exists can someone send me a .asp register page?
Thanks in advance
BUMP !!!!!!!!!!!!!!!
 
All clan issues = Stickied topics

Reg Page: Credits to

Code:
<!-- All credits to quantum fusion. [email protected]  By using this page, you agreed not to remove this tag-->
 <%
if request.querystring("reg")<> "" then
Set Conn = Server.CreateObject("ADODB.Connection")
DSNtest="DRIVER={SQL Server};SERVER=JULIO\SQLEXPRESS;UID=username;PWD=x.x.x;DATABASE=accountdb"
name=request.form("user")
pass=request.form("pass")
Conn.open DSNtest

'First check if account is registered before ?
strsql="select * from " & lcase(left(name,1)) & "GameUser WHERE [userid]='"&lcase(name)&"'"
Set rs = Conn.execute (StrSql)
found=""
Do until rs.EOF
found=rs("userid")
rs.movenext
loop
if lcase(found)=lcase(name) then
response.write "<script>alert('Essa acc ja existe use otra. Obrigado')</script>"
elseif len(pass)>6 then
response.write "<script>alert('Password tem que ter menos de 6 caracteres')</script>"
elseif instr(name,"'")=>1 or instr(pass,"'")=>1 then
response.write "<script>alert('No Sql injection allowed thank you ')</script>"
else
stringx="'username' ,'password','0','0','datereg','1/1/2030 12:00:00 AM ','30','0','0','0','0','0','0','0','0','0.0000','24/7/2006 12:00:00 AM','24/7/2007 12:00:00 AM','24/7/2006 12:00:00 AM','0','0','0','0','0','0','0','0','0','0'"
'stringx="INSERT INTO "& ucase(left(name,1)) & "GameUser"& " ([userid],[Passwd],[GameCode],[GPCode],[RegistDay],[DisuseDay],[UsePeriod],[inuse],[Grade],[EventChk],[SelectChk],[BlockChk],[SpecialChk],[ServerName],[Credit],[ECoin],[StartDay],[LastDay],[EditDay],[RNo],[DelChk],[SNo],[Channel],[BNum],[MXServer],[MXChar],[MXType],[MXLevel],[MXExp])     VALUES('username','password','0','0','1/1/1900 12:00:00 AM','1/1/2030 12:00:00 AM','30','0','0','0','0','0','0','0','0','0.00','24/7/2006 12:00:00 AM','24/7/2007 12:00:00 AM','24/7/2006 12:00:00 AM',0,'0','0','0','0','0','0',0,0,0);"
stringx="INSERT INTO "& ucase(left(name,1)) & "GameUser"& " ([userid],[Passwd],[GameCode],[GPCode],[RegistDay],[DisuseDay],[UsePeriod],[inuse],[Grade],[EventChk],[SelectChk],[BlockChk],[SpecialChk],[ServerName],[Credit],[ECoin],[StartDay],[LastDay],[EditDay],[RNo],[DelChk],[SNo],[Channel],[BNum],[MXServer],[MXChar],[MXType],[MXLevel],[MXExp])     VALUES('username','password','0','0',NULL,NULL,'30','0','0','0','0','0','0','0','0','0.00',NULL,NULL,NULL,0,'0','0','0','0','0','0',0,0,0)"
stringx=replace(stringx,"username",name)
stringx=replace(stringx,"password",pass)
conn.execute stringx
response.write "<script>alert('Aee! Mais um pro DPT!!!')</script>"
end if
conn.close
end if
%><body bgcolor="#000000" text="#CCFFCC"><table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" height="595">
<!-- All credits to quantum fusion. [email protected]!CCC -->
   <tr>
     <td width="100%" style="background-repeat: no-repeat; background-position:  center 50%; ; background-image:url('top.JPG')" background="top.JPG" height="243"> </td>
   </tr>
   <tr>
     <td width="100%" style="background-repeat: no-repeat; background-position:  center 50%; " height="214" background="mid.JPG" align="center" valign="top">
     <form method="POST" action="login.asp?reg=true">
       <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%" id="AutoNumber2">
         <tr>
           <td width="40%"> </td>
           <td width="1%"><b>Username:</b><input type="text" name="user" size="20" style="background-color: #808080" value="<%=request.form("user")%>"><p>
           <b>Password:</b><input type="password" name="pass" size="21" style="background-color: #808080"></p>
           <p align="left">
           <input type="submit" value="Register" name="B1" style="font-family: ver; font-size: 8pt; font-weight: bold; background-color: #808080"></p>
           </td>
<!-- All credits to quantum fusion. [email protected]! -->
           <td width="60%"> </td>
         </tr>
       </table>
       <p> </p>
     </form>
 </td>
   </tr>
   <tr>
     <td width="100%" height="138" background="bot.JPG" style="background-image: url('bot.JPG'); background-repeat: no-repeat; background-position: center">
     <p align="center"><u><b>Designed by:[email protected]</b></u></p>
     <p> </p>
     <p> </p>
     <p></td>
   </tr>
 </table>
<!-- All credits to quantum fusion. [email protected] -->
<!-- All credits to quantum fusion. [email protected] -->
 
Back