mirror of
https://git.0x0.st/mia/0x0.git
synced 2024-11-09 11:48:59 -05:00
Add support for upload IP blacklists
The format is one address per line, with # used for comments.
This commit is contained in:
parent
714de58180
commit
462555d532
1 changed files with 16 additions and 0 deletions
16
fhost.py
16
fhost.py
|
@ -42,6 +42,8 @@ app.config["FHOST_MIME_BLACKLIST"] = [
|
||||||
"application/java-vm"
|
"application/java-vm"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
app.config["FHOST_UPLOAD_BLACKLIST"] = "tornodes.txt"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
mimedetect = Magic(mime=True, mime_encoding=False)
|
mimedetect = Magic(mime=True, mime_encoding=False)
|
||||||
except:
|
except:
|
||||||
|
@ -121,7 +123,21 @@ def shorten(url):
|
||||||
|
|
||||||
return geturl(u.getname())
|
return geturl(u.getname())
|
||||||
|
|
||||||
|
def in_upload_bl(addr):
|
||||||
|
if os.path.isfile(app.config["FHOST_UPLOAD_BLACKLIST"]):
|
||||||
|
with open(app.config["FHOST_UPLOAD_BLACKLIST"], "r") as bl:
|
||||||
|
check = addr.lstrip("::ffff:")
|
||||||
|
for l in bl.readlines():
|
||||||
|
if not l.startswith("#"):
|
||||||
|
if check == l.rstrip():
|
||||||
|
return True
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
def store_file(f, addr):
|
def store_file(f, addr):
|
||||||
|
if in_upload_bl(addr):
|
||||||
|
return "Your host is blocked from uploading files.\n", 451
|
||||||
|
|
||||||
data = f.stream.read()
|
data = f.stream.read()
|
||||||
digest = sha256(data).hexdigest()
|
digest = sha256(data).hexdigest()
|
||||||
existing = File.query.filter_by(sha256=digest).first()
|
existing = File.query.filter_by(sha256=digest).first()
|
||||||
|
|
Loading…
Reference in a new issue