Video Game Forums

Go Back   Video Game Forums > Miscellaneous > Older Threads

Older Threads This is where most of our older threads are located. These threads can still be replied to.


S3 Player Stats & Sigs
Reply
 
LinkBack Thread Tools Display Modes
Old 03-22-2006   #131
Moderator
 
OME6A's Avatar
Quote:
Originally Posted by Casper
"...your continued access to our Online server places an unwated stress to our already burdened transfer clauses."
Probably the only leg they can stand on.

Quote:
Originally Posted by Casper
"...continued distribution of players online stats without the consent of individual parties is against Sony America's privacy policy."
They should do their homework, people willingly sign up for this service, some even provide their passwords.

Quote:
Originally Posted by Casper
He also said that if they do decide to release XML feeds now, they will have to be totally different than mine, or I could sue.
That's a smart lawyer, and your Trump Card. I think it'd be legendary if you ended up sending them a cease and decist letter if they do offer this service.

Fight the power.

Quote:
Originally Posted by socommaster
How did you guys get in the servers in the first place...?they must have a weak *** security system
Nothing illegal was done, at all. It's not like Casper hAcKz0red them. The same process anyone uses to login to socom3.scea.com and look up someone's stats is essentially how Casper was doing it.
__________________
XBL [ SvNs OME6A ] • • • • • • • • • PSN [ SvNs_OME6A ]
Thanks E!
SOTWs Won : #133, #152, #158

Last edited by OME6A; 03-22-2006 at 03:03 PM.
OME6A is online now  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-22-2006   #132
 
--Joker81--'s Avatar


 
Join Date: Mar 2006
Location: Katy, Texas
Posts: 24

Send a message via AIM to --Joker81-- Send a message via MSN to --Joker81-- Send a message via Yahoo to --Joker81--
Is there something we can sign or send to zipper to get you back on??
__________________


--Joker81-- is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-22-2006   #133


 
Join Date: Jul 2005
Location: Lusby, MD
Age: 30
Posts: 183

Send a message via AIM to Casper Send a message via MSN to Casper
As soon as my lawyer gets my site back up and running we will come up with a plan to fight the injunction.

Will probaly consist of a petition or something. Anyway, I will keep you all updated.
__________________

Casper is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-22-2006   #134
 
--Joker81--'s Avatar


 
Join Date: Mar 2006
Location: Katy, Texas
Posts: 24

Send a message via AIM to --Joker81-- Send a message via MSN to --Joker81-- Send a message via Yahoo to --Joker81--
Just let us know im pretty sure we all feel the same and will do anything we can to help!!!!
__________________


--Joker81-- is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-23-2006   #135


 
Join Date: Jul 2005
Location: Lusby, MD
Age: 30
Posts: 183

Send a message via AIM to Casper Send a message via MSN to Casper
OK, get your pen and paper ready. I am going to type up the script I use to pull player stats. Give me a couple of minutes to get it together cause I had to remove all copies of it temporarily.

PHP Code:
<?php
$user_socom_name 
"";
$user_socom_pass "";
$cookielocation "socomcookies.txt";
$ch curl_init();
curl_setopt($chCURLOPT_COOKIEJAR$cookielocation);
curl_setopt($chCURLOPT_COOKIEFILE$cookielocation);
curl_setopt($chCURLOPT_FOLLOWLOCATION1);
curl_setopt($chCURLOPT_RETURNTRANSFER1);
$url "https://socom3-prod.svo.pdonline.scea.com:10079/SOCOM3_HTML/account/Account_Login_Submit.jsp";
curl_setopt($chCURLOPT_URL$url);
curl_setopt($chCURLOPT_POST1);
curl_setopt($chCURLOPT_SSL_VERIFYPEER0);
curl_setopt($chCURLOPT_SSL_UNSAFE0);
curl_setopt($chCURLOPT_SSL_INSECURE1);
curl_setopt($chCURLOPT_SSL_CACERT1);
curl_setopt($chCURLOPT_VERIFY_HOST0);
curl_setopt($chCURLOPT_POSTFIELDS"userName=" $user_socom_name "&passWord=" $user_socom_pass);
curl_setopt($chCURLOPT_VERBOSE1);
$result curl_exec($ch);
$ch curl_init();
curl_setopt($chCURLOPT_COOKIEJAR$cookielocation);
curl_setopt($chCURLOPT_COOKIEFILE$cookielocation);
curl_setopt($chCURLOPT_FOLLOWLOCATION1);
curl_setopt($chCURLOPT_RETURNTRANSFER1);
$url "http://socom3-prod.svo.pdonline.scea.com:10070/SOCOM3_HTML/stats/Stats_CareerSearch_Submit.jsp?userName=" $socom_stats_for "&gameMode=0";
url_setopt($chCURLOPT_URL$url);
curl_setopt($chCURLOPT_VERBOSE1);
curl_setopt($chCURLOPT_SSL_VERIFYPEER0);
curl_setopt($chCURLOPT_SSL_UNSAFE0);
curl_setopt($chCURLOPT_SSL_INSECURE1);
curl_setopt($chCURLOPT_SSL_CACERT1);
curl_setopt($chCURLOPT_VERIFY_HOST0);
$content curl_exec($ch);
curl_close($ch);
$stats explode('<TD align="right" class="font" width="50%"><B>Name:</B></TD>'$content);
$stats $stats[1];
$stats ereg_replace('<TD class="fontValue" width="50%">'''$stats);
$stats ereg_replace('<TD align="right" class="font" width="50%"><B>'''$stats);
$stats ereg_replace('</B></TD>'''$stats);
$stats ereg_replace('</TD>'''$stats);
$stats ereg_replace('</TR>'''$stats);
$stats ereg_replace('<TR>'''$stats);
$stats explode('</TABLE>'$stats);
$stats $stats[0];
$stats ereg_replace('Position:'','$stats);
$stats ereg_replace('Rating:'','$stats);
$stats ereg_replace('# of Games:'','$stats);
$stats ereg_replace('Won:'','$stats);
$stats ereg_replace('Lost:'','$stats);
$stats ereg_replace('Win/Loss %:'','$stats);
$stats ereg_replace('Streak:'','$stats);
$stats ereg_replace('Quits:'','$stats);
$stats ereg_replace('Disconnects:'','$stats);
$stats ereg_replace('Kills:'','$stats);
$stats ereg_replace('Deaths:'','$stats);
$stats ereg_replace('Kill/Death:'','$stats);
$stats ereg_replace('Suicides:'','$stats);
$stats ereg_replace('Headshots:'','$stats);
$stats ereg_replace('Team'''$stats);
$stats ereg_replace('MVP:'','$stats);
$stats ereg_replace('Survival %:'','$stats);
$stats ereg_replace('Pistol'''$stats);
$stats ereg_replace('Shotgun'''$stats);
$stats ereg_replace('Sniper Rifle'''$stats);
$stats ereg_replace('Assault Rifle'''$stats);
$stats ereg_replace('SMG'''$stats);
$stats ereg_replace('Grenade'''$stats);
$stats ereg_replace('Vehicle'''$stats);
$stats ereg_replace('Most Kills in One Round:'','$stats);
$stats ereg_replace('Most Kills in One Game:'','$stats);
$stats ereg_replace('Demolition Wins:'','$stats);
$stats ereg_replace('Escort Wins:'','$stats);
$stats ereg_replace('Suppression Wins:'','$stats);
$stats ereg_replace('Breach Wins:'','$stats);
$stats ereg_replace('Convoy Wins:'','$stats);
$stats ereg_replace('Control Wins:'','$stats);
$stats ereg_replace('Small Wins:'','$stats);
$stats ereg_replace('Extract Wins:'','$stats);
$stats ereg_replace('Gametype Preference:'','$stats);
$stats ereg_replace('Hit %:'','$stats);
$stats ereg_replace('Bases Destroyed:'','$stats);
$stats ereg_replace('Hostages Rescued:'','$stats);
$stats ereg_replace('VIPs Rescued:'','$stats);
$stats ereg_replace('VIPs Killed:'','$stats);
$stats ereg_replace('Times Voted Out:'','$stats);
$stats ereg_replace('Weapon Preference:'','$stats);
$stats ereg_replace('Map Preference:'','$stats);
$stats ereg_replace('Control Points:'','$stats);
$stats ereg_replace('Convoys Extracted:'','$stats);
$stats ereg_replace("Devil's Road"'Devils Road'$stats);
?>
__________________


Last edited by Casper; 03-23-2006 at 02:23 PM.
Casper is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-23-2006   #136
 
--Joker81--'s Avatar


 
Join Date: Mar 2006
Location: Katy, Texas
Posts: 24

Send a message via AIM to --Joker81-- Send a message via MSN to --Joker81-- Send a message via Yahoo to --Joker81--
Are you up and runnin again??? can it be??? what happened man give us the news.
__________________


--Joker81-- is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-23-2006   #137
 
socommaster's Avatar


 
Join Date: Feb 2006
Location: Louisiana
Posts: 624

Quote:
Originally Posted by M!KE
Nothing illegal was done, at all. It's not like Casper hAcKz0red them. The same process anyone uses to login to socom3.scea.com and look up someone's stats is essentially how Casper was doing it.
Oh, no I wasn't saying anything like "illegal" happened I was just saying ,how you did it and that they must have weak security....and where did you put the script in??...
Because I know a few sites that have scripts in them...but my security system(Zone alarm pro,AVG 7.0, and McAfee securitycenter) catches all types of chit like that

Last edited by socommaster; 03-23-2006 at 04:06 PM.
socommaster is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-24-2006   #138
 
elemenope's Avatar


 
Join Date: Mar 2006
Location: New york
Posts: 11

Send a message via AIM to elemenope
Cool

thats pretty spiffy i guess
__________________
elemenope is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 03-24-2006   #139


 
Join Date: Mar 2006
Location: Pa
Posts: 15

Quote:
Originally Posted by socommaster
Oh, no I wasn't saying anything like "illegal" happened I was just saying ,how you did it and that they must have weak security....and where did you put the script in??...
Because I know a few sites that have scripts in them...but my security system(Zone alarm pro,AVG 7.0, and McAfee securitycenter) catches all types of chit like that
haha...why would you think socom has a weak security system?...no one like hacked it nothing was even done with it...
__________________
TASTE IT
Masked_Hobo is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Old 04-03-2006   #140


 
Join Date: Feb 2006
Location: Madison, OH
Posts: 11

Send a message via AIM to Shockeclipse
woa....

Whats going on with this? I am assuming that the stat bars are no longer working although I do see one in Caspers sig, everyone elses just shows the link.
Shockeclipse is offline  
Digg this Post!Add Post to del.icio.us
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

S3 Player Stats & Sigs


All times are GMT -4. The time now is 08:12 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO