Results 1 to 13 of 13
  1. #1
    TheGoldenShroud's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0

    Invision Power Login System

    Hi. I know this has been posted before but I wanted to request an actual tutorial on an Invision Power login system. I'm not a fan of copy and paste coding. I actually want to learn from these things. Anyway I've tried HTTPS requests and that doesn't seem to work either so I'm running out of options. Hope to hear back from someone. Thanks!

  2. #2
    Droid O.O's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    10
    Reputation
    16
    Thanks
    90
    You can a webbrowser control and use WebBrowser1.Document.GetElementsById("USERNAME_ID" ).SetAttribute("value", "YOUR USERNAME")
    This will edit the value or text of the textbox in the login system website and you can make it invisible.
    You can do this for mostly any login system and for more details just search it up on google

  3. #3
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    IPBOARD has a API which can be used in .net, You may need to play around with it, dont remember if it can be consumed in VS or not, I think @Jason played around with it when I built wannacode / learn2dev .

    But the API for IPBOARD is the way to go, bc then you have more access to more features without too much hardcoding.

    @ ^ comment.

    DOMS is generally a bad idea unless you already have the intention of adding a webbrowser to your website.

    You can use WebRequests to login which are cleaner & dont require a webbrowser.
    Last edited by NextGen1; 03-18-2012 at 04:14 AM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  4. #4
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    I never used the IP API, just wrote my own.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  5. #5
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by Jason View Post
    I never used the IP API, just wrote my own.
    This. Writing your own API is way cooler because you can add more functionality to it just by few regexes ;D

  6. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by Hassan View Post


    This. Writing your own API is way cooler because you can add more functionality to it just by few regexes ;D
    Except a public API distributed by the creators is much more robust, as they'll keep it up to date with new client changes etc.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  7. #7
    TheGoldenShroud's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    Thanks for your feedback. I'll look into it. I would still like a tutorial on the API as well. I'm very fluent with visual basic and C# but combining web and code is not my area of expertise.

  8. #8
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by Jason View Post
    I never used the IP API, just wrote my own.

    Hmm, I do recall (but I would have to double check)that only one of the two Dev Mod(s) for wannacode has access key logs showing direct access to the API (or attempting too). Considering you were the only one (out of the two) who used the API

    In either case (however) I only recommended you for familiarity but if you are suggesting that someone who barely understands DOMS & the basics of Webbrowser component(s) builds his own API, then I can't agree, Consuming & Calling API can be complex and requires somewhere between basic & Intermediate skills and understanding, But wrapping PHP API and utilizing it effectively is significantly more difficult & pointless, The only reason to write your own API is if the existing API isn't robust/usable enough as is, or if the API is lacking your specific needs, Creating separate API while a strong / usable API exists is more then superfluous.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  9. #9
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by NextGen1 View Post



    Hmm, I do recall (but I would have to double check)that only one of the two Dev Mod(s) for wannacode has access key logs showing direct access to the API (or attempting too). Considering you were the only one (out of the two) who used the API

    In either case (however) I only recommended you for familiarity but if you are suggesting that someone who barely understands DOMS & the basics of Webbrowser component(s) builds his own API, then I can't agree, Consuming & Calling API can be complex and requires somewhere between basic & Intermediate skills and understanding, But wrapping PHP API and utilizing it effectively is significantly more difficult & pointless, The only reason to write your own API is if the existing API isn't robust/usable enough as is, or if the API is lacking your specific needs, Creating separate API while a strong / usable API exists is more then superfluous.
    You gave me the API key and kept telling me to use it, I never did.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  10. #10
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Maybe that's the case, doesn't really matter, only person I *thought* I knew who actually used it.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  11. #11
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    I'm look at the project right now. No API.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  12. #12
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed


    I said:

    Maybe that's the case, I *thought* you were the only person I know who used it. I don't get why your still making a point out of it. If you say you didn't use the API, who am I to say you did...I just thought I remember you using it, I was trying to help the OP and I figured you his best bet at understanding it because I *THOUGHT* I remember you using it, I don't know if you think that, for some reason using API is beneath you, and you are "better" then that so you feel the need to defend yourself, but.(no offense)...I don't care, it wasn't about you....
    Last edited by NextGen1; 03-19-2012 at 11:34 PM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  13. #13
    TheGoldenShroud's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    Not to be rude but I'm still looking for a tutorial. ;p

Similar Threads

  1. Replies: 1
    Last Post: 08-16-2010, 03:30 PM
  2. *Tut* how to make a login system
    By u1111u in forum Programming Tutorials
    Replies: 13
    Last Post: 12-04-2009, 12:20 AM
  3. A better Login System
    By Iamazn in forum Visual Basic Programming
    Replies: 6
    Last Post: 10-14-2009, 12:02 PM
  4. HOT![Tutorail!]Login system!+Video![Username and password!]
    By almog6666 in forum Visual Basic Programming
    Replies: 3
    Last Post: 04-27-2009, 05:31 PM
  5. My Login System(Flash)
    By radnomguywfq3 in forum General
    Replies: 13
    Last Post: 06-12-2008, 11:05 PM