Quote Grabber (XML/PHP) on Fidelity

Discussion in 'App Development' started by barney-, Mar 16, 2013.

  1. barney-

    barney-

    I have a few more things I am working on. To help simulate some stuff. Figured I would start sharing with you guys.

    http://pastie.org/private/oh5ar0vac6bxf5duekhmw

    I have also found a few security flaws in the way Fidelity likes to access/store YOUR OWN personal data. Working on a PoC, will share too.
     
  2. guest2

    guest2

  3. barney-

    barney-

    Cool setup actually.

    I love the 'parallel' connections. Could've done this on threads as well. Did you write this?

    $multi = new CURL();

    foreach($url_list as $url) {
    $multi->addSession($url, array(CURLOPT_HEADER => 0, CURLOPT_RETURNTRANSFER => 1));
    }