Search results

  1. H

    Best web 2.0 property creator tools?

    there is no sophisticated tool for creating web2 pages right now, i use a mix of senuke+magic submitter+sick submitter
  2. H

    Text to Speech/Audio Software ?

    is there any software which provides an api ?
  3. H

    [Wordpress] Bulk import articles

    i'm looking for a plugin to mass import articles from text files/zip & schedule their posting date . most plugins i found don't work anymore (such as text-as-post etc..)
  4. H

    [c#] Text rotation? (names, emails, proxies)

    if you use the class random,The variable has to be static to produce "random" numbers. A better approach of randomzing file lines(using Linq) Try { List<string>usernames = File.ReadAllLines("profile/usernames.txt").OrderBy(a => Guid.NewGuid()).ToList<string>(); } catch (for...
  5. H

    C# Web Response - No Cookies Returned

    there are several problems with cookiescontainer , try to use CookieCollection instead and add response cookies manually to it
  6. H

    C#: Solving Fiverr captcha?

    CHECK THIS thread http://www.blackhatworld.com/blackhat-seo/black-hat-seo-tools/472722-get-intelligent-library-solving-security-questions-text-captchas.html
  7. H

    Permanently Closed Marketplace Sales Thread

    hello, what is the twitter price? can i order with less than 50$?
  8. H

    [Get] intelligent Library for solving security questions/Text Captchas

    it's hard to provide a reliable text captcha service because the questions can vary heavily. Examples of text captchas that can't be solved easily: what is the {url|title|owner} of the website? (need to send the url too) what is the background of the page? what is your typed username ! in...
  9. H

    [Get] intelligent Library for solving security questions/Text Captchas

    when trying to automate things like registration and posting , the most annoying part isn't the image captcha which can be solved through cheap services but the logic questions, softwares users don't notice this but Text Captchas decrease success rate by about 20%. on year ago , while...
  10. H

    Calling Tunisians OUt !

    I'm Tunisian, Started doing Internet Marketing in 2009,Make Good Money since then (mostly from adsense,Amazon). the problem with internet marketing in Tunisia is most of people can't pay online due to law restrictions, i hope the government will solve that problem soon.
  11. H

    advantage of Google PVA account

    Hello, I see a lot of people selling gmail pva accounts, what is the real advantage of these PVa Accounts?
  12. H

    Permanently Closed Marketplace Sales Thread

    the 7$ offer still available?
  13. H

    Firefox Captcha Solving Plugin

    it is not possible because javascript cannot parse images as bytes.
  14. H

    C#: Email Verficiation?

    before using regex , you need to decode email (base16,base64,quoted printable etc...). this is the hardest part i encountered when automating validation as there is no .Net library to decode/encode them.
  15. H

    need help to build autmation tools in c#

    once you understand how http work, creating your own web sockets are easy. (you will encounter however some problems with ssl).
  16. H

    Build Bots with Proxy and Multi-threading?

    the main limiting factor in a bot is the Internet connection not the code running speed. a well designed c# bot is much faster than a delphi one because of flexibility of Asynchronous Methods(no function like beginInvoke in delphi). so i take advantage of downloading time to run the code rather...
  17. H

    C# + Google Searches

    from experience, google will ban you fast if you keep downloading all 10 pages while results are less than 1000, so operations needs to be synchronized. rotate headers& waiting on every pages are useless,you can check this by searching for the same phrase with firefox after getting 503 with...
  18. H

    Text Captcha Solving (broke textcaptcha.com)

    most spamming softwares like xrummer allow users to create their own database of questions (and solutions) . you can create a huge database with this tool . here's an example of a list containing over 5120 questions and their answers (5117 were successfully solved)...
Back
Top