UNPKG

node-red-node-anyrun

Version:

[Node-RED](https://nodered.org/) nodes to retrieve malware analysis results from anyrun.

45 lines (40 loc) 1.47 kB
<!-- Copyright JS Foundation and other contributors, http://js.foundation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <script type="text/x-red" data-template-name="anyrun server"> <div class="form-row"> <label for="node-config-input-username"><i class="icon-tag"></i>Username</label> <input type="text" id="node-config-input-username"> </div> <div class="form-row"> <label for="node-config-input-password"><i class="fa fa-globe"></i>Password</label> <input type="password" id="node-config-input-password"> </div> </script> <script type="text/javascript"> RED.nodes.registerType('anyrun server', { category: 'config', defaults: { username: { value: "", required: true }, password: { value: "", required: true } }, label: function () { return this.name || "anyrun server"; } }); </script>