Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Potential impact of resetting ColdFusion admin password

Tags:

coldfusion

It seems there is a way to reset the Admin password for a ColdFusion installation. What are the potential pitfalls to be aware of before doing so?

like image 532
Larsenal Avatar asked Jan 24 '23 00:01

Larsenal


1 Answers

Generally very few pitfalls to changing the password.

Changing the -- I'm assuming in your case -- only password for ColdFusion Administrator will have the following impact:

  1. Prevent anyone else who has the password from accessing the Administrator (duh!)
  2. Break any code that uses the adminapi to programmatically control datasources, mappings, etc.

The first is probably not much of a concern I'm assuming.

The second probably only a small concern. Very few ColdFusion applications use the adminapi since its easier to use the GUI admin! If you do a search on the code for "adminapi" you can find out if it will effect your applications.

like image 193
Sam Farmer Avatar answered Jan 31 '23 01:01

Sam Farmer