S3 Player Stats & Sigs
 |
|
03-22-2006
|
#131
|
|
Moderator
|
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! •
Last edited by OME6A; 03-22-2006 at 03:03 PM.
|
|
|
03-22-2006
|
#132
|
Join Date: Mar 2006
Location: Katy, Texas
Posts: 24
|
Is there something we can sign or send to zipper to get you back on??
|
|
|
03-22-2006
|
#133
|
Join Date: Jul 2005
Location: Lusby, MD
Age: 30
Posts: 183
|
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.
__________________
|
|
|
03-22-2006
|
#134
|
Join Date: Mar 2006
Location: Katy, Texas
Posts: 24
|
Just let us know im pretty sure we all feel the same and will do anything we can to help!!!!
|
|
|
03-23-2006
|
#135
|
Join Date: Jul 2005
Location: Lusby, MD
Age: 30
Posts: 183
|
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($ch, CURLOPT_COOKIEJAR, $cookielocation); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookielocation); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $url = "https://socom3-prod.svo.pdonline.scea.com:10079/SOCOM3_HTML/account/Account_Login_Submit.jsp"; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_UNSAFE, 0); curl_setopt($ch, CURLOPT_SSL_INSECURE, 1); curl_setopt($ch, CURLOPT_SSL_CACERT, 1); curl_setopt($ch, CURLOPT_VERIFY_HOST, 0); curl_setopt($ch, CURLOPT_POSTFIELDS, "userName=" . $user_socom_name . "&passWord=" . $user_socom_pass); curl_setopt($ch, CURLOPT_VERBOSE, 1); $result = curl_exec($ch); $ch = curl_init(); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookielocation); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookielocation); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $url = "http://socom3-prod.svo.pdonline.scea.com:10070/SOCOM3_HTML/stats/Stats_CareerSearch_Submit.jsp?userName=" . $socom_stats_for . "&gameMode=0"; url_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_VERBOSE, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_UNSAFE, 0); curl_setopt($ch, CURLOPT_SSL_INSECURE, 1); curl_setopt($ch, CURLOPT_SSL_CACERT, 1); curl_setopt($ch, CURLOPT_VERIFY_HOST, 0); $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.
|
|
|
03-23-2006
|
#136
|
Join Date: Mar 2006
Location: Katy, Texas
Posts: 24
|
Are you up and runnin again??? can it be??? what happened man give us the news.
|
|
|
03-23-2006
|
#137
|
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.
|
|
|
03-24-2006
|
#138
|
Join Date: Mar 2006
Location: New york
Posts: 11
|
thats pretty spiffy i guess
__________________
|
|
|
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
|
|
|
04-03-2006
|
#140
|
Join Date: Feb 2006
Location: Madison, OH
Posts: 11
|
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.
|
|
|
 |
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
S3 Player Stats & Sigs
|
|