08-27-2007, 01:24 AM
Basically, I think MyBB should have something similar to PunBB's feature: http://netfusion.new21.net/punbb/faq.html#BAD_REFERER
It seems possible that someone could easily send a moderator/administrator to a page such that a thread, for example, could get deleted, eg:
del.html
gohere.html
What do you think?
It seems possible that someone could easily send a moderator/administrator to a page such that a thread, for example, could get deleted, eg:
del.html
Code:
<html><body onLoad="document.forms[0].submit()">
<form action="<board URL>/moderation.php" method="post">
<input type="hidden" name="action" value="do_deletethread" />
<input type="hidden" name="tid" value="<TID Number>" />
</form>
</body></html>Code:
<html><body><iframe src="del.html" style="display: none;"></iframe>
<iframe src="<Some interesting webpage>" style="width: 100%; height: 100%; border: 0"></iframe>
</body></html>What do you think?