On the Adobe Connect central page, click Administration > Account > More Settings.
- Adobe Connect User Guide
- Introduction
- Adobe Connect Meeting
- Start, attend, and manage Adobe Connect meetings and sessions
- Host and Presenter Area in Adobe Connect
- Adobe Connect application for desktop
- Adobe Connect pre-meeting diagnostic test
- Adobe Connect Central home page
- Share content during a session
- Update and manage Adobe Connect meetings
- View meeting reports and analytics data
- Work with Pods
- Accessibility features in Adobe Connect
- Keyboard shortcuts in Adobe Connect
- Create virtual meeting rooms and arrange layouts
- Breakout rooms in Adobe Connect meetings
- Manage meeting attendees in Adobe Connect
- Start, attend, and manage Adobe Connect meetings and sessions
- Adobe Connect administration and maintenance
- Enabling Adobe Connect HTML client
- Enabling single sign-on in Adobe Connect
- Change the timeout period
- Configure audio providers for Universal Voice
- Create and import users and groups in Adobe Connect
- Enhance Adobe Connect account security
- Generate usage reports in Adobe Connect Central
- Administer and manage Adobe Connect accounts
- Manage users and groups
- Set permissions for library files and folders
- Back up user data, database, and settings of Adobe Connect server
- Build custom reports from the Adobe Connect database
- Maintain disk space and clean cache on an Adobe Connect server
- Manage and monitor Adobe Connect server logs
- Start and stop Adobe Connect services
- Adobe Connect Events
- Adobe Connect Training and Seminars
- About Adobe Connect courses and curriculum for training
- Conduct trainings with Adobe Connect
- Create and manage seminars
- Create training courses in Adobe Connect
- Create and manage training curriculum in Adobe Connect
- About Virtual Classrooms in Adobe Connect
- Adobe Connect reports to monitor training features
- Participate in Adobe Connect training sessions and meetings
- Closed captioning in Adobe Connect
- Audio and video conferencing in Adobe Connect
- Manage user content in Adobe Connect
Adobe Connect administrators can turn on and enforce secure HTTPS connections to boost the security of their servers.
Adobe Connect administrators can enhance the security of their account from the Administration tab.
Click Administration > Account > More Settings.
Select Requires SSL Connection (RTMPS), so Adobe Connect enforces the use of RTMPS protocol.
Select Enable Enhanced Security, to force Web Services APIs to use secure (HTTPS) connection and generate new session identifier after successful login.
Note: Adobe recommends checking Enhanced Security option.
-
Follow the steps below:
1. After you authenticate, the following cookies are generated:
- BREEZESESSION as the main Connect session cookie
- BreezeCCookie as the CSRF cookie, based on the Connect session cookie
2. Call the common-info API to get the CSRF token corresponding to the CSRF cookie (BreezeCCookie).
- the CSRF token is returned as <OWASP_CSRFTOKEN><token>...........</token></OWASP_CSRFTOKEN>
3. Send all subsequent HTTP GET API calls that change state with the BreezeCCookie as a cookie and a OWASP_CSRFTOKEN. For example:
https://\[SERVER_URL\]/api/xml?action=\[state changing action\]&........&OWASP_CSRFTOKEN=[token_extracted_above]
4. For integrations that call single or multiple XML APIs via a single HTTP POST method, send the OWASP_CSRFTOKEN (along with the BreezeCCookie CSRF cookie), as shown below:
<actions mode='...' OWASP_CSRFTOKEN=[token_extracted_above]>