facebook Status Updater

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    i dont use api ...i used CURL

    Code:
    curl_setopt($ch, CURLOPT_URL, 'https://login.facebook.com/login.php?m&next=http%3A%2F%2Fm.facebook.com%2Fhome.php');

    common sense buddy i am atempting to login page right? if you know this..


    so it needs accurate facebook login...then if it is incorrect then message will not be posted LOL
    Last edited by wapmetal; 14.03.10, 11:51.
    com site: http://vampist.net
    download site: http://wapdloads.net
    fb: http://www.facebook.com/pmplx

    Comment


      #17
      Leave it people, why are you fighting over this ? a common facebook user should understand the risk of submitting his id and password. The potential of having a logger comes second, first comes the stupidity of the person who publishes his / her details. Wapmetal is just providing the service, what is wrong in that ? We cannot educate the world by fighting, its rather better to write a blog about the risk and let people decide for themselves.
      As for the script , yes it is an api . Api also includes use of third party channels to derive details so it qualifies as an api. Most API s are for general use but not always. Including gateways, data sources of other sites without permission means data copyrights infringement but if its publicly accessible then it is an API. Wapmetal may term it as his modified script based on Facebook API but the text API stays there.
      tinyurl.com/earnbymobile
      Easy earning for Indians
      ---------------------
      Alternative mobile advertising network .. Minimum 100 USD pay / NET15 pay cycle, Good Brand, Best targeting for Android
      goo.gl/6vub3

      Comment


        #18
        True. So knock urselves owt

        Comment


          #19
          morse thanks about that ... my goal here is to share m services ... and 100% theres no such hacking on it ...just trust me, nothing will be lost as i said to first post
          com site: http://vampist.net
          download site: http://wapdloads.net
          fb: http://www.facebook.com/pmplx

          Comment


            #20
            Trust my ass :-/

            Comment


              #21
              go let insecurity to kill your dumbass
              com site: http://vampist.net
              download site: http://wapdloads.net
              fb: http://www.facebook.com/pmplx

              Comment


                #22
                hey man... this is not the place of showing.. this place is for sharing.... so Talk less and Work most.... I am fully sure you've opend this topic only for showing the ****ing method... so Go Home Kid..

                Comment


                  #23
                  Yea. Y dnt u share it wit otherz then

                  Comment


                    #24
                    here is facebook status update code snippet i found while googling..
                    PHP Code:
                    <?PHP
                    /*******************************
                    *    Facebook Status Updater
                    *    Christian Flickinger
                    *    http://nexdot.net/blog
                    *    April 20, 2007
                    *******************************/

                    $status 'YOUR_STATUS';
                    $first_name 'YOUR_FIRST_NAME';
                    $login_email 'YOUR_LOGIN_EMAIL';
                    $login_pass 'YOUR_PASSWORD';

                    $ch curl_init();
                    curl_setopt($chCURLOPT_URL'https://login.facebook.com/login.php?m&amp;next=http%3A%2F%2Fm.facebook.com%2Fhome.php');
                    curl_setopt($chCURLOPT_POSTFIELDS,'email='.urlencode($login_email).'&pass='.urlencode($login_pass).'&login=Login');
                    curl_setopt($chCURLOPT_POST1);
                    curl_setopt($chCURLOPT_HEADER0);
                    curl_setopt($chCURLOPT_FOLLOWLOCATION1);
                    curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
                    curl_setopt($chCURLOPT_COOKIEJAR"my_cookies.txt");
                    curl_setopt($chCURLOPT_COOKIEFILE"my_cookies.txt");
                    curl_setopt($chCURLOPT_RETURNTRANSFER1);
                    curl_setopt($chCURLOPT_USERAGENT"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3");
                    curl_exec($ch);

                    curl_setopt($chCURLOPT_POST0);
                    curl_setopt($chCURLOPT_URL'http://m.facebook.com/home.php');
                    $page curl_exec($ch);

                    curl_setopt($chCURLOPT_POST1);
                    preg_match('/name="post_form_id" value="(.*)" \/>'.ucfirst($first_name).'/'$page$form_id);
                    curl_setopt($chCURLOPT_POSTFIELDS,'post_form_id='.$form_id[1].'&status='.urlencode($status).'&update=Update');
                    curl_setopt($chCURLOPT_URL'http://m.facebook.com/home.php');
                    curl_exec($ch);
                    ?>
                    Follow me @ksg91 | My Blog: http://ksg91.com | Nokia Blog: http://NokiaTips.in

                    Comment


                      #25
                      He didnt even make it? ****in lame i tell you. :-/

                      Comment


                        #26
                        Originally posted by ksg91 View Post
                        here is facebook status update code snippet i found while googling..
                        PHP Code:
                        <?PHP
                        /*******************************
                        *    Facebook Status Updater
                        *    Christian Flickinger
                        *    http://nexdot.net/blog
                        *    April 20, 2007
                        *******************************/

                        $status 'YOUR_STATUS';
                        $first_name 'YOUR_FIRST_NAME';
                        $login_email 'YOUR_LOGIN_EMAIL';
                        $login_pass 'YOUR_PASSWORD';

                        $ch curl_init();
                        curl_setopt($chCURLOPT_URL'https://login.facebook.com/login.php?m&amp;next=http%3A%2F%2Fm.facebook.com%2Fhome.php');
                        curl_setopt($chCURLOPT_POSTFIELDS,'email='.urlencode($login_email).'&pass='.urlencode($login_pass).'&login=Login');
                        curl_setopt($chCURLOPT_POST1);
                        curl_setopt($chCURLOPT_HEADER0);
                        curl_setopt($chCURLOPT_FOLLOWLOCATION1);
                        curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
                        curl_setopt($chCURLOPT_COOKIEJAR"my_cookies.txt");
                        curl_setopt($chCURLOPT_COOKIEFILE"my_cookies.txt");
                        curl_setopt($chCURLOPT_RETURNTRANSFER1);
                        curl_setopt($chCURLOPT_USERAGENT"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3");
                        curl_exec($ch);

                        curl_setopt($chCURLOPT_POST0);
                        curl_setopt($chCURLOPT_URL'http://m.facebook.com/home.php');
                        $page curl_exec($ch);

                        curl_setopt($chCURLOPT_POST1);
                        preg_match('/name="post_form_id" value="(.*)" \/>'.ucfirst($first_name).'/'$page$form_id);
                        curl_setopt($chCURLOPT_POSTFIELDS,'post_form_id='.$form_id[1].'&status='.urlencode($status).'&update=Update');
                        curl_setopt($chCURLOPT_URL'http://m.facebook.com/home.php');
                        curl_exec($ch);
                        ?>

                        lmA0 this code is so simple? and not working haha
                        com site: http://vampist.net
                        download site: http://wapdloads.net
                        fb: http://www.facebook.com/pmplx

                        Comment


                          #27
                          obviously we have different codes and fcking mgigs is worthly wrong with api he says haha

                          $first_name = 'YOUR_FIRST_NAME';
                          i dont have that one and probably no conditional statements

                          and probably a fhishing area
                          Last edited by wapmetal; 19.03.10, 09:50.
                          com site: http://vampist.net
                          download site: http://wapdloads.net
                          fb: http://www.facebook.com/pmplx

                          Comment


                            #28
                            thats 100% faild
                            com site: http://vampist.net
                            download site: http://wapdloads.net
                            fb: http://www.facebook.com/pmplx

                            Comment


                              #29
                              Lmao the point is u dint do it urself. Anyway knock urself owt. I stopped giving a rats ass long ago

                              Comment


                                #30
                                lets say that i am not trusted and you says that i didn't code it to my self but as you see i don't moan here for help unlike others go here to be helped why?, because there's google to help me a lot to study future references ,and the knowledge that i get was kept only secrets,
                                LOL i know you will not believe because you are so jealous guy, why you not do it with your own haha ,i know every people that is very curious to learn thats why they get the answer .



                                hahaha i do it with my own 100% LOL

                                knock your big head boastful old man
                                com site: http://vampist.net
                                download site: http://wapdloads.net
                                fb: http://www.facebook.com/pmplx

                                Comment

                                Working...
                                X