Page 1 of 2 12 LastLast
Results 1 to 25 of 36

Thread: Lockerz automatic login points.

  1. #1
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Lockerz automatic login points.

    This is free for now to everyone here at srl. If you are logged in to lockerz when you use this page/script, it will log you out and you have to log back in.

    Edit: I took down scar support functionality. But If you follow my link in siggy, and post/PM your fearnothing username, I can grant access to the service for free.
    Last edited by ZaSz; 03-30-2010 at 12:47 AM.
    I do visit every 2-6 months

  2. #2
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I dont think sending my account details to your site sounds safe tbh. Post the php so we can host it ourselfs

  3. #3
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    If i post the php... I couldn't sell the service of it in the future...

    Use a test account to see its legit if you want.
    I do visit every 2-6 months

  4. #4
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    It works .
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  5. #5
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Quote Originally Posted by ZaSz View Post
    If i post the php... I couldn't sell the service of it in the future...

    Use a test account to see its legit if you want.
    Do you store the passwords as plain text?
    There used to be something meaningful here.

  6. #6
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I believe it works, but I just don't know how much I trust my password going to your site.

  7. #7
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I don't store a single password. It only handles the user + pass for the login part of the script.

    edit: You would have believed it works most likely if it originally had a nice layout and stuff, well, i am currently making it nicely laid out.
    I do visit every 2-6 months

  8. #8
    Join Date
    Jan 2008
    Location
    10° north of Hell
    Posts
    2,035
    Mentioned
    65 Post(s)
    Quoted
    164 Post(s)

    Default

    I was bored....

    SCAR Code:
    program New;

    const
      Username = ''; //Username
      Password = ''; //Password
      Quickie = True; //Only login once then quit
      RandomNess = True; //Add randomness to the logins

    ////////////////////////////////////////////////////////////////////////////////
    ////////               Script Beyond This Point                        /////////
    ////////////////////////////////////////////////////////////////////////////////
     
    var
      VActive: boolean;
      CResult: string;
      SCount, ECount, WaitMS: integer;

    procedure GetPoints;
    var
      STemp: string;
    begin
      STemp := Trim(LowerCase(GetPage('http://fearnothing.net/ptz.php?user=' + Username + '&pass=' + Password)));
      if (STemp <> '') then
      begin
        STemp := Trim(between('<result>', '</result>', STemp));
        if (STemp <> '') then
        begin
          if (STemp <> 'false') then
          begin
            Inc(SCount);
            CResult := 'Got your login points for the day!';
          end else
          begin
            Inc(ECount);
            CResult := 'You already got your login ptz for the day!';
          end;
        end else
        begin
          Inc(ECount);
          CResult := 'You have entered a Invalid Account!';
          VActive := False;
        end;
      end else
      begin
        Inc(ECount);
        CResult := 'Unknown Error!';
      end;
      WriteLn(CResult);
      if Quickie then
        VActive := False;
    end;

    procedure Report;
    begin
      ClearDebug;
      WriteLn('/----------------------------------------------------------------\');
      WriteLn('|           ZaSz''s Automatic Lockerz Login Script                |');
      WriteLn('|----------------------------------------------------------------|');
      WriteLn('|    Successful Logins: ' + Padr(IntToStr(SCount), 40) + ' |');
      WriteLn('|    UnSuccessful Logins: ' + Padr(IntToStr(ECount), 38) + ' |');
      WriteLn('|    Current Result: ' + Padr(CResult, 43) + ' |');
      WriteLn('\----------------------------------------------------------------/');
    end;

    procedure UserCheck;
    begin
      if ((Username = '') or (Password = '')) then
      begin
        VActive := False;
        CResult := 'Please Fill out Account Information!';
      end;
    end;

    begin
      VActive := True;
      SCount := 0;
      ECount := 0;
      UserCheck;
      while VActive do
      begin
        Report;
        GetPoints;
        if (not (VActive)) then
          Break;
        WaitMS := MSecPerDay; //24 Hours (24 * 60 * 60 * 1000)
        if RandomNess then
          IncEx(WaitMS, Random(60 * 60 * 1000)); //1 Hour
        Wait(WaitMS);
      end;
      Report;
    end.
    Last edited by Dgby714; 03-26-2010 at 08:54 PM.

    Dg's Small Procedures | IRC Quotes
    Thank Wishlah for my nice new avatar!
    Quote Originally Posted by IRC
    [22:12:05] <Dgby714> Im agnostic
    [22:12:36] <Blumblebee> :O ...you can read minds

  9. #9
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Dgby714;697794 Code:
    [LEFT
    WaitMS := 24 * 60 * 60 * 1000; //24 Hours

    [/LEFT]
    Why don't you just use the MSecPerDay constant..?
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  10. #10
    Join Date
    Jan 2008
    Location
    10° north of Hell
    Posts
    2,035
    Mentioned
    65 Post(s)
    Quoted
    164 Post(s)

    Default

    Quote Originally Posted by Sex View Post
    Why don't you just use the MSecPerDay constant..?
    I didn't know there was one.....

    Dg's Small Procedures | IRC Quotes
    Thank Wishlah for my nice new avatar!
    Quote Originally Posted by IRC
    [22:12:05] <Dgby714> Im agnostic
    [22:12:36] <Blumblebee> :O ...you can read minds

  11. #11
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Now you do .
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  12. #12
    Join Date
    Jan 2008
    Location
    10° north of Hell
    Posts
    2,035
    Mentioned
    65 Post(s)
    Quoted
    164 Post(s)

    Default

    Quote Originally Posted by Sex View Post
    Now you do .
    If you look i alredy changed it lol...

    Dg's Small Procedures | IRC Quotes
    Thank Wishlah for my nice new avatar!
    Quote Originally Posted by IRC
    [22:12:05] <Dgby714> Im agnostic
    [22:12:36] <Blumblebee> :O ...you can read minds

  13. #13
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    So, you're trying to make money off idiots, and also not share your PHP source?


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  14. #14
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I haven't started trying to make money. And sorry about not sharing sauce

    I don't want to be flooded with student loans when I go to college, so I gotta make money somehow.

    When I sell, it would be useful for days you are gone or just forget, because it will do it automatic on my site. (When you register for the service)
    I do visit every 2-6 months

  15. #15
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Asking money for the service is not stupid imo.
    There used to be something meaningful here.

  16. #16
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    Well it is, as you could just do this with a free script.
    Here's just a little start, you only need to add the 'click the login button' thingy, which I can't do now as I just clicked it 'legit'.
    SCAR Code:
    program new;
    var client : integer;
    postdata : string;
    const
    email = '';
    password = '';
    begin
    InitializeHTTPClient(true, true);
    SetHTTPUserAgent(client, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; nl; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2');
    GetHTTPPage(client, 'http://www.lockerz.com');
    PostData := 'remember+me=off&handle='+email+'&password='+password;
    postdata := PostHTTPPage(client, 'http://www.lockerz.com/auth/login', postdata);
    writeln('You got: '+GetNumbers(between('<span class="ptz_value">', '</span> PTZ</li>', postdata))+' PTZ.');
    end.
    I made a new script, check it out!.

  17. #17
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    stop me if this is me being stupid; but wouldnt it be the same amount of effort to start the script, than to just log onto this site yourself?
    Did someone say GDK?

  18. #18
    Join Date
    Apr 2007
    Location
    Netherlands
    Posts
    427
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Im pretty much new to lockerz.. I know some basic things how you gain points and can exchange it for some cool prices or money cards but what does this script ? Is it like continues logging in and out and you gain points with it or ?

  19. #19
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Mat, it does the daily login points. Jakey, right now, maybe, unless you leave your pc on 24/7, you can run dgby's connector to my site to do it.
    I do visit every 2-6 months

  20. #20
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Tell me if you get anyone buying it, cause I just thought of an AWESOME idea which I might sell if the customers are there.

  21. #21
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    If its automatic dailies, I'm also working on that
    I do visit every 2-6 months

  22. #22
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Nope

  23. #23
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Almost ready to release the onsite service. When I do, I will be removing the main links functionality -.o, but, I will be offering a free months (Maybe more) service to srl.

    What you guys can do now is go to fearnothing.net and sign up, if you want you can set your lockerz settings when you login.

    I will be posting a new thread for it in the misc links section, and will request for this thread to be locked. (Not now, maybe later today or 2moro)
    I do visit every 2-6 months

  24. #24
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    Student loans top about $5-6k. This probably wont help you dude :P
    Jus' Lurkin'

  25. #25
    Join Date
    Dec 2007
    Location
    Williston, ND
    Posts
    3,106
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    I've got 20k in student loans, still a year left of school, but prob won't need to take out too much next year.
    and my university is pretty cheap...good luck making any kind of dent in that! (don't kid yourself, or us)
    Proud owner of "Efferator" my totally boted main account!
    "You see, sometimes, science is not a guess" -Xiaobing Zhou (my past physics professor, with heavy Chinese accent)

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •