Darkorbit account checker v1.6 (uridium and credits)

06/28/2018 21:55 Faplord-#1
This is a account checker for darkorbit
This program logs into your account and checks the amout of uridium and credits.


Very useful for people with alot of accounts and selling accounts
Can run as many accounts as you want. I use it for 20 accounts and its really good


Video of the Program in action:

Link to the download of the program:
[Only registered and activated users can see links. Click Here To Register...]

Virustotal:
[Only registered and activated users can see links. Click Here To Register...]

It says 7/67 virus but its completly safe to use. Im not even skilled enough to plant viruses etc.

This was made mostly by me but Robelon(@rockstar.ashish26) helped me alot. Special thanks <3

If you find any "bugs" please contact me.
The "remove account" dont work :kappa:
my first ever code/program pls no hate :kappa:

Enjoy :)
06/28/2018 22:28 rockstar.ashish26#2
Will add more features later!
Planned:
save login
complete account statistics
background
faster requests
account overview

Suggestions are welcome!
06/29/2018 17:22 Faplord-#3
For everyone thinking this programs steals your account information you are completly wrong, I can send the source code to anyone willing to look themself.
06/29/2018 19:09 Freshek#4
Quote:
Originally Posted by Faplord- View Post
For everyone thinking this programs steals your account information you are completly wrong, I can send the source code to anyone willing to look themself.
Why not release it under some open-source license (preferably GNU GPLv3) on GitLab/BitBucket?
06/29/2018 19:13 mrdj67#5
Quote:
Originally Posted by Faplord- View Post
For everyone thinking this programs steals your account information you are completly wrong, I can send the source code to anyone willing to look themself.
Weren't you banned from epvp not too long ago (omegalul)?
06/30/2018 13:50 rockstar.ashish26#6
Quote:
Originally Posted by Freshek View Post
Why not release it under some open-source license (preferably GNU GPLv3) on GitLab/BitBucket?
planning to add few features and then end support to it and opensource it!

Quote:
Originally Posted by mrdj67 View Post
Weren't you banned from epvp not too long ago (omegalul)?
if being banned mattered soo much than contribution to the community i would make over a thousand accounts and contribute again even if i get banned!:)
06/30/2018 19:29 mrdj67#7
Quote:
Originally Posted by rockstar.ashish26 View Post
planning to add few features and then end support to it and opensource it!



if being banned mattered soo much than contribution to the community i would make over a thousand accounts and contribute again even if i get banned!:)
Just seems strange that someone who's banned suddenly comes back on a new account and releases an 'account checker'. Given the circumstances and the supposed willingness to share the source code, I'd advise just putting it on Github as Freshek has said if there's nothing to hide.
06/30/2018 21:38 Faplord-#8
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
import sys, os
import subprocess as sp
import tkinter as tk
import time


from tkinter import *

if "chromedriver" not in os.environ:
newPath = os.path.realpath("chromedriver.exe")
sys.path.append(newPath)


width = 400
height = 300
global counter
global UsrPwn
UsrPwn = []
counter = 0

class Window(Frame):


def __init__(self, master=None):
Frame.__init__(self, master)
self.master = master
self.init_window()

#Creation of init_window
def init_window(self):

# changing the title of our master widget
self.master.title("GUI")

# allowing the widget to take the full space of the root window
self.pack(fill=BOTH, expand=1)


def logIn():
def returnUser():
print(a.get())
if len(a.get()) != 0 and len(b.get()) != 0:
global UsrPwn
UsrPwn.append([a.get(), b.get()])
T = Text(self, height=2, width=30)
T.pack()
global counter
T.place(x=45, y=(7 + counter))
counter += 50
T.insert(END, "username: " + UsrPwn[-1][0] + "\npassword: " + UsrPwn[-1][1])
window.destroy
window = tk.Toplevel(root)
window.geometry('200x100')
a = tk.Entry(window, text="username")
b = tk.Entry(window, text="pass")
c = Button(window, text="add account", command=returnUser)
a.pack()
b.pack()
c.pack()

# creating a button instance
quitButton = Button(self, text="Exit", command=root.destroy)
PlussButton = Button(self, text="Add account", command=logIn)
MinusButton = Button(self, text="Remove account", command=root.destroy)
global UsrPwn
def startcheck():
def check(usernamestr, passwordstr):

browser = webdriver.Chrome()

browser.get(('https://darkorbit.com/'))

username = browser.find_element_by_id('bgcdw_login_form_usern ame')
username.send_keys(usernamestr)

password = browser.find_element_by_id('bgcdw_login_form_passw ord')
password.send_keys(passwordstr)
password.send_keys(Keys.RETURN)

logged_in_page = browser.page_source

uridium_tag = "User.Parameters"
position = logged_in_page.find(uridium_tag)
uridium_amount = logged_in_page[position + 31:position + 100]
new = uridium_amount.split(",")
uridium = ''.join(x for x in new[0] if x.isdigit())
credit = ''.join(x for x in new[1] if x.isdigit())
PATH = r"\Users\Kristoffer\Desktop\test\uridium_accoun t"

text_file = open(PATH, "r+")
text_string = text_file.read()
wantToWrite = text_string + usernamestr + ": uridium: %s credit: %s " % (uridium, credit) + "\n"
open(PATH, "w").close()
if usernamestr in text_string:
position = text_string.find(usernamestr)
new_string = text_string[position:len(wantToWrite)]
old_string = text_string[position:len(wantToWrite)]
text_string.replace(old_string, new_string)
text_file.write(text_string)
else:
text_file.write(text_string + wantToWrite)

browser.close()

global UsrPwn
for element in UsrPwn:
check(element[0],element[1])
check = Button(self, text="check all", command=startcheck)
# placing the button on my window
quitButton.place(x=5, y=5)
PlussButton.place(x=3*width / 4, y=5)
MinusButton.place(x=3*width / 4, y=35)
check.place(x=3*width / 4, y=65)

root = Tk()

#size of the window
root.geometry(str(width) + "x" + str(height))

app = Window(root)
root.mainloop()

#display hide

There is the source for the code, idk how to do stuff with github. (too lazy to make acc)
This program is coded in python.
06/30/2018 23:32 vokovl#9
11 метров, это изделие?? что за бред
07/02/2018 11:50 PNTX#10
aaaaaaaaaand he is gone.
07/02/2018 14:31 Scytex#11
Thread creator is banned.

#closed for now