mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
94 lines
2.9 KiB
Plaintext
94 lines
2.9 KiB
Plaintext
//By Carnwennan
|
|
//fetches an external list and processes it into a list of ip addresses.
|
|
//It then stores the processed list into a savefile for later use
|
|
#define TORFILE "data/ToR_ban.bdb"
|
|
#define TOR_UPDATE_INTERVAL 216000 //~6 hours
|
|
|
|
/proc/ToRban_isbanned(var/ip_address)
|
|
var/savefile/F = new(TORFILE)
|
|
if(F)
|
|
if( ip_address in F.dir )
|
|
return 1
|
|
return 0
|
|
|
|
/proc/ToRban_autoupdate()
|
|
var/savefile/F = new(TORFILE)
|
|
if(F)
|
|
var/last_update
|
|
F["last_update"] >> last_update
|
|
if((last_update + TOR_UPDATE_INTERVAL) < world.realtime) //we haven't updated for a while
|
|
ToRban_update()
|
|
return
|
|
|
|
/proc/ToRban_update()
|
|
spawn(0)
|
|
log_world("Downloading updated ToR data...")
|
|
var/http[] = world.Export("https://check.torproject.org/exit-addresses")
|
|
|
|
var/list/rawlist = world.file2list(http["CONTENT"])
|
|
if(rawlist.len)
|
|
fdel(TORFILE)
|
|
var/savefile/F = new(TORFILE)
|
|
for( var/line in rawlist )
|
|
if(!line) continue
|
|
if( copytext(line,1,12) == "ExitAddress" )
|
|
var/cleaned = copytext(line,13,length(line)-19)
|
|
if(!cleaned) continue
|
|
F[cleaned] << 1
|
|
F["last_update"] << world.realtime
|
|
log_world("ToR data updated!")
|
|
if(usr)
|
|
to_chat(usr, span_filter_adminlog("ToRban updated."))
|
|
return
|
|
log_world("ToR data update aborted: no data.")
|
|
return
|
|
|
|
/client/proc/ToRban(task in list("update","toggle","show","remove","remove all","find"))
|
|
set name = "ToRban"
|
|
set category = "Server.Config"
|
|
if(!check_rights_for(src, R_HOLDER)) return
|
|
switch(task)
|
|
if("update")
|
|
ToRban_update()
|
|
if("toggle")
|
|
if(config)
|
|
if(CONFIG_GET(flag/ToRban))
|
|
CONFIG_SET(flag/ToRban, FALSE)
|
|
message_admins(span_red("ToR banning disabled."))
|
|
else
|
|
CONFIG_SET(flag/ToRban, TRUE)
|
|
message_admins(span_green("ToR banning enabled."))
|
|
if("show")
|
|
var/savefile/F = new(TORFILE)
|
|
var/dat
|
|
if( length(F.dir) )
|
|
for( var/i=1, i<=length(F.dir), i++ )
|
|
dat += "<tr><td>#[i]</td><td> [F.dir[i]]</td></tr>"
|
|
dat = "<table width='100%'>[dat]</table>"
|
|
else
|
|
dat = "No addresses in list."
|
|
|
|
var/datum/browser/popup = new(src, "ToRban_show", "Torban")
|
|
popup.set_content(dat)
|
|
popup.open()
|
|
|
|
if("remove")
|
|
var/savefile/F = new(TORFILE)
|
|
var/choice = tgui_input_list(src,"Please select an IP address to remove from the ToR banlist:","Remove ToR ban", F.dir)
|
|
if(choice)
|
|
F.dir.Remove(choice)
|
|
to_chat(src, span_filter_adminlog(span_bold("Address removed")))
|
|
if("remove all")
|
|
to_chat(src, span_filter_adminlog(span_bold("[TORFILE] was [fdel(TORFILE)?"":"not "]removed.")))
|
|
if("find")
|
|
var/input = tgui_input_text(src,"Please input an IP address to search for:","Find ToR ban",null)
|
|
if(input)
|
|
if(ToRban_isbanned(input))
|
|
to_chat(src, span_filter_adminlog("[span_orange(span_bold("Address is a known ToR address"))]"))
|
|
else
|
|
to_chat(src, span_filter_adminlog(span_danger("Address is not a known ToR address")))
|
|
return
|
|
|
|
#undef TORFILE
|
|
#undef TOR_UPDATE_INTERVAL
|