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

Jump to content



Photo

[FREE] NULLED.TO AUTOBUMPER | WORKING IN 2022 | SOURCE CODE INCLUDED [STOP PAYING BUMPING SLAVES]


  • Please log in to reply
[FREE] NULLED.TO AUTOBUMPER | WORKING IN 2022 | SOURCE CODE INCLUDED [STOP PAYING BUMPING SLAVES]

#1

Sic58
Sic58
    Offline
    176
    Rep
    509
    Likes

    sngen.xyz

Posts: 839
Threads: 134
Joined: Oct 30, 2019
Credits: 0

Four years registered
#1

Since I likes facts and not words.

 

I'm releasing my new nulled.to threads auto-bumper for FREE.

 

It will automatically bump your thread, with a specific comment that you want, you can run it in the background, it will run automatically.

 

You need to configure it in config.txt , open README.txt for more infos.

 

You can see it in action here:

 

https://imgur.com/0zLZEn0

 

Download link:

 

 

If you don't trust it you can check the source code here,

Bot is written in Python, you're free to use this version:

 

 

I'm not inserting more that 1 thread and I'm not helping you with error, this is a free job.

 

If you want a better version of it with more threads and more features

contact me on Discord Sic#8237


  • 3

#2

Cherry
Cherry
    Online
    995
    Rep
    1411
    Likes

    :amen:

Posts: 1491
Threads: 342
Joined: Jul 24, 2019
Credits: 1

Four years registered
#2

I saw my name in the chat in your demo :pepolove:


  • 1

PRIVATEALPS.NET - Uncensored Hosting Services - Dedicated Servers - TOR Friendly - DMCA Ignored

9Oq6tka.gif

till 26/05/24

yjlGxQP.gif
till 03/07/24

LDMEYEK.gif


#3

AnXiezY
AnXiezY
    Offline
    534
    Rep
    253
    Likes

    Dark Paradise

Posts: 533
Threads: 18
Joined: Apr 19, 2015
Credits: 4

Eight years registered
#3

Since you think it's so easy, why don't you code one?


  • 1

LDMEYEK.gif


#4

dronf4546
dronf4546
    Offline
    0
    Rep
    1
    Likes

    Advanced Member

Posts: 98
Threads: 0
Joined: Jan 17, 2022
Credits: 0
Two years registered
#4

thx


  • 0

#5

severnake
severnake
    Offline
    0
    Rep
    2
    Likes

    Addicted

Posts: 210
Threads: 0
Joined: Aug 25, 2016
Credits: 0

Seven years registered
#5

thanks


  • 0

#6

FNFA
FNFA
    Offline
    237
    Rep
    569
    Likes

    Be kind to everyone :comfy: (sometimes i say kys)

Posts: 1989
Threads: 531
Joined: Jun 15, 2022
Credits: 19

One year registered
#6

Need this


 

 


  • 0

#7

juldeptrai
juldeptrai
    Offline
    0
    Rep
    1
    Likes

    Lurker

Posts: 9
Threads: 0
Joined: Aug 05, 2022
Credits: 0
One year registered
#7

 

Since I likes facts and not words.

 

I'm releasing my new nulled.to threads auto-bumper for FREE.

 

It will automatically bump your thread, with a specific comment that you want, you can run it in the background, it will run automatically.

 

You need to configure it in config.txt , open README.txt for more infos.

 

You can see it in action here:

 

https://imgur.com/0zLZEn0

 

Download link:

 

 

 

If you don't trust it you can check the source code here,

Bot is written in Python, you're free to use this version:

 

 

 

I'm not inserting more that 1 thread and I'm not helping you with error, this is a free job.

 

If you want a better version of it with more threads and more features

contact me on Discord Sic#8237

 

zzzz


  • 0

#8

Dzokee
Dzokee
    Offline
    12
    Rep
    293
    Likes

    Methods Distributor

Posts: 667
Threads: 110
Joined: May 07, 2022
Credits: 0

One year registered
#8

Thank you very much i really need this


  • 0

1GtKiXc.gif

Selling 2nd Signature Space
Discord:Dzoke#3307


#9

kentus555
kentus555
    Offline
    14
    Rep
    12
    Likes

    Advanced Member

Posts: 75
Threads: 6
Joined: Jun 30, 2021
Credits: 0

Two years registered
#9

Thank you very much i really need this

How did you download it? If "The file you are looking for does not exist!"


  • 1

#10

Sic58
Sic58
    Offline
    176
    Rep
    509
    Likes

    sngen.xyz

Posts: 839
Threads: 134
Joined: Oct 30, 2019
Credits: 0

Four years registered
#10

How did you download it? If "The file you are looking for does not exist!"

 

Thanks for reporting it!

Unfortunatelly I don't have an .exe version anymore, here is the source code, it's very basic, hope I've helped you

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.action_chains import ActionChains
import time
import warnings
import sys


warnings.filterwarnings("ignore", category=DeprecationWarning)

#Website url
nulled_url = "https://www.nulled.to/index.php?app=core&module=global&section=login"

#Get all the info from the configuration file
with open('config.txt') as config:
    line = config.readlines()
    full_username = line[1]
    username = full_username[9:]
    full_password = line[2]
    password = full_password[9:]
    full_time_duration = line[4]
    time_duration = full_time_duration[5:]
    effective_time = int(time_duration)*3600
    full_t_url = line[-1]
    t_url = full_t_url[11:]
    full_text = line[-3]
    text = full_text[5:]
#BOT starting...
print(" ################################################################ ")
print(" #                      Nulled.to autobumber                    # ")
print(" #                  Coded by Sic58 for Nulled.to                # ")
print(" #              Remember is bump is allowed every 24H     v.1.0 #")
print(" ################################################################ ")
print("Welcome " + username)
print("Starting the bot...")
time.sleep(2)

#Prevent ban
if int(time_duration) < 24:
    print("Bump is allowed only every 24H")
    print("Change the value time in config.txt to at least 24")
    sys.exit()
else:
    print("Bot started successfully...")
    time.sleep(1)

#Bumping cycle
while True:
    print("Start bumping your post")
    # Go to n.to
    driver = webdriver.Chrome("chromedriver.exe")
    driver.get(nulled_url)
    # Make login
    actions = ActionChains(driver)
    actions.send_keys(username)
    actions.perform()
    alert = driver.switch_to.alert
    time.sleep(1)
    alert.accept()
    time.sleep(1)
    actions.send_keys(Keys.TAB)
    actions.perform()
    time.sleep(1)
    actions.send_keys(password)
    actions.perform()
    time.sleep(1)
    actions.send_keys(Keys.ENTER)
    actions.perform()
    time.sleep(0.5)

    # Go to the topic
    driver.get(t_url)
    time.sleep(2)

    # Click on the box and insert text
    writing_box = driver.find_element_by_class_name("cke_browser_webkit")
    actions = ActionChains(driver)
    actions.click(writing_box).perform()
    time.sleep(2)
    actions.send_keys(text)
    actions.perform()

    # Reply to the topic
    submit = driver.find_element_by_id("submit_post")
    # actions = ActionChains(driver)
    # actions.click(submit).perform()
    time.sleep(5)

    # Close Chrome
    driver.close()
    print("Post bumped with the text: " + text)

    #Wait
    print("Waiting...")
    time.sleep(effective_time)

Call it config.txt

#Insert your n.to account details | don't leave blank spaces, replace YourUsername and YourPassword with your n.to details
username=Sic58
password=YOUR PASSWORD
#Write time in h to wait | Remember bumping is allowed every 24H
time=24
#Text to post
text=WRITE HERE YOUR TEXT
#Threads link
thread_url=https://www.nulled.to/topic/yourtopic/

  • 2


 Users browsing this thread: