Emlalock Timed photo upload

Selfbondage software and other kinky developments

Moderators: Riddle, Shannon SteelSlave

Post Reply
s3lf_bound
*
Posts: 11
Joined: 06 May 2014, 05:46

Emlalock Timed photo upload

Post by s3lf_bound »

Hi All

I have written a Python script that will login to emlalock.com and upload your combination photo within a random time-frame. Could be fun to use this with your self-bondage so if you don't get out in time you risk being locked in chastity :) It can be set to configure a random lockup time using the provided photos. Each photo is named with the amount of days and when the script runs it chooses a random photo and configures emlalock with that time :) If you name a photo "lucky" it will not upload your combination photo. The combination photo must be named "Combo.png" and each time photo must be named with a number followed by an underscore. Max number of days you can use is 35. It only works with the linux command line so maybe someone on this forum and convert it to run on windows aswell.

Download Link
https://mega.co.nz/#!nxNlBQrZ!_rmABdCtQ ... hz6lp1TXuM

After the script successfully runs it opens the image it used to show your sentence :)

These photos should make it easier to understand.
emla_screenShot.png
photos.png
folder.png
emla_time.png

Voting is turned off and changes to voting add 50 weeks. All games are playable with the default settings and set to play with hours. Max time is set to 50 weeks. Everything else is at the defaults.
User avatar
Dark_Lizerd
*****
Posts: 2416
Joined: 22 Oct 2006, 11:30
Location: New Mexico

Re: Emlalock Timed photo upload

Post by Dark_Lizerd »

Looked at the code... looks easy to convert to at lease Basic...
But the web coding I am not experienced...
All advice is checked, re-checked and verified to be questionable...
Don't ask, we both wont understand the answer...
http://www.mediafire.com/download/09dtr ... e_V2_2.exe Not just for nubies any more...
User avatar
LoKiT
Retired Moderator
Posts: 372
Joined: 12 Apr 2010, 01:07

Re: Emlalock Timed photo upload

Post by LoKiT »

Dark_Lizerd wrote:Looked at the code... looks easy to convert to at lease Basic...
But the web coding I am not experienced...
I'm always a personally a bit a paranoid of any web based stuff that executes outside of a browser sandbox. However, besides the usually social pages and google analytical tracking the supports https which is always nice to see.

The program appears to be a client to a web based server. The magic between your machine and the web is a python module called mechanize. A sort of browser control interface.

Check out...

https://pypi.python.org/pypi/mechanize/
http://www.pythonforbeginners.com/cheat ... heat-sheet

Needs a little work in the user error checking department...

Code: Select all

Traceback (most recent call last):
  File "auto_upload_roulette.py", line 371, in <module>
    startScript(usingSafeWord, safeWord, chosenPhoto, username, password, numOfDays)
  File "auto_upload_roulette.py", line 70, in startScript
    br.form.add_file(open(comboPhoto[0]), 'text/plain', comboPhoto[0])
  File "/home/LoKit/Desktop/emla/mechanize/_form.py", line 2968, in add_file
    self.find_control(name, "file", id=id, label=label, nr=nr).add_file(
  File "/home/LoKit/Desktop/emla/mechanize/_form.py", line 3101, in find_control
    return self._find_control(name, type, kind, id, label, predicate, nr)
  File "/home/LoKit/Desktop/emla/mechanize/_form.py", line 3185, in _find_control
    raise ControlNotFoundError("no control matching "+description)
mechanize._form.ControlNotFoundError: no control matching type 'file'
LoKit@linux-nowere:~/Desktop/emla> 

I think it could easily be compiled into an exe for windows users.
Post Reply