redis-web-brasilseg.prod.audsat.io Open in urlscan Pro
129.151.36.19  Public Scan

URL: https://redis-web-brasilseg.prod.audsat.io/
Submission: On October 20 via manual from US — Scanned from DE

Form analysis 13 forms found in the DOM

POST login

<form action="login" method="POST" id="addServerForm" class="form-vertical">
  <label for="label">Display-Name</label>
  <input type="text" name="label" id="label" value="" class="span6" required="">
  <div class="control-group">
    <label class="control-label" for="serverType">Server Type</label>
    <div class="controls">
      <select id="serverType" name="serverType">
        <option value="redis">Standalone Redis-Server</option>
        <option value="sentinel">Sentinel</option>
        <!--option value="cluster">Cluster</option-->
      </select>
    </div>
  </div>
  <div id="addServerGroupRedis">
    <label for="hostname">Hostname or Unix Socket Path</label>
    <input type="text" name="hostname" id="hostname" value="localhost" class="span6" required="">
    <label for="port">Port</label>
    <input type="number" name="port" id="port" value="6379">
  </div>
  <div id="addServerGroupSentinel">
    <label for="sentinelName">Sentinel Group Name</label>
    <input type="text" name="sentinelName" id="sentinelName" value="mymaster" class="span6" required="">
    <label for="sentinels">List of sentinels</label>
    <input type="text" name="sentinels" id="sentinels" value="localhost:26379" class="span6" required="">
    <div>Add comma-separated list of sentinels with "host-1:port,host-2 ..."</div>
    <br>
    <label class="radio inline">
      <input type="radio" name="sentinelPWType" value="none" checked=""> No password </label>
    <label class="radio inline">
      <input type="radio" name="sentinelPWType" value="redis"> Same as Redis server </label>
    <label class="radio inline">
      <input type="radio" name="sentinelPWType" value="sentinel"> Explicit Sentinel password </label>
    <label for="sentinelPassword" class="muted">Password for Sentinels</label>
    <input type="password" name="sentinelPassword" id="sentinelPassword" value="" class="span6" disabled="">
    <hr style="margin-right: 24px">
  </div>
  <label for="password">Redis Server Password</label>
  <input type="password" name="password" id="password" value="" class="span6">
  <label for="dbIndex">Database Index</label>
  <input type="number" name="dbIndex" id="dbIndex" value="0" required="">
  <label for="usetls">UseTLS <input type="checkbox" name="usetls" id="usetls" class="checkbox-oneline"></label>
</form>

POST apiv2/list/value/add

<form id="addListValueForm" action="apiv2/list/value/add" method="POST" class="form-vertical label-big">
  <input id="key" name="key" type="hidden">
  <label class="radio inline">
    <input id="typeLpush" type="radio" name="type" value="lpush" checked="checked"> LPUSH </label>
  <label class="radio inline">
    <input id="typeRpush" type="radio" name="type" value="rpush"> RPUSH </label>
  <br>
  <label class="control-label lead" for="addListValue">Value</label>
  <textarea id="addListValue" name="value" class="modal-content-width" style="height: 250px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="addListValueIsJson" name="isJson">Validate as JSON</label>
  <input id="addListConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/set/member/add

<form id="addSetMemberForm" action="apiv2/set/member/add" method="POST" class="form-vertical label-big">
  <input id="addSetKey" name="key" type="hidden">
  <label class="control-label lead" for="addSetMemberName">Member</label>
  <textarea id="addSetMemberName" name="value" class="modal-content-width" style="height: 250px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="addSetMemberIsJson" name="isJson">Validate as JSON</label>
  <input id="addSetConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/zset/member/add

<form id="addZSetMemberForm" action="apiv2/zset/member/add" method="POST" class="form-vertical">
  <input id="addZSetKey" name="key" type="hidden">
  <label class="control-label" for="addZSetScore">Score</label>
  <input id="addZSetScore" name="score" type="text">
  <label class="control-label" for="addSetMemberName">Value</label>
  <textarea id="addZSetMemberName" name="value" class="modal-content-width" style="height: 250px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="addZSetMemberIsJson" name="isJson">Validate as JSON</label>
  <input id="addZSetConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/xset/member/add

<form id="addXSetMemberForm" action="apiv2/xset/member/add" method="POST" class="form-vertical">
  <input id="addXSetKey" name="key" type="hidden">
  <label class="control-label" for="addXSetTimestamp">Timestamp (current browser time; put <strong>*</strong> to let Redis auto-generate)</label>
  <input id="addXSetTimestamp" name="timestamp" type="text">
  <label class="control-label" for="addXSetField">Field</label>
  <textarea id="addXSetField" name="field" class="modal-content-width" style="height: 50px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="addXSetFieldIsJson" name="isJson">Validate as JSON</label>
  <label class="control-label" for="addXSetValue">Value</label>
  <textarea id="addXSetValue" name="value" class="modal-content-width" style="height: 150px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="addXSetValueIsJson" name="isJson">Validate as JSON</label>
  <input id="addXSetConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/hash/field/add

<form id="addHashFieldForm" action="apiv2/hash/field/add" method="POST" class="form-vertical">
  <input id="addHashKey" name="key" type="hidden">
  <label class="control-label" for="addHashFieldName">Field</label>
  <input id="addHashFieldName" name="field" type="text" class="modal-content-width">
  <label class="control-label" for="addHashFieldValue">Value</label>
  <textarea id="addHashFieldValue" name="value" class="modal-content-width" style="height: 250px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="addHashFieldIsJson" name="isJson">Validate as JSON</label>
  <input id="addHashConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/zset/member/edit

<form id="editZSetMemberForm" action="apiv2/zset/member/edit" method="POST" class="form-vertical">
  <label class="control-label" for="zSetKey">Key</label>
  <input id="zSetKey" name="key" type="text" class="modal-content-width" readonly="">
  <label class="control-label" for="zSetScore">Score</label>
  <input id="zSetScore" name="score" type="text">
  <label class="control-label" for="zSetValue">Value</label>
  <textarea id="zSetValue" name="value" class="modal-content-width" style="height: 150px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="zSetValueIsJson" name="isJson">Validate as JSON</label>
  <input id="zSetOldValue" name="oldValue" type="hidden">
  <input id="zSetConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/set/member/edit

<form id="editSetMemberForm" action="apiv2/set/member/edit" method="POST" class="form-vertical">
  <input id="setKey" name="key" type="hidden">
  <label class="control-label" for="setOldMember">Member</label>
  <input id="setOldMember" name="oldValue" type="text" class="modal-content-width" readonly="">
  <label class="control-label" for="setMember">Updated Member</label>
  <textarea id="setMember" name="value" class="modal-content-width" style="height: 150px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="setMemberIsJson" name="isJson">Validate as JSON</label>
  <input id="setConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/list/value/edit

<form id="editListValueForm" action="apiv2/list/value/edit" method="POST" class="form-vertical">
  <label class="control-label" for="listKey">Key</label>
  <input id="listKey" name="key" type="text" class="modal-content-width" readonly="">
  <label class="control-label" for="listIndex">Index</label>
  <input id="listIndex" name="index" type="text" readonly="">
  <label class="control-label" for="listValue">Value</label>
  <textarea id="listValue" name="value" class="modal-content-width" style="height: 220px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="listValueIsJson" name="isJson">Validate as JSON</label>
  <input id="editListConnectionId" name="connectionId" type="hidden">
</form>

POST apiv2/key/

<form id="addKeyForm" action="apiv2/key/" method="POST" class="form-vertical">
  <div class="control-group">
    <label class="control-label" for="keyValue">Key</label>
    <div class="controls">
      <input id="keyValue" type="text" value="" class="modal-content-width">
    </div>
  </div>
  <div class="control-group">
    <label class="control-label" for="keyType">Type</label>
    <div class="controls">
      <select id="keyType" name="keyType">
        <option value="string">String</option>
        <option value="list">List</option>
        <option value="set">Set</option>
        <option value="zset">Sorted Set</option>
        <option value="hash">Hash</option>
        <option value="stream">Stream</option>
      </select>
    </div>
  </div>
  <span id="timestampWrap" class="control-group">
    <label class="control-label" for="keyTimestamp">Timestamp</label>
    <input id="keyTimestamp" name="keyTimestamp" class="input-mini span2" type="text" value="*">
  </span>
  <span id="scoreWrap" class="control-group">
    <label class="control-label" for="keyScore">Score</label>
    <input id="keyScore" name="keyScore" class="input-mini" type="text">
  </span>
  <span id="fieldWrap" class="control-group">
    <label class="control-label" for="newFieldName">Field</label>
    <input id="newFieldName" name="fieldName" class="modal-content-width" type="text">
  </span>
  <div class="control-group" style="display:inline;">
    <div class="controls">
    </div>
  </div>
  <span id="fieldValueWrap" class="control-group">
    <label class="control-label" for="newFieldValue">Field</label>
    <textarea id="newFieldValue" name="fieldValue" class="modal-content-width" style="height: 200px;"></textarea>
    <label class="checkbox"><input type="checkbox" id="addKeyFieldIsJson" name="isJson">Validate as JSON</label>
  </span>
  <label class="control-label" for="newStringValue">Value</label>
  <textarea id="newStringValue" name="stringValue" class="modal-content-width" style="height: 200px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="addKeyValueIsJson" name="isJson">Validate as JSON</label>
  <input id="addKeyConnectionId" type="hidden" value="">
</form>

PATCH apiv2/key/

<form id="renameKeyForm" action="apiv2/key/" method="PATCH" class="form-vertical">
  <div class="control-group">
    <label class="control-label">Current Key</label>
    <div><label><span id="currentKeyNameDisplay" class="modal-content-width uneditable-input"></span></label></div>
    <input id="currentKeyName" type="hidden" value="">
  </div>
  <div class="control-group">
    <label class="control-label" for="renamedKeyName">New Key</label>
    <div class="controls">
      <input id="renamedKeyName" type="text" value="" class="modal-content-width">
    </div>
  </div>
  <input id="renameKeyConnectionId" type="hidden" value="">
  <label class="checkbox"><input type="checkbox" id="forceRenameKey" name="forceRenameKey">Overwrite if new key name already exists</label>
</form>

POST apiv2/hash/field/edit

<form id="editHashFieldForm" action="apiv2/hash/field/edit" method="POST" class="form-vertical">
  <label class="control-label" for="hashKey">Key</label>
  <input id="hashKey" name="key" type="text" class="modal-content-width" readonly="">
  <label class="control-label" for="hashField">Field</label>
  <input id="hashField" name="field" type="text" class="modal-content-width" readonly="">
  <label class="control-label" for="hashFieldValue">Value</label>
  <textarea id="hashFieldValue" name="value" class="modal-content-width" style="height: 200px;"></textarea>
  <label class="checkbox"><input type="checkbox" id="hashFieldIsJson" name="isJson">Validate as JSON</label>
  <input id="hashConnectionId" name="connectionId" type="hidden">
</form>

<form id="signinForm" class="form-vertical">
  <div class="modal-body">
    <div class="form-group">
      <label for="signinUsername">Username:</label>
      <input type="text" class="form-control" id="signinUsername" autofocus="">
    </div>
    <div class="form-group">
      <label for="signinPassword">Password:</label>
      <input type="password" class="form-control" id="signinPassword">
    </div>
  </div>
  <div class="modal-footer">
    <button id="signinButton" type="submit" class="btn btn-primary" data-loading-text="<i class='icon-refresh'></i> Signing-In...">Sign In</button>
  </div>
</form>

Text Content

Refresh Commands
More...
 * Refresh All Nodes
 * Refresh + Expand All Nodes
 * Import
 * Export
 * Add Server





Current Server:

Open in new window ×
test
×


ADD A CONNECTION

Display-Name
Server Type
Standalone Redis-Server Sentinel
Hostname or Unix Socket Path Port
Sentinel Group Name List of sentinels
Add comma-separated list of sentinels with "host-1:port,host-2 ..."

No password Same as Redis server Explicit Sentinel password Password for
Sentinels

--------------------------------------------------------------------------------

Redis Server Password Database Index UseTLS
Close Find Used DB Connect...
×


SELECT DATABASES TO CONNECT


Close Connect...
×


ADD VALUE

LPUSH RPUSH
Value Validate as JSON
Close Save
×


ADD MEMBER

Member Validate as JSON
Close Save
×


ADD MEMBER

Score Value Validate as JSON
Close Save
×


ADD ENTRY

Timestamp (current browser time; put * to let Redis auto-generate) Field
Validate as JSON Value Validate as JSON
Close Save
×


ADD FIELD

Field Value Validate as JSON
Close Save
×


EDIT SET MEMBER

Key Score Value Validate as JSON
Close Remove Element Save
×


EDIT SET MEMBER

Member Updated Member Validate as JSON
Close Remove Member Save
×


EDIT ROW

Key Index Value Validate as JSON
Close Remove Element Save
×


ADD KEY

Key

Type
String List Set Sorted Set Hash Stream
Timestamp Score Field

Field Validate as JSON Value Validate as JSON
Close Save
×


RENAME KEY

Current Key

New Key

Overwrite if new key name already exists
Close Save
×


EDIT HASH FIELD

Key Field Value Validate as JSON
Close Remove Field Save


SIGN IN

Username:
Password:
Sign In