Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored

    "Exploit Checker" Help

    Hey, I'm new to I guess, Coding in gmod and I wanted to know how I could check for exploits. I read an outdated post teaching how to use notepad++ to check for net.start in servers you've joined whilst scripthook is on (aka in the folders in which the servers shit was pulled.)
    I've gotten that far, I just want/need to know how i can check which addons can be exploited/How would I exploit them (or run them when i have the exploit written?, I'm guessing as a lua.) thank you so much for any help in advance.

  2. #2
    Cyaegha's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    536
    Reputation
    17
    Thanks
    526
    Make an infinite numeric for loop, use util.NetworkIDToString, store the value in a table, if it returns nil then break the loop.

    Use the table in your exploits to check if they exist.

  3. The Following 2 Users Say Thank You to Cyaegha For This Useful Post:

    Alainx277 (06-23-2017),Maaate (06-19-2017)

  4. #3
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored
    Quote Originally Posted by Cyaegha View Post
    Make an infinite numeric for loop, use util.NetworkIDToString, store the value in a table, if it returns nil then break the loop.

    Use the table in your exploits to check if they exist.
    (Sorry if my retardedness is annoying.)
    But In all honestly, I have no fucking clue what to do with what you gave me. If you could help me more with the "infinite numeric for loop" bit you mentioned, and util.NetworkIDToString That'd be awesome. I'll try do the rest after.

  5. #4
    Cyaegha's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    536
    Reputation
    17
    Thanks
    526
    Learn how to make a numeric for loop and use math.huge as the limit.
    Cache util.NetworkIDToString(i)
    if cached string then table[cached string] = true else break end

  6. #5
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored
    Quote Originally Posted by Cyaegha View Post
    Learn how to make a numeric for loop and use math.huge as the limit.
    Cache util.NetworkIDToString(i)
    if cached string then table[cached string] = true else break end
    while true do
    Cache util.NetworkIDToString(i)
    if cached string then table[cached string] = true else break end
    Would that work Or am I still retarded as I was before.
    EDIT: I searched online for further help, I don't know if the method i """"WROTE UP"""" works.
    Last edited by Maaate; 06-19-2017 at 05:48 AM.

  7. #6
    Cyaegha's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    536
    Reputation
    17
    Thanks
    526
    That's a while loop.

  8. #7
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored
    Quote Originally Posted by Cyaegha View Post
    That's a while loop.
    F U C K /2short

    - - - Updated - - -

    Quote Originally Posted by Cyaegha View Post
    That's a while loop.
    for i=1,f(x) do
    Cache util.NetworkIDToString(i)
    if cached string then table[cached string] = true else break end
    I hope thats it..
    P.S I don't really know what the 1 and f(x) does so I just copied and pasted that from the lua site too.
    Last edited by Maaate; 06-19-2017 at 06:52 AM.

  9. #8
    Cyaegha's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    536
    Reputation
    17
    Thanks
    526
    Maybe you should learn basic Lua.
    https://www.lua.org/pil/1.html

  10. The Following User Says Thank You to Cyaegha For This Useful Post:

    Maaate (06-19-2017)

  11. #9
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored
    Quote Originally Posted by Cyaegha View Post
    Maybe you should learn basic Lua.
    https://www.lua.org/pil/1.html
    a G r E e D.
    Edit: I would take this seriously right now its 11pm and im tired as fuck and just want to get this to work.

    - - - Updated - - -

    Quote Originally Posted by Cyaegha View Post
    Maybe you should learn basic Lua.
    https://www.lua.org/pil/1.html
    I'm sorry, I really can't fully understand it.. (im still on the numeric for.) i am starting to get more and more of it though. If you just finish it / help me more that would be great :P

    - - - Updated - - -

    Okay, Just so you know @Cyaegha I made this thread so someone could give me something and tell me how to use it, not so i could blow my brains out
    Last edited by Maaate; 06-19-2017 at 07:01 AM.

  12. #10
    Cyaegha's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    536
    Reputation
    17
    Thanks
    526
    Stop being so fucking shitty. It isn't my fault you can't figure out something as simple as this.

  13. #11
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored
    Quote Originally Posted by Cyaegha View Post
    Stop being so fucking shitty. It isn't my fault you can't figure out something as simple as this.
    I'm sorry For that fact that I'm still new to all of this shit and I can't figure out this """SIMPLE""" thing.
    If It was so f*cking simple, Shouldn't I have of figured it out?.
    If you could teach me which was what instead of me having to stress out over figuring out what i have to fucking do in order to get this to work, That would be NICE OF YOU.

  14. #12
    Cyaegha's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    536
    Reputation
    17
    Thanks
    526
    Quote Originally Posted by Maaate View Post
    If It was so f*cking simple, Shouldn't I have of figured it out?.
    Yes, you should.
    This is incredibly easy, I've provided you with enough information to make it and already made the majority of it for you.

    - - - Updated - - -

    Hell, I even made you a different variant of what you want in your previous thread but your brain capacity was overwhelmed by the extra ')' I put in it.

  15. #13
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored
    Quote Originally Posted by Cyaegha View Post
    Yes, you should.
    This is incredibly easy, I've provided you with enough information to make it and already made the majority of it for you.

    - - - Updated - - -

    Hell, I even made you a different variant of what you want in your previous thread but your brain capacity was overwhelmed by the extra ')' I put in it.
    i eventually removed that and ran it, still didn't work.
    I "consulted" my friend (who has his own cac bypass n shit)
    And he said it wouldn't even work with the shit he fixed in it. lmao

  16. #14
    Cyaegha's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    536
    Reputation
    17
    Thanks
    526
    You say !CAC bypass like it's some sort of achievement. Even cheater.team have a !CAC bypass and they're all retarded.
    And the code I provided does work, you're just too retarded to use it tbh.

  17. #15
    Maaate's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Australia
    Posts
    98
    Reputation
    10
    Thanks
    10
    My Mood
    Bored
    Quote Originally Posted by Cyaegha View Post
    You say !CAC bypass like it's some sort of achievement. Even cheater.team have a !CAC bypass and they're all retarded.
    And the code I provided does work, you're just too retarded to use it tbh.
    Okay so, I removed your fucking mistake, It should've worked right?
    So I ran it, And nothing happened.
    Good fucking job mate.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help Request] Help with code. Using quotes within quotes.
    By howl2000 in forum C++/C Programming
    Replies: 1
    Last Post: 09-07-2014, 11:13 PM
  2. Exploiting a cvar help
    By sirmrhax in forum Garry's Mod Discussions & Help
    Replies: 2
    Last Post: 05-21-2014, 12:05 PM
  3. Replies: 11
    Last Post: 04-10-2013, 05:40 PM
  4. When I quote people it quotes in my colour?
    By Hysteria in forum General
    Replies: 2
    Last Post: 10-14-2011, 08:46 AM
  5. Quoting Help
    By Massive in forum CrossFire Help
    Replies: 5
    Last Post: 06-21-2010, 06:36 AM