public static void Scraper(ref FacebookUser fbUser, string Hash) { GlobusHttpHelper HttpHelper = fbUser.globusHttpHelper; string pageSource_Home = HttpHelper.getHtmlfromUrl(new Uri("https://www.facebook.com")); string __user = string.Empty; string fb_dtsg = string.Empty; string KeyWord = string.Empty; __user = GlobusHttpHelper.GetParamValue(pageSource_Home, "user"); if (string.IsNullOrEmpty(__user)) { __user = GlobusHttpHelper.ParseJson(pageSource_Home, "user"); } fb_dtsg = GlobusHttpHelper.Get_fb_dtsg(pageSource_Home); string PostData = "__user="******"&__a=1&__dyn=7nmanEyl2lm9o-t2u5bGya4Au74qbx2mbAKGiyEyut9LRwxBxem9V8CdwIhEyfyUnwPUS2O4K5e8GQ8GqcFoy8ACxtpm&__req=h&fb_dtsg=" + fb_dtsg + "&ttstamp=26581701181109510510483495368&__rev=1719057"; string PostUrl = "https://www.facebook.com/pubcontent/trending/see_more/?topic_ids[0]=105471716153186&topic_ids[1]=109659645720566&topic_ids[2]=108332329190557&position=3"; string Pageresponce = HttpHelper.postFormData(new Uri(PostUrl), PostData); Pageresponce = Pageresponce.Replace("\\u003C", "<"); string[] trendingArr = System.Text.RegularExpressions.Regex.Split(Pageresponce, "li data-topicid="); trendingArr = trendingArr.Skip(1).ToArray(); foreach (var item_trendingArr in trendingArr) { string trendingId = string.Empty; string trendingName = string.Empty; string trendingLinkUrl = string.Empty; try { try { trendingId = Utils.getBetween(item_trendingArr, "\\\"", "\\\""); } catch { } try { trendingName = Utils.getBetween(item_trendingArr, "_5v0s _5my8\\\">", "<"); } catch { }; string LinkUrl = Utils.getBetween(item_trendingArr, "_4qzh _5v0t _7ge\\\" href=\\\"", "\" id=").Replace("\\", string.Empty).Replace("amp;", string.Empty); if (!LinkUrl.Contains("www.facebook.com/")) { trendingLinkUrl = "https://www.facebook.com" + LinkUrl; } else { trendingLinkUrl = LinkUrl; } if (trendingName.Contains(KeyWord)) { string FindPageSource = string.Empty; FindPageSource = HttpHelper.getHtmlfromUrl(new Uri(trendingLinkUrl)); string postID = string.Empty; string postName = string.Empty; string postImage = string.Empty; string postDescriptions = string.Empty; string posttitle = string.Empty; string[] ContentArr = System.Text.RegularExpressions.Regex.Split(FindPageSource, "userContentWrapper _5pcr _3ccb"); ContentArr = ContentArr.Skip(1).ToArray(); foreach (var ContentArr_item in ContentArr) { try { postName = trendingName; postID = trendingId; // class="_4-eo _2t9n" postImage = Utils.getBetween(ContentArr_item, "scaledImageFitWidth img\" src=\"", "alt=").Replace("amp;", string.Empty).Replace("\"", string.Empty); } catch (Exception) { } string profileName = posttitle;//2 string Message = Utils.getBetween(ContentArr_item, "<p>", "<").Replace("@", "@").Replace("&", "&").Replace("u0025", "%").Replace("'", "'"); ;//7 string[] DetailedInfo = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<div class=\"_6m7\">"); string detail = "-" + DetailedInfo[1];//8 detail = Utils.getBetween(detail, "-", "</div>").Replace("&", "&").Replace("u0025", "%").Replace("'", "'"); if (detail.Contains("<a ")) { string GetVisitUrl = Utils.getBetween(detail, "\">", "</a>"); detail = Utils.getBetween("$$$####" + detail, "$$$####", "<a href=") + "-" + GetVisitUrl; } string[] ArrDetail = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<div class=\"mbs _6m6\">"); string Titles = Utils.getBetween(ArrDetail[1], ">", "</a>").Replace("@", "@").Replace("&", "&").Replace("u0025", "%").Replace("'", "'"); string SiteRedirectionUrl = Utils.getBetween(ArrDetail[1], "LinkshimAsyncLink.swap(this, "", ");"); SiteRedirectionUrl = Uri.UnescapeDataString(SiteRedirectionUrl).Replace("\\u0025", "%").Replace("\\", "");//4 string websiteUrl = Utils.getBetween(SiteRedirectionUrl, "//", "/"); string[] adImg = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<img class=\"scaledImageFitWidth img\""); string redirectionImg = Utils.getBetween(adImg[1], "src=\"", "\"").Replace("&", "&"); string[] profImg = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<img class=\"_s0 5xib 5sq7 _rw img\""); string profileImg = Utils.getBetween(profImg[0], "src=\"", "\"").Replace("&", "&"); } } } catch { }; } }
public static void Scraper(ref FacebookUser fbUser, string Hash) { GlobusHttpHelper HttpHelper = fbUser.globusHttpHelper; string pageSource_Home = HttpHelper.getHtmlfromUrl(new Uri("https://www.facebook.com")); string __user = string.Empty; string fb_dtsg = string.Empty; string KeyWord = string.Empty; __user = GlobusHttpHelper.GetParamValue(pageSource_Home, "user"); if (string.IsNullOrEmpty(__user)) { __user = GlobusHttpHelper.ParseJson(pageSource_Home, "user"); } fb_dtsg = GlobusHttpHelper.Get_fb_dtsg(pageSource_Home); string PostData = "__user="******"&__a=1&__dyn=7nmanEyl2lm9o-t2u5bGya4Au74qbx2mbAKGiyEyut9LRwxBxem9V8CdwIhEyfyUnwPUS2O4K5e8GQ8GqcFoy8ACxtpm&__req=h&fb_dtsg=" + fb_dtsg + "&ttstamp=26581701181109510510483495368&__rev=1719057"; string PostUrl = "https://www.facebook.com/pubcontent/trending/see_more/?topic_ids[0]=105471716153186&topic_ids[1]=109659645720566&topic_ids[2]=108332329190557&position=3"; string Pageresponce = HttpHelper.postFormData(new Uri(PostUrl), PostData); Pageresponce = Pageresponce.Replace("\\u003C", "<"); string[] trendingArr = System.Text.RegularExpressions.Regex.Split(Pageresponce, "li data-topicid="); trendingArr = trendingArr.Skip(1).ToArray(); foreach (var item_trendingArr in trendingArr) { string trendingId = string.Empty; string trendingName = string.Empty; string trendingLinkUrl = string.Empty; try { try { trendingId = Utils.getBetween(item_trendingArr, "\\\"", "\\\""); } catch { } try { trendingName = Utils.getBetween(item_trendingArr, "_5v0s _5my8\\\">", "<"); } catch { }; string LinkUrl = Utils.getBetween(item_trendingArr, "_4qzh _5v0t _7ge\\\" href=\\\"", "\" id=").Replace("\\", string.Empty).Replace("amp;", string.Empty); if (!LinkUrl.Contains("www.facebook.com/")) { trendingLinkUrl = "https://www.facebook.com" + LinkUrl; } else { trendingLinkUrl = LinkUrl; } if (trendingName.Contains(KeyWord)) { string FindPageSource = string.Empty; FindPageSource = HttpHelper.getHtmlfromUrl(new Uri(trendingLinkUrl)); string postID = string.Empty; string postName = string.Empty; string postImage = string.Empty; string postDescriptions = string.Empty; string posttitle = string.Empty; string[] ContentArr = System.Text.RegularExpressions.Regex.Split(FindPageSource, "userContentWrapper _5pcr _3ccb"); ContentArr = ContentArr.Skip(1).ToArray(); foreach (var ContentArr_item in ContentArr) { try { postName = trendingName; postID = trendingId; // class="_4-eo _2t9n" postImage = Utils.getBetween(ContentArr_item, "scaledImageFitWidth img\" src=\"", "alt=").Replace("amp;", string.Empty).Replace("\"", string.Empty); } catch (Exception) { } string profileName = posttitle; //2 string Message = Utils.getBetween(ContentArr_item, "<p>", "<").Replace("@", "@").Replace("&", "&").Replace("u0025", "%").Replace("'", "'");; //7 string[] DetailedInfo = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<div class=\"_6m7\">"); string detail = "-" + DetailedInfo[1]; //8 detail = Utils.getBetween(detail, "-", "</div>").Replace("&", "&").Replace("u0025", "%").Replace("'", "'"); if (detail.Contains("<a ")) { string GetVisitUrl = Utils.getBetween(detail, "\">", "</a>"); detail = Utils.getBetween("$$$####" + detail, "$$$####", "<a href=") + "-" + GetVisitUrl; } string[] ArrDetail = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<div class=\"mbs _6m6\">"); string Titles = Utils.getBetween(ArrDetail[1], ">", "</a>").Replace("@", "@").Replace("&", "&").Replace("u0025", "%").Replace("'", "'"); string SiteRedirectionUrl = Utils.getBetween(ArrDetail[1], "LinkshimAsyncLink.swap(this, "", ");"); SiteRedirectionUrl = Uri.UnescapeDataString(SiteRedirectionUrl).Replace("\\u0025", "%").Replace("\\", "");//4 string websiteUrl = Utils.getBetween(SiteRedirectionUrl, "//", "/"); string[] adImg = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<img class=\"scaledImageFitWidth img\""); string redirectionImg = Utils.getBetween(adImg[1], "src=\"", "\"").Replace("&", "&"); string[] profImg = System.Text.RegularExpressions.Regex.Split(ContentArr_item, "<img class=\"_s0 5xib 5sq7 _rw img\""); string profileImg = Utils.getBetween(profImg[0], "src=\"", "\"").Replace("&", "&"); } } } catch { }; } }
public static void LoginUsingGlobusHttp(ref FacebookUser facebookUser) { ///Sign In try { GlobusHttpHelper objGlobusHttpHelper = facebookUser.globusHttpHelper; #region Post variable string fbpage_id = string.Empty; string fb_dtsg = string.Empty; string __user = string.Empty; string xhpc_composerid = string.Empty; string xhpc_targetid = string.Empty; string xhpc_composerid12 = string.Empty; #endregion int intProxyPort = 80; if (!string.IsNullOrEmpty(facebookUser.proxyport) && Utils.IdCheck.IsMatch(facebookUser.proxyport)) { intProxyPort = int.Parse(facebookUser.proxyport); } Console.WriteLine("Logging in with " + facebookUser.username); Console.WriteLine("Logging in with " + facebookUser.username); string pageSource = string.Empty; try { pageSource = objGlobusHttpHelper.getHtmlfromUrl(new Uri("https://www.facebook.com/login.php")); } catch (Exception ex) { Console.WriteLine("Error : " + ex.StackTrace); } if (pageSource == null || string.IsNullOrEmpty(pageSource)) { pageSource = objGlobusHttpHelper.getHtmlfromUrl(new Uri("https://www.facebook.com/login.php")); } if (pageSource == null) { pageSource = objGlobusHttpHelper.getHtmlfromUrl(new Uri("https://www.facebook.com/login.php")); return; } string valueLSD = GlobusHttpHelper.GetParamValue(pageSource, "lsd"); string ResponseLogin = string.Empty; try { ResponseLogin = objGlobusHttpHelper.postFormData(new Uri("https://www.facebook.com/login.php?login_attempt=1"), "charset_test=%E2%82%AC%2C%C2%B4%2C%E2%82%AC%2C%C2%B4%2C%E6%B0%B4%2C%D0%94%2C%D0%84&lsd=" + valueLSD + "&locale=en_US&email=" + facebookUser.username.Split('@')[0].Replace("+", "%2B") + "%40" + facebookUser.username.Split('@')[1] + "&pass="******"&persistent=1&default_persistent=1&charset_test=%E2%82%AC%2C%C2%B4%2C%E2%82%AC%2C%C2%B4%2C%E6%B0%B4%2C%D0%94%2C%D0%84&lsd=" + valueLSD + ""); //"https://www.facebook.com/login.php?login_attempt=1" } catch (Exception ex) { Console.WriteLine("Error : " + ex.StackTrace); } if (string.IsNullOrEmpty(ResponseLogin)) { ResponseLogin = objGlobusHttpHelper.postFormData(new Uri("https://www.facebook.com/login.php?login_attempt=1"), "charset_test=%E2%82%AC%2C%C2%B4%2C%E2%82%AC%2C%C2%B4%2C%E6%B0%B4%2C%D0%94%2C%D0%84&lsd=" + valueLSD + "&locale=en_US&email=" + facebookUser.username.Split('@')[0].Replace("+", "%2B") + "%40" + facebookUser.username.Split('@')[1] + "&pass="******"&persistent=1&default_persistent=1&charset_test=%E2%82%AC%2C%C2%B4%2C%E2%82%AC%2C%C2%B4%2C%E6%B0%B4%2C%D0%94%2C%D0%84&lsd=" + valueLSD + ""); //"https://www.facebook.com/login.php?login_attempt=1" } if (ResponseLogin == null) { return; } string loginStatus = ""; if (CheckLogin(ResponseLogin, facebookUser.username, facebookUser.password, facebookUser.proxyip, facebookUser.proxyport, facebookUser.proxyusername, facebookUser.proxypassword, ref loginStatus)) { Console.WriteLine("Logged in with Username : "******"Logged in with Username : "******"Couldn't login with Username : "******"account has been disabled") { // GlobusFileHelper.AppendStringToTextfileNewLine(Username + ":" + Password + ":" + proxyAddress + ":" + proxyPort + ":" + proxyUsername + ":" + proxyPassword, Globals.path_DisabledAccount); } if (loginStatus == "Please complete a security check") { //GlobusFileHelper.AppendStringToTextfileNewLine(Username + ":" + Password + ":" + proxyAddress + ":" + proxyPort + ":" + proxyUsername + ":" + proxyPassword, Globals.path_SecurityCheckAccounts); } if (loginStatus == "Your account is temporarily locked") { //GlobusFileHelper.AppendStringToTextfileNewLine(Username + ":" + Password + ":" + proxyAddress + ":" + proxyPort + ":" + proxyUsername + ":" + proxyPassword, Globals.path_TemporarilyLockedAccount); } if (loginStatus == "have been blocked") { //GlobusFileHelper.AppendStringToTextfileNewLine(Username + ":" + Password + ":" + proxyAddress + ":" + proxyPort + ":" + proxyUsername + ":" + proxyPassword, Globals.path_havebeenblocked); } if (loginStatus == "For security reasons your account is temporarily locked") { // GlobusFileHelper.AppendStringToTextfileNewLine(Username + ":" + Password + ":" + proxyAddress + ":" + proxyPort + ":" + proxyUsername + ":" + proxyPassword, Globals.path_SecurityCheckAccountsforsecurityreason); } if (loginStatus == "Account Not Confirmed") { //GlobusFileHelper.AppendStringToTextfileNewLine(Username + ":" + Password + ":" + proxyAddress + ":" + proxyPort + ":" + proxyUsername + ":" + proxyPassword, Globals.path_AccountNotConfirmed); } if (loginStatus == "Temporarily Blocked for 30 Days") { // GlobusFileHelper.AppendStringToTextfileNewLine(Username + ":" + Password + ":" + proxyAddress + ":" + proxyPort + ":" + proxyUsername + ":" + proxyPassword, Globals.path_30daysBlockedAccount); } } } catch (Exception ex) { Console.WriteLine("Error : " + ex.StackTrace); } }