ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content



Photo

NulledAPI [AUTH Working!]


  • Please log in to reply
NulledAPI [AUTH Working!]

#1

M3GZ
M3GZ
    Offline
    341
    Rep
    1877
    Likes

    Your Friendly Coder

Posts: 1422
Threads: 244
Joined: Jul 14, 2020
Credits: 34

Three years registered
#1

NulledAPI - Unofficial Nulled.to API

https://pypi.org/project/NulledAPI/

 

NulledAPI is an unofficial nulled.to API to better and more easily integrate features such as a ramped up version of nulled auth, and have access to useful functions such as searching for users, getting user info (much more functions in the works).

 

Some features:

  • Nulled auth function returns the usergroup and other user tidbits, which you can use to bar certain ugs to access certain functions of your program :pog:
     
  • Search user function returns dictionary of similarly named users
     
  • Get user info gets you the user info Kappa
     
  • More functions are on the way (depends on the time I can devote lol)

 

I still need to implement the web scraper part like in my Leecher Slayer program, so that likes, reps, threads, posts and such can be returned

 

Preview:

aU3D3G7.gif

 

REQUIREMENTS:

 

Python 3

 

 

INSTALLATION:

 

[hide] pip install NulledAPI [/hide]

 

 

EXAMPLE USAGE:
 

[spoiler]
 

from NulledAPI import Nulled
nulled = Nulled()
print(nulled.get_user_info(1234144))

 
 OUTPUT:
{
    'user_found': True,
    'username': 'finndev',
    'id': 1234144,
    'group': 'reverser',
    'shouts': 1,
    'discord': None,
    'error': (False, 'NO_ERROR_USER_FOUND')
}

[/spoiler]

 

METHODS:
 

  • auth(auth_code: str)
    [spoiler]
    print(nulled.auth('NULLED-5E72C-60984-4D332-5B526-X'))
    {
        'authenticated': True,
        'user_found': True,
        'username': 'M3GZ',
        'id': 4103370,
        'group': 'aqua',
        'shouts': 348,
        'discord': '_megz#1304',
        'error': (False, 'NO_ERROR_USER_FOUND')
    }
    [/spoiler]
    Now you can limit parts of your programs for different usergroups Kappa

     
  • get_user_info(user_name_or_id, secure_hash, session_id)
    [spoiler]
    print(nulled.get_user_info('brian','secure_hash','session_id'))
    OR
    print(nulled.get_user_info(1468487))
    {
        'user_found': True,
        'username': 'Brian',
        'id': 1468487,
        'group': 'disinfector',
        'shouts': 2381,
        'discord': None,
        'error': (False, 'NO_ERROR_USER_FOUND')
    }
    [/spoiler]
    Go crazy with the information, you need just one line of code to get all of it Kappa

     
  • search_user(username: str, secure_hash: str, session_id: str)
    [spoiler]
    Returns dictionary of all similarly named users found (the dict keys are the UIDs)
    print(nulled.search_user('m3gz','secure_hash','session_id'))
    {
        '4103370': {
              'name': 'M3GZ',
              'group': 'Aqua',
              'profile_pic': 'https://static.nulle...?_r=1598880866'
        },
        '2515890': {
              'name': 'm3gzz',
              'group': 'Members',
              'profile_pic': 'https://static.nulle...ault_large.png'
        }
    }

    [/spoiler]
    No need to type @username in the shoutbox to search for users again :hype:
     
  • More functions WIP

Notes
To get the session_id and secure_hash:

[spoiler]

  • Open any nto page on your browser being logged in
  • Then press Ctrl + U
  • In the source page, search for the term secure_hash
  • There'll be a line like ipb.vars['secure_hash'] = 'xyz';
  • xyz is the secure_hash, use that in the methods
  • The line below the secure_hash line will contain the session_id
  • Note: session_id changes every time you use your Auth key to authenticate, so you'll need to input the latest one while calling the method.

[/spoiler]
 

Documentation can also be viewed using Visual Studio Code or other editors/IDEs


PkEUaLo.png
 
Important: Cloudflare should not be an issue now

 

Hope you guys like it :wub:


  • 15

Will be offline for a while, reach out on discord: _megz#1304

My Releases For Nulled | Out of Context Screenshots | Sig Space For Sale

873RjHi.gif

LTC - M8Yw6L1FPDcYhwjL4w9TTb2PwTX221dwB7   BTC - 3DNg251mYN7a4x9wxzsccHBDaVNsRUTvTr   ETH - 0x0711fCE2b1c52d95e459B1073B80Aa0285C42c6b

Best people (alphabetical)|Anna Brian Cat CEO cocaine Croconut Dad DratLoodi Eminem exiis Hades Ituriel LoidForger M3GZ Metamine NegMePls Neo Nikko Nivea Nuck petrov Preaux Regorce Sacred Sakura SpartanHoplite Stranded Swiss TRID3NT


#2

Brian
Brian
    Offline
    1156
    Rep
    1751
    Likes

    Nulled's (Retired) Janitor

Posts: 2897
Threads: 251
Joined: Mar 12, 2018
Credits: 0

Six years registered
#2

why do I see my name in that gif :monkaw:


  • 0

#3

M3GZ
M3GZ
    Offline
    341
    Rep
    1877
    Likes

    Your Friendly Coder

Posts: 1422
Threads: 244
Joined: Jul 14, 2020
Credits: 34

Three years registered
#3

why do I see my name in that gif :monkaw:

test Kappa


  • 1

Will be offline for a while, reach out on discord: _megz#1304

My Releases For Nulled | Out of Context Screenshots | Sig Space For Sale

873RjHi.gif

LTC - M8Yw6L1FPDcYhwjL4w9TTb2PwTX221dwB7   BTC - 3DNg251mYN7a4x9wxzsccHBDaVNsRUTvTr   ETH - 0x0711fCE2b1c52d95e459B1073B80Aa0285C42c6b

Best people (alphabetical)|Anna Brian Cat CEO cocaine Croconut Dad DratLoodi Eminem exiis Hades Ituriel LoidForger M3GZ Metamine NegMePls Neo Nikko Nivea Nuck petrov Preaux Regorce Sacred Sakura SpartanHoplite Stranded Swiss TRID3NT


#4

M3GZ
M3GZ
    Offline
    341
    Rep
    1877
    Likes

    Your Friendly Coder

Posts: 1422
Threads: 244
Joined: Jul 14, 2020
Credits: 34

Three years registered
#4

btw let me know of any bugs/issues/feature requests and such by tagging me here


  • 1

Will be offline for a while, reach out on discord: _megz#1304

My Releases For Nulled | Out of Context Screenshots | Sig Space For Sale

873RjHi.gif

LTC - M8Yw6L1FPDcYhwjL4w9TTb2PwTX221dwB7   BTC - 3DNg251mYN7a4x9wxzsccHBDaVNsRUTvTr   ETH - 0x0711fCE2b1c52d95e459B1073B80Aa0285C42c6b

Best people (alphabetical)|Anna Brian Cat CEO cocaine Croconut Dad DratLoodi Eminem exiis Hades Ituriel LoidForger M3GZ Metamine NegMePls Neo Nikko Nivea Nuck petrov Preaux Regorce Sacred Sakura SpartanHoplite Stranded Swiss TRID3NT


#5

Dua
Dua
    Offline
    490
    Rep
    1331
    Likes

    im the real OG

Posts: 2024
Threads: 607
Joined: Mar 10, 2020
Credits: 0

Four years registered
#5

hq


  • 0

may i present you CatBoyRond rond.lol

ECEV2gD.gif

 


#6

Kangieeee
Kangieeee
    Offline
    0
    Rep
    23
    Likes

    Kang Daniel - Developer

Posts: 157
Threads: 19
Joined: Sep 10, 2019
Credits: 0
Four years registered
#6

looking nice man! is the source code available ? maybe some people can bring it as a npm package?


  • 0

KangieScraper | Scrape Latest Proxies

https://www.nulled.t...ltiple-sources/


#7

valkun
valkun
    Offline
    4
    Rep
    74
    Likes

    Developer

Posts: 64
Threads: 8
Joined: Apr 17, 2021
Credits: 0

Three years registered
#7

you dont even use linux. not very poggers


  • 0

I am only a developer.

lawrence.png


#8

valkun
valkun
    Offline
    4
    Rep
    74
    Likes

    Developer

Posts: 64
Threads: 8
Joined: Apr 17, 2021
Credits: 0

Three years registered
#8

But regardless I'll be using this very soon! Sending love your way my guy


  • 0

I am only a developer.

lawrence.png


#9

M3GZ
M3GZ
    Offline
    341
    Rep
    1877
    Likes

    Your Friendly Coder

Posts: 1422
Threads: 244
Joined: Jul 14, 2020
Credits: 34

Three years registered
#9

bump


  • 0

Will be offline for a while, reach out on discord: _megz#1304

My Releases For Nulled | Out of Context Screenshots | Sig Space For Sale

873RjHi.gif

LTC - M8Yw6L1FPDcYhwjL4w9TTb2PwTX221dwB7   BTC - 3DNg251mYN7a4x9wxzsccHBDaVNsRUTvTr   ETH - 0x0711fCE2b1c52d95e459B1073B80Aa0285C42c6b

Best people (alphabetical)|Anna Brian Cat CEO cocaine Croconut Dad DratLoodi Eminem exiis Hades Ituriel LoidForger M3GZ Metamine NegMePls Neo Nikko Nivea Nuck petrov Preaux Regorce Sacred Sakura SpartanHoplite Stranded Swiss TRID3NT


#10

M3GZ
M3GZ
    Offline
    341
    Rep
    1877
    Likes

    Your Friendly Coder

Posts: 1422
Threads: 244
Joined: Jul 14, 2020
Credits: 34

Three years registered
#10

Bump, if you can't wait for v4 to implement the newer auth system you should use this to limit certain parts of your program to certain usergroups :pog:


  • 0

Will be offline for a while, reach out on discord: _megz#1304

My Releases For Nulled | Out of Context Screenshots | Sig Space For Sale

873RjHi.gif

LTC - M8Yw6L1FPDcYhwjL4w9TTb2PwTX221dwB7   BTC - 3DNg251mYN7a4x9wxzsccHBDaVNsRUTvTr   ETH - 0x0711fCE2b1c52d95e459B1073B80Aa0285C42c6b

Best people (alphabetical)|Anna Brian Cat CEO cocaine Croconut Dad DratLoodi Eminem exiis Hades Ituriel LoidForger M3GZ Metamine NegMePls Neo Nikko Nivea Nuck petrov Preaux Regorce Sacred Sakura SpartanHoplite Stranded Swiss TRID3NT



 Users browsing this thread: