Thnx nice men
Printable View
Thnx nice men
It'll work, but meh, I could do with a cracked SWF. :(:
i need a Client and SWF-.-
I developed that, maby any creds?Quote:
- SSO Ticket login (This uses ip auth)
Code:using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using Thunder.Inputs;
namespace Thunder.Engine.Network.Web
{
class WebCSession : Socket
{
#region Constants
public const int REGULAR_BUFFER_LENGTH = 512;
#endregion
#region Fields
private byte[] Buffer = new byte[REGULAR_BUFFER_LENGTH];
private AsyncCallback SyncReceive;
private AsyncCallback SyncSend;
#endregion
#region Constructors
public WebCSession(SocketInformation Information)
: base(Information)
{
this.SyncReceive = new AsyncCallback(OnReceive);
this.SyncSend = new AsyncCallback(OnSend);
DoReceive();
}
#endregion
#region Traffic
private void DoReceive()
{
try
{
base.BeginReceive(Buffer, 0, REGULAR_BUFFER_LENGTH, SocketFlags.None, SyncReceive, GetBase());
}
catch { DoExit(); }
}
public void DoSend(byte[] Bytes)
{
try
{
base.BeginSend(Bytes, 0, Bytes.Length, SocketFlags.None, SyncSend, GetBase());
}
catch { DoExit(); }
}
private void OnReceive(IAsyncResult Result)
{
try
{
int Length = base.EndReceive(Result);
if (Length > 0)
{
byte[] WeakBuffer = new byte[Length];
Array.Copy(Buffer, WeakBuffer, Length);
try
{
using (var ECEAdapter = new ECEAdapter(Encoding.Default.GetString(WeakBuffer)))
{
if (!ECEAdapter.Decode().StartsWith("#"))
{
DoExit();
}
var Clean = ECEAdapter.Decode().Substring(1);
var IP = Clean.Split('^')[0];
var SSO = Clean.Substring(IP.Length + 1);
if (IP == "::1" || IP == "127.0.0.1")
{
IP = SettingsHandler.GetValue("Network.WEB.BindIP");
}
Console.WriteLine(IP + ">" + SSO);
if (!ThunderRoot.IPSSOs.ContainsKey(IP))
{
ThunderRoot.IPSSOs.Add(IP, SSO);
}
else
{
ThunderRoot.IPSSOs[IP] = SSO;
}
}
}
catch (Exception)
{
Interface.WriteLine("Failed to encrypt: {0}", WriteType.Error, Encoding.Default.GetString(WeakBuffer));
}
}
}
catch { DoExit(); }
finally { DoExit(); }
}
private void OnSend(IAsyncResult Result)
{
try
{
int Length = base.EndSend(Result);
if (Length <= 0)
{
DoExit();
}
}
catch { DoExit(); }
}
#endregion
#region Methods
public void DoExit()
{
Array.Clear(Buffer, 0, REGULAR_BUFFER_LENGTH);
try
{
base.Shutdown(SocketShutdown.Both);
base.Dispose();
SyncReceive = null;
SyncSend = null;
}
catch { }
GC.SuppressFinalize(this);
}
public Socket GetBase()
{
return this as Socket;
}
#endregion
}
}
Erm, shit.
Ran once, and now it's not opening. :(:
http://i.imgur.com/8eaxP.png
Maybe someone Can make a tut How To Make it?
meh..Quote:
mar 04, 2012 4:45:54 PM neutrino.Network.ServerHandler exceptionCaught
WARNING: Unexpected exception from downstream.
java.lang.NullPointerException
at neutrino.Network.ServerHandler.ReadMessage(ServerHandler.java:159)
at neutrino.Network.ServerHandler.messageReceived(ServerHandler.java:123)
at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:274)
at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:261)
at org.jboss.netty.channel.socket.nio.NioWorker.read(NioWorker.java:351)
at org.jboss.netty.channel.socket.nio.NioWorker.processSelectedKeys(NioWorker.java:282)
at org.jboss.netty.channel.socket.nio.NioWorker.run(NioWorker.java:202)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:722)
I'll see if I can fix any of the errors (tea has no errors wewt)
Seems that neutrino is either not handling MySQL connections properly (bonecp issue) or your java version is outdated(?)
Posted via Mobile Device
@nominal, it's because the server didn't get closed properly or something, just restart your pc and try again.
Neutrino log in by IP. We cant crack RSA, so we cant use SSO.
You can also disclose this cms
Bugt because now he is very hard on me if I want hotel than he Bugt hard
xD ik ben nederlands kan niet goed engels dus;D volgende keer even opletten dus;D *ikke*
xD I'm not english so can Dutchman; THE next time pay attention so; D * complication *
I could spend the swf Craked is that the need
Finally got it working with my cracked SWFs, pretty cool stuff
http://i.imgur.com/Zh8d2.png