let request = require("request");
let interval = 1 * 500; // Lowing the interval can get you ip banned
for (i = 0; i < 100; i++) {
setTimeout(function (i) {
console.log("trying on " + i);
// I ran the code on <groupid> with backslash,without backslash and with members,it seem like /member give the best results
request.get("https://www.callofduty.com/api/sso/cod/title/bo3/psn/teams/" + i + "/members", function (err, resp, body) {
if (body !== "") {
console.log(resp.request.uri.href);
}
});
}, interval * i, i);;
}
let request = require("request");
let interval = 1 * 500; // Lowing the interval can get you ip banned
for (i = 0; i < 100; i++) {
setTimeout(function (i) {
console.log("trying on " + i);
// I ran the code on <groupid> with backslash,without backslash and with members,it seem like /member give the best results
request.get("https://www.callofduty.com/api/sso/cod/title/bo3/psn/teams/" + i + "/members", function (err, resp, body) {
if (body !== "") {
console.log(resp.request.uri.href);
}
});
}, interval * i, i);;
}
<?php
$data = [
"username" => "[email protected]",
"remember_me" => "true",
"password" => "p@55w0rd"
];
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'https://profile.callofduty.com/do_login?new_SiteId=cod',
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => http_build_query($data),
CURLOPT_HTTPHEADER => [
'Content-Type: application/x-www-form-urlencoded',
'Cookie: AMCVS_0FB367C2524450B90A490D4C%40AdobeOrg=1; __utmt_dd8c0908a9be2688b4eb1ba01b8aabf5=1; ACT_SSO_LOCALE=en_US; ATVI_VISITOR_ID=anon-1506714328364-0.6579939320381232; __utma=229673283.1064438501.1506714327.1506714327.1506714327.1; __utmb=229673283.3.10.1506714327; __utmc=229673283; __utmz=229673283.1506714327.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); redirectUrl="https://my.callofduty.com/"; SSO_REDIRECTED_AT_LOGIN="https://my.callofduty.com/"; atkn=""; rtkn=""; agegate=""; country=""; mbox=check#true#1506714393|session#775b52c8450c413bb876bdec89fca133#1506716193|PC#775b52c8450c413bb876bdec89fca133.20_32#1514490333; AMCV_0FB367C2524450B90A490D4C%40AdobeOrg=1099438348%7CMCIDTS%7C17439%7CMCMID%7C07047275907769086351423327957578528689%7CMCAAMLH-1507319133%7C9%7CMCAAMB-1507319133%7CcIBAx_aQzFEHcPoEv0GwcQ%7CMCOPTOUT-1506721533s%7CNONE%7CMCAID%7CNONE%7CMCSYNCSOP%7C411-17446%7CvVersion%7C2.1.0; new_SiteId=cod; comid=cod; s_dfa=activision.prd; s_ppvl=https%253A%2F%2Fmy.callofduty.com%2Fiw%2Flogin%2C57%2C57%2C769%2C1600%2C769%2C1600%2C900%2C1%2CL; s_cc=true; s_ppv=callofduty%253Asso-callofduty%253Alogin%2C93%2C93%2C1169%2C1600%2C769%2C1600%2C900%2C1%2CL; gpv_c8=callofduty%3Asso-callofduty%3Alogin; s_nr=1506714342609-New; s_sq=%5B%5BB%5D%5D',
],
CURLOPT_COOKIEJAR => realpath('cookies.txt'
,
CURLOPT_HEADER => true
));
$resp = curl_exec($curl);
var_dump($resp);
Copyright © 2025, NextGenUpdate.
All Rights Reserved.