[PREVIEW] OsDs V2

02/18/2010 04:04 janvier123#1
Video is still processing

Comments ?
I got my ideas from a very special girl :)
<3


+ Improved Speed
+ search on - Account & character name & email & user_no
+ dkunderground forums theme ;) i kinda like it




- No security yet
- its far from done, DONT ASK ME WHEN ITS GONNA BE DONE, I DONT KNOW :D
02/18/2010 05:50 dannyx12345#2
thats ober sexy tool janvier u get my thanks ^^ for ur amazing and usefull tools ^^ cant wait for the full release
02/18/2010 05:57 [DEV]AlphaOMEGA#3
ha ha nice one
looks supper easy to use
for all the noobs :D

keep it up and cant wait till you finish
02/18/2010 07:19 ҉ THT ҉#4
Hehe :D Dekaron Sense:P
02/18/2010 07:19 l2zeo#5
i waited to come out V 2!
that come out fast !! lol
02/18/2010 07:53 gedimazs#6
Quote:
Originally Posted by l2zeo View Post
i waited to come out V 2!
that come out fast !! lol
OMG read carefully
Quote:
Originally Posted by janvier123 View Post

- No security yet
- its far from done, DONT ASK ME WHEN ITS GONNA BE DONE, I DONT KNOW :D
02/18/2010 08:17 l2zeo#7
Quote:
Originally Posted by gedimazs View Post
OMG read carefully
OMG XD
did not see it. :(
Thx.. gedimazs
02/18/2010 08:29 DK-SeaON#8
Nice job !! janvier.
02/18/2010 09:00 pieter#9
jan feel free to use my search on ip stuff asswell..

i also added links to results, clicking charname in example login log or online player looks up the account and all other chars

or clicking the ip next to the charname looksup all accounts and characters linked to that ip :)

also make sure that the unban function changes the loginflag back to Y i believe the last osds v2 beta didnt have that :) or it didnt work :P
02/18/2010 12:37 janvier123#10
search on ip is possible but its binary_data
i know its posted on the forums where and i need to search for it
02/18/2010 14:06 iAslana#11
They are my ideas! WOO <3
02/18/2010 17:37 gedimazs#12
janvier123 you need code how to extract IP from binary data?
if yes here you go an example

Code:
... = odbc_exec($odbc_char_con,"SELECT account.dbo.FN_IpBinToStr(user_ip_addr) FROM character.dbo.user_character WHERE ...
02/19/2010 04:42 abelwang#13
janvier maybe you shld try coding a exe instead of php webpage. a exe with all the function on the php webpage. like what darnus84 does. it's more safe to use. php site is a open oport where it's easily hacked.
02/19/2010 09:26 Decima#14
Quote:
Originally Posted by gedimazs View Post
janvier123 you need code how to extract IP from binary data?
if yes here you go an example

Code:
... = odbc_exec($odbc_char_con,"SELECT account.dbo.FN_IpBinToStr(user_ip_addr) FROM character.dbo.user_character WHERE ...
hmm, but does that not display it in HEX format?

Code:
function decode_ip($enc_ip) {
$ip_pop = explode('.', chunk_split($enc_ip, 2, '.'));

return hexdec($ip_pop[0]). '.' . hexdec($ip_pop[1]) . '.' . hexdec($ip_pop[2]) . '.' . hexdec($ip_pop[3]);
}

    $result = mssql_query("SELECT user_ip_addr, user_no FROM character.dbo.user_character WHERE user_no = $user_no",$con);
    $row = mssql_fetch_row($result);

$ip = decode_ip(bin2hex($row[0]));

echo $ip;
02/19/2010 12:30 janvier123#15
Quote:
Originally Posted by Decima View Post
hmm, but does that not display it in HEX format?

Code:
function decode_ip($enc_ip) {
$ip_pop = explode('.', chunk_split($enc_ip, 2, '.'));

return hexdec($ip_pop[0]). '.' . hexdec($ip_pop[1]) . '.' . hexdec($ip_pop[2]) . '.' . hexdec($ip_pop[3]);
}

    $result = mssql_query("SELECT user_ip_addr, user_no FROM character.dbo.user_character WHERE user_no = $user_no",$con);
    $row = mssql_fetch_row($result);

$ip = decode_ip(bin2hex($row[0]));

echo $ip;
i was searching yesterday for a script and i kinda gave up on it, but i was waiting for zombe to give me a hand with that

@abelwang
i dont know any C++ or how to build .exe's

EDIT: hmm, iam getting 0.0.0.0 as ip's
EDIT2: ok got it :)